/* =============================================================
   Social Rights & Enterprise — Premium UI/UX (snippet-6509)
   ============================================================= */

@keyframes sePulseDot {
	0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(1,163,104,0.7); }
	70%  { transform: scale(1);    box-shadow: 0 0 0 10px rgba(1,163,104,0); }
	100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(1,163,104,0); }
}

.se-e9fafbfc-wrapper {
	font-family: "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: #2d3748;
	padding: 20px 0 60px;
}

/* ── Hero Split Layout ── */
.se-e9fafbfc-hero-box {
	background: linear-gradient(135deg, #003610 0%, #004a17 60%, #00240b 100%);
	border-radius: 24px;
	padding: 44px;
	color: #fff;
	box-shadow: 0 20px 50px rgba(0,74,23,.22);
	margin-bottom: 50px;
	position: relative;
	overflow: hidden;
}
.se-e9fafbfc-hero-box::before {
	content: '';
	position: absolute;
	top: -100px; right: -100px;
	width: 350px; height: 350px;
	background: radial-gradient(circle, rgba(1,163,104,.25) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}
.se-e9fafbfc-hero-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 36px;
	align-items: center;
}
.se-e9fafbfc-hero-badge-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255,255,255,.12);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,.2);
	color: #fff;
	padding: 7px 20px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
}
.se-e9fafbfc-pulse-dot {
	width: 8px; height: 8px;
	background: #01A368;
	border-radius: 50%;
	display: inline-block;
	animation: sePulseDot 2s infinite;
}
.se-e9fafbfc-hero-title {
	font-family: "Quicksand", sans-serif;
	font-size: 38px;
	font-weight: 800;
	color: #fff !important;
	line-height: 1.25;
	margin: 0 0 16px;
	letter-spacing: -.5px;
}
.se-e9fafbfc-hero-highlight {
	background: linear-gradient(120deg, #6EE7B7 0%, #34D399 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.se-e9fafbfc-hero-lead {
	font-size: 16px;
	line-height: 1.8;
	color: rgba(255,255,255,.9) !important;
	margin: 0 0 24px;
}
.se-e9fafbfc-hero-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px,1fr));
	gap: 12px;
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255,255,255,.15);
}
.se-e9fafbfc-stat-item {
	background: rgba(255,255,255,.06);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 12px;
	padding: 12px;
	text-align: center;
}
.se-e9fafbfc-stat-num {
	font-size: 20px;
	font-weight: 800;
	color: #6EE7B7;
	margin-bottom: 2px;
}
.se-e9fafbfc-stat-label {
	font-size: 11px;
	color: rgba(255,255,255,.85);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .5px;
}
.se-e9fafbfc-hero-media-wrap { position: relative; }
.se-e9fafbfc-hero-img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 16px 36px rgba(0,0,0,.3);
	border: 3px solid rgba(255,255,255,.2);
	display: block;
}
.se-e9fafbfc-hero-img-badge {
	position: absolute;
	bottom: -16px; left: 20px;
	background: #004a17;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	padding: 8px 18px;
	border-radius: 30px;
	box-shadow: 0 8px 20px rgba(0,0,0,.25);
	border: 1px solid rgba(255,255,255,.2);
	display: flex;
	align-items: center;
	gap: 8px;
}

/* ── Section Headers ── */
.se-e9fafbfc-section-header {
	text-align: center;
	max-width: 700px;
	margin: 60px auto 36px;
}
.se-e9fafbfc-section-pill {
	display: inline-block;
	background: rgba(0,74,23,.08);
	color: #004a17;
	font-size: 12px;
	font-weight: 800;
	padding: 4px 14px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
}
.se-e9fafbfc-section-title {
	font-family: "Quicksand", sans-serif;
	font-size: 32px;
	font-weight: 800;
	color: #004a17;
	margin: 0 0 10px;
	letter-spacing: -.4px;
}
.se-e9fafbfc-section-sub {
	font-size: 16px;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
}

/* ── Core Pillars ── */
.se-e9fafbfc-pillars-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
	gap: 26px;
	margin-bottom: 50px;
}
.se-e9fafbfc-pillar-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 34px 30px;
	position: relative;
	overflow: hidden;
	transition: all .35s cubic-bezier(.4,0,.2,1);
	box-shadow: 0 4px 20px rgba(0,0,0,.03);
}
.se-e9fafbfc-pillar-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 4px;
	background: linear-gradient(90deg,#004a17 0%,#01A368 100%);
	opacity: 0;
	transition: opacity .35s ease;
}
.se-e9fafbfc-pillar-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 22px 45px rgba(0,74,23,.12);
	border-color: rgba(1,163,104,.3);
}
.se-e9fafbfc-pillar-card:hover::before { opacity: 1; }

.se-e9fafbfc-pillar-num {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(0,74,23,.08);
	color: #004a17;
	font-size: 12px;
	font-weight: 800;
	padding: 4px 12px;
	border-radius: 20px;
	text-transform: uppercase;
	margin-bottom: 16px;
}
.se-e9fafbfc-pillar-icon-glow {
	width: 62px; height: 62px;
	background: linear-gradient(135deg, rgba(0,74,23,.08) 0%, rgba(1,163,104,.12) 100%);
	color: #004a17;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	margin-bottom: 20px;
	transition: all .35s ease;
}
.se-e9fafbfc-pillar-card:hover .se-e9fafbfc-pillar-icon-glow {
	background: linear-gradient(135deg,#004a17 0%,#01A368 100%);
	color: #fff;
	box-shadow: 0 8px 20px rgba(0,74,23,.25);
}
.se-e9fafbfc-pillar-heading {
	font-size: 22px;
	font-weight: 700;
	color: #1a202c;
	margin: 0 0 12px;
}
.se-e9fafbfc-pillar-text {
	font-size: 15px;
	line-height: 1.75;
	color: #4a5568;
	margin: 0;
}

/* ── Challenge Context Highlight ── */
.se-e9fafbfc-challenge-box {
	background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
	border: 1px solid #fde68a;
	border-left: 5px solid #f59e0b;
	border-radius: 16px;
	padding: 28px 32px;
	margin-bottom: 50px;
	display: flex;
	gap: 20px;
	align-items: flex-start;
}
.se-e9fafbfc-challenge-icon {
	font-size: 32px;
	flex-shrink: 0;
	margin-top: 2px;
}
.se-e9fafbfc-challenge-title {
	font-size: 17px;
	font-weight: 700;
	color: #92400e;
	margin: 0 0 8px;
}
.se-e9fafbfc-challenge-text {
	font-size: 15px;
	line-height: 1.75;
	color: #78350f;
	margin: 0;
}

/* ── Strategic Objectives ── */
.se-e9fafbfc-objectives-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
	gap: 20px;
	margin-bottom: 50px;
}
.se-e9fafbfc-objective-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 28px 24px;
	display: flex;
	gap: 18px;
	align-items: flex-start;
	box-shadow: 0 4px 15px rgba(0,0,0,.02);
	transition: all .3s ease;
}
.se-e9fafbfc-objective-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(0,74,23,.08);
	border-color: #01A368;
}
.se-e9fafbfc-obj-num {
	width: 40px; height: 40px;
	background: linear-gradient(135deg,#004a17 0%,#01A368 100%);
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(0,74,23,.2);
}
.se-e9fafbfc-obj-text {
	font-size: 15px;
	line-height: 1.7;
	color: #2d3748;
	margin: 0;
}
.se-e9fafbfc-obj-text strong { color: #004a17; }

/* ── Key Strategies Split Grid ── */
.se-e9fafbfc-strategies-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
	margin-bottom: 60px;
}
.se-e9fafbfc-strategies-media { position: relative; }
.se-e9fafbfc-strategies-img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 14px 32px rgba(0,0,0,.15);
	border: 3px solid #fff;
	display: block;
}
.se-e9fafbfc-strategies-img-badge {
	position: absolute;
	bottom: 16px; right: 16px;
	background: #004a17;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 30px;
	box-shadow: 0 6px 16px rgba(0,0,0,.2);
}
.se-e9fafbfc-strategies-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.se-e9fafbfc-strategy-item {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 20px 22px;
	display: flex;
	gap: 16px;
	align-items: flex-start;
	transition: all .3s ease;
	box-shadow: 0 2px 10px rgba(0,0,0,.02);
}
.se-e9fafbfc-strategy-item:hover {
	transform: translateX(5px);
	box-shadow: 0 8px 22px rgba(0,74,23,.08);
	border-color: rgba(1,163,104,.35);
}
.se-e9fafbfc-strategy-num-badge {
	background: linear-gradient(135deg,#004a17 0%,#01A368 100%);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: 20px;
	white-space: nowrap;
	height: fit-content;
	margin-top: 3px;
	flex-shrink: 0;
}
.se-e9fafbfc-strategy-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.se-e9fafbfc-strategy-heading {
	font-size: 17px;
	font-weight: 700;
	color: #1a202c;
	margin: 0 0 5px;
}
.se-e9fafbfc-strategy-text {
	font-size: 13px;
	line-height: 1.6;
	color: #4a5568;
	margin: 0 0 8px;
}
.se-e9fafbfc-strategy-badge {
	display: inline-block;
	background: #ecfdf5;
	color: #047857;
	border: 1px solid #a7f3d0;
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
}

/* ── Impact Banner ── */
.se-e9fafbfc-impact-banner {
	background: linear-gradient(135deg,#003610 0%,#004a17 60%,#00220a 100%);
	border-radius: 24px;
	padding: 50px;
	color: #fff;
	box-shadow: 0 16px 45px rgba(0,74,23,.25);
	margin-bottom: 60px;
	position: relative;
	overflow: hidden;
}
.se-e9fafbfc-impact-banner::after {
	content: '"';
	position: absolute;
	right: 40px; bottom: -40px;
	font-size: 200px;
	color: rgba(255,255,255,.05);
	font-family: Georgia, serif;
	line-height: 1;
	pointer-events: none;
}
.se-e9fafbfc-impact-title {
	font-family: "Quicksand", sans-serif;
	font-size: 32px;
	font-weight: 800;
	color: #fff !important;
	margin: 0 0 20px;
}
.se-e9fafbfc-impact-desc {
	font-size: 17px;
	line-height: 1.85;
	color: rgba(255,255,255,.9) !important;
	margin: 0 0 24px;
}
.se-e9fafbfc-impact-bullets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
	gap: 16px;
}
.se-e9fafbfc-impact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 600;
	color: #6EE7B7;
}
.se-e9fafbfc-impact-check {
	width: 24px; height: 24px;
	background: rgba(110,231,183,.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
}

/* ── CTA Box ── */
.se-e9fafbfc-cta-box {
	text-align: center;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 24px;
	padding: 50px 36px;
	box-shadow: 0 10px 35px rgba(0,0,0,.04);
}
.se-e9fafbfc-cta-title {
	font-size: 28px;
	font-weight: 800;
	color: #004a17;
	margin: 0 0 12px;
}
.se-e9fafbfc-cta-sub {
	font-size: 16px;
	color: #64748b;
	max-width: 640px;
	margin: 0 auto 32px;
	line-height: 1.7;
}
.se-e9fafbfc-cta-btns {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}
.se-e9fafbfc-btn-primary {
	background: linear-gradient(135deg,#004a17 0%,#01A368 100%);
	color: #fff !important;
	font-weight: 700;
	font-size: 15px;
	padding: 16px 38px;
	border-radius: 50px;
	text-decoration: none;
	transition: all .35s ease;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	box-shadow: 0 6px 20px rgba(0,74,23,.25);
}
.se-e9fafbfc-btn-primary:hover {
	background: linear-gradient(135deg,#01A368 0%,#004a17 100%);
	color: #fff !important;
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(1,163,104,.4);
}
.se-e9fafbfc-btn-secondary {
	background: transparent;
	color: #004a17 !important;
	border: 2px solid #004a17;
	font-weight: 700;
	font-size: 15px;
	padding: 14px 36px;
	border-radius: 50px;
	text-decoration: none;
	transition: all .35s ease;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.se-e9fafbfc-btn-secondary:hover {
	background: rgba(0,74,23,.08);
	color: #004a17 !important;
	transform: translateY(-3px);
}

/* ── Responsive ── */
@media (max-width: 992px) {
	.se-e9fafbfc-hero-grid,
	.se-e9fafbfc-strategies-wrap { grid-template-columns: 1fr; }
	.se-e9fafbfc-hero-media-wrap,
	.se-e9fafbfc-strategies-media { margin-top: 24px; }
}
@media (max-width: 768px) {
	.se-e9fafbfc-hero-box { padding: 36px 24px; }
	.se-e9fafbfc-hero-title { font-size: 30px; }
	.se-e9fafbfc-impact-banner { padding: 34px 24px; }
	.se-e9fafbfc-challenge-box { flex-direction: column; }
}

/* ── Scroll-driven Entry Animations ── */
@media (prefers-reduced-motion: no-preference) {
	@supports ((animation-timeline: view()) and (animation-range: entry)) {
		@keyframes seFadeReveal {
			from {
				opacity: 0;
				transform: translateY(30px);
			}
			to {
				opacity: 1;
				transform: translateY(0);
			}
		}

		.se-e9fafbfc-section-header,
		.se-e9fafbfc-pillar-card,
		.se-e9fafbfc-challenge-box,
		.se-e9fafbfc-objective-card,
		.se-e9fafbfc-strategy-item,
		.se-e9fafbfc-strategies-media,
		.se-e9fafbfc-impact-banner,
		.se-e9fafbfc-cta-box {
			animation: seFadeReveal auto linear backwards;
			animation-timeline: view();
			animation-range: entry 5% entry 35%;
		}
	}
}

