/**
 * CRBNFIX "Why Carbon-Negative" Page CSS
 * Consistent 100% Left-Aligned Alignment across all sections & headers:
 * - Primary Dark Forest Green: #061d10
 * - Light Sage Tint BG: #eef5ef / #f8faf8
 * - Primary Emerald Accent: #18944d
 * - Subheadings / Kickers: 12px uppercase left-aligned
 * - Headings Light BG: 2rem (32px) 'Outfit' left-aligned
 * - Headings Dark BG: 35px 'Outfit' left-aligned
 * - Body / Lead Text: 16px 'Inter' left-aligned
 */

.crbnfix-why-widget {
	width: 100%;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: #111a13;
	box-sizing: border-box;
}

.crbnfix-why-widget * {
	box-sizing: border-box;
}

/* Container */
.crbnfix-why-widget .wn-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

/* Subheadings / Kickers - Always Left Aligned */
.crbnfix-why-widget .wn-kicker {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: #18944d;
	margin-bottom: 12px;
	display: block;
	text-align: left;
}

.crbnfix-why-widget .wn-kicker-light {
	color: #9bc89a;
}

/* Headings Light BG - 2rem (32px) Left Aligned */
.crbnfix-why-widget .wn-title-light-bg {
	font-family: 'Outfit', 'Inter', sans-serif;
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.2;
	color: #111a13;
	margin: 0 0 16px 0;
	letter-spacing: -0.5px;
	text-align: left;
}

/* Section Header Left Block */
.crbnfix-why-widget .wn-header-left {
	text-align: left;
	max-width: 820px;
	margin: 0 0 45px 0;
}

/* Descriptions - 16px Left Aligned */
.crbnfix-why-widget .wn-desc-left {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 1.65;
	color: #4a524d;
	max-width: 780px;
	margin: 0 0 24px 0;
	text-align: left;
}

.crbnfix-why-widget .wn-desc-dark-left {
	font-family: 'Inter', sans-serif;
	font-size: 17.5px;
	line-height: 1.65;
	color: #a3b8a8;
	max-width: 820px;
	margin: 0 0 35px 0;
	text-align: left;
}

/* Primary Button */
.crbnfix-why-widget .wn-btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 32px;
	background-color: #18944d;
	color: #ffffff;
	border-radius: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 16px rgba(24, 148, 77, 0.3);
}

.crbnfix-why-widget .wn-btn-primary:hover {
	background-color: #11664c;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(24, 148, 77, 0.4);
}


/* ==========================================================================
   SECTION 01 — OPENING / HERO (FULL SCREEN SPLIT)
   ========================================================================== */
.wn-sec-hero {
	background-color: #f8faf8;
	padding: 60px 0;
	border-bottom: 1px solid #e0eae2;
}

.wn-hero-split {
	display: flex;
	gap: 50px;
	align-items: center;
}

.wn-hero-left {
	flex: 0 0 55%;
	max-width: 620px;
	text-align: left;
}

.wn-hero-h1 {
	font-family: 'Outfit', 'Inter', sans-serif;
	font-size: 2.3rem; /* 37px */
	font-weight: 800;
	line-height: 1.18;
	color: #111a13;
	margin: 0 0 18px 0;
	letter-spacing: -0.8px;
	text-align: left;
}

.wn-hero-desc {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 1.65;
	color: #4a524d;
	margin-bottom: 24px;
	text-align: left;
}

.wn-hero-right {
	flex: 1;
}

/* Animated Carbon Cycle Box */
.wn-carbon-cycle-box {
	background: #061d10;
	border: 1px solid rgba(74, 222, 128, 0.2);
	border-radius: 12px;
	padding: 28px 24px;
	box-shadow: 0 16px 45px rgba(0, 0, 0, 0.25);
}

.cycle-title {
	font-family: 'Inter', sans-serif;
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: 1.5px;
	color: #9bc89a;
	text-align: left;
	margin-bottom: 20px;
}

.cycle-flow-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}

.cycle-node {
	width: 100%;
	background: #0d2817;
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 10px 16px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: all 0.3s ease;
}

.node-icon {
	font-size: 18px;
}

.node-label {
	font-family: 'Outfit', sans-serif;
	font-size: 13px;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: 0.5px;
}

.node-active {
	border-color: #18944d;
	background: #11381f;
	box-shadow: 0 0 15px rgba(24, 148, 77, 0.4);
}

.cycle-arrow {
	color: #4ade80;
	font-size: 14px;
}


/* ==========================================================================
   SECTION 02 — THE QUESTION (LEFT ALIGNED FLOW)
   ========================================================================== */
.wn-sec-question {
	background-color: #eef5ef;
	padding: 90px 0;
	border-bottom: 1px solid #dce8de;
}

.wn-huge-question {
	font-family: 'Outfit', 'Inter', sans-serif;
	font-size: 2.2rem;
	font-weight: 800;
	color: #111a13;
	margin: 0 0 16px 0;
	line-height: 1.2;
	letter-spacing: -0.5px;
	text-align: left;
}

.wn-signature-flow-comparison {
	display: flex;
	gap: 30px;
}

.flow-card {
	flex: 1;
	background: #ffffff;
	border: 1px solid #dce8de;
	border-radius: 10px;
	padding: 32px 28px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
	position: relative;
	text-align: left;
}

.flow-standard {
	border-left: 4px solid #e53e3e;
}

.flow-crbnfix {
	border: 2px solid #18944d;
	box-shadow: 0 12px 35px rgba(24, 148, 77, 0.15);
}

.flow-badge {
	position: absolute;
	top: -12px;
	right: 24px;
	background: #18944d;
	color: #ffffff;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1px;
	padding: 4px 12px;
	border-radius: 20px;
}

.flow-card h3 {
	font-family: 'Outfit', sans-serif;
	font-size: 18px;
	font-weight: 800;
	color: #111a13;
	margin: 0 0 8px 0;
}

.flow-card p {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: #4a524d;
	margin: 0 0 24px 0;
}

.flow-steps-column {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
}

.f-step {
	width: 100%;
	text-align: center;
	padding: 10px;
	background: #f8faf8;
	border: 1px solid #e0eae2;
	border-radius: 6px;
	font-family: 'Outfit', sans-serif;
	font-size: 13.5px;
	font-weight: 800;
	color: #111a13;
}

.f-warn { background: #fff5f5; color: #c53030; border-color: #feb2b2; }
.f-red { background: #742a2a; color: #ffffff; border-color: #9b2c2c; }
.f-green-bg { background: #18944d; color: #ffffff; border-color: #18944d; }
.f-green { background: #eef5ef; color: #18944d; border-color: #c6e2cd; }
.f-arr { color: #18944d; font-size: 16px; }


/* ==========================================================================
   SECTION 03 — THE CARBON PATHWAY (CINEMATIC HORIZONTAL DIAGRAM)
   ========================================================================== */
.wn-sec-pathway {
	background-color: #ffffff;
	padding: 90px 0;
	border-bottom: 1px solid #e0eae2;
}

.wn-cinematic-diagram {
	background: #f8faf8;
	border: 1px solid #e0eae2;
	border-radius: 12px;
	padding: 40px 30px;
}

.diagram-track {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	overflow-x: auto;
	padding-bottom: 20px;
}

.d-node {
	background: #ffffff;
	border: 1px solid #dce8de;
	border-radius: 6px;
	padding: 12px 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 100px;
	text-align: center;
}

.d-sub {
	font-family: 'Inter', sans-serif;
	font-size: 10px;
	font-weight: 800;
	color: #18944d;
}

.d-label {
	font-family: 'Outfit', sans-serif;
	font-size: 12px;
	font-weight: 800;
	color: #111a13;
}

.d-highlight { background: #18944d; border-color: #18944d; }
.d-highlight .d-sub, .d-highlight .d-label { color: #ffffff; }

.d-final { background: #061d10; border-color: #061d10; }
.d-final .d-sub { color: #4ade80; }
.d-final .d-label { color: #ffffff; }

.d-arrow { color: #18944d; font-weight: bold; }

.diagram-disclaimer {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	line-height: 1.5;
	color: #667268;
	border-top: 1px solid #e0eae2;
	padding-top: 16px;
	margin: 0;
	text-align: left;
}


/* ==========================================================================
   SECTION 04 — CARBON REMOVAL ≠ JUST CARBON STORAGE (3 COLUMNS)
   ========================================================================== */
.wn-sec-difference {
	background-color: #f8faf8;
	padding: 90px 0;
	border-bottom: 1px solid #e0eae2;
}

.wn-diff-3-cols {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 35px;
}

.diff-col {
	flex: 1;
	background: #ffffff;
	border: 1px solid #e0eae2;
	border-radius: 8px;
	padding: 28px 24px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
	text-align: left;
}

.diff-col-highlight {
	border-color: #18944d;
	background: #eef5ef;
}

.diff-col-num {
	font-family: 'Outfit', sans-serif;
	font-size: 14px;
	font-weight: 800;
	color: #18944d;
	margin-bottom: 8px;
	display: block;
}

.diff-col h3 {
	font-family: 'Outfit', sans-serif;
	font-size: 22px;
	font-weight: 800;
	color: #111a13;
	margin: 0 0 10px 0;
}

.diff-col p {
	font-family: 'Inter', sans-serif;
	font-size: 14.5px;
	line-height: 1.55;
	color: #4a524d;
	margin: 0;
}

.diff-col-arrow {
	color: #18944d;
	font-size: 22px;
}

.wn-diff-highlight-box {
	background: #eef5ef;
	border: 1px solid #c6e2cd;
	padding: 16px 24px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: #111a13;
	text-align: left;
}


/* ==========================================================================
   SECTION 05 — WHY BIOMASS? (IMAGE-LED FULL WIDTH)
   ========================================================================== */
.wn-sec-resource {
	background-color: #ffffff;
	padding: 90px 0;
	border-bottom: 1px solid #e0eae2;
}

.wn-resource-image-card {
	width: 100%;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	background: #eef5ef;
	border: 1px solid #dce8de;
	box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
	aspect-ratio: 16 / 8;
}

.wn-resource-image-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.resource-overlay-box {
	position: absolute;
	bottom: 24px;
	left: 24px;
	background: rgba(6, 29, 16, 0.9);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(74, 222, 128, 0.3);
	border-radius: 8px;
	padding: 16px 24px;
	display: flex;
	align-items: center;
	gap: 16px;
	color: #ffffff;
	font-family: 'Outfit', sans-serif;
	font-size: 13.5px;
	font-weight: 800;
	letter-spacing: 0.5px;
}

.res-node-arr { color: #4ade80; }


/* ==========================================================================
   SECTION 06 — MEASURE WHAT MATTERS (TECHNICAL EVIDENCE WALL)
   ========================================================================== */
.wn-sec-standard {
	background-color: #f8faf8;
	padding: 90px 0;
	border-bottom: 1px solid #e0eae2;
}

.wn-evidence-grid-9 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 40px;
}

.ev-item {
	background: #ffffff;
	border: 1px solid #e0eae2;
	border-radius: 6px;
	padding: 18px 20px;
	display: flex;
	align-items: center;
	gap: 14px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
	text-align: left;
}

.ev-n {
	font-family: 'Outfit', sans-serif;
	font-size: 13px;
	font-weight: 800;
	color: #18944d;
	background: #eef5ef;
	padding: 4px 8px;
	border-radius: 4px;
}

.ev-item h4 {
	font-family: 'Outfit', sans-serif;
	font-size: 13.5px;
	font-weight: 800;
	color: #111a13;
	margin: 0;
	letter-spacing: 0.5px;
}

.wn-status-scale-box {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	background: #ffffff;
	border: 1px solid #e0eae2;
	border-radius: 10px;
	padding: 28px 24px;
}

.status-col {
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: left;
}

.status-tag {
	align-self: flex-start;
	font-family: 'Outfit', sans-serif;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1px;
	padding: 5px 14px;
	border-radius: 4px;
}

.status-est { background: #edf2f7; color: #4a5568; }
.status-calc { background: #feebc8; color: #c05621; }
.status-ver { background: #c6f6d5; color: #22543d; }

.status-col p {
	font-family: 'Inter', sans-serif;
	font-size: 13.5px;
	line-height: 1.5;
	color: #4a524d;
	margin: 0;
}


/* ==========================================================================
   SECTION 07 — WHAT "CARBON NEGATIVE" MEANS TO CRBNFIX (EMOTIONAL CONCLUSION)
   ========================================================================== */
.wn-sec-position {
	background-color: #061d10;
	padding: 100px 0;
}

.wn-title-dark-huge {
	font-family: 'Outfit', sans-serif;
	font-size: 38px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.2;
	margin: 0 0 18px 0;
	letter-spacing: -0.8px;
	text-align: left;
}

.wn-req-checklist-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin: 0 0 50px 0;
}

.req-item {
	background: #0d2817;
	border: 1px solid rgba(74, 222, 128, 0.3);
	color: #ffffff;
	font-family: 'Outfit', sans-serif;
	font-size: 15px;
	font-weight: 700;
	padding: 14px 20px;
	border-radius: 6px;
	text-align: left;
}

.wn-final-emotional-quote {
	margin: 0;
	text-align: left;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 40px;
}

.wn-final-emotional-quote blockquote {
	font-family: 'Outfit', sans-serif;
	font-size: 26px;
	font-weight: 800;
	line-height: 1.4;
	color: #4ade80;
	margin: 0;
	letter-spacing: -0.3px;
	text-align: left;
}


/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
	.wn-hero-split,
	.wn-signature-flow-comparison,
	.wn-diff-3-cols {
		flex-direction: column;
		gap: 35px;
	}

	.wn-hero-left,
	.wn-resource-image-card {
		width: 100%;
		max-width: 100%;
	}

	.wn-evidence-grid-9,
	.wn-status-scale-box,
	.wn-req-checklist-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.wn-evidence-grid-9,
	.wn-status-scale-box,
	.wn-req-checklist-grid {
		grid-template-columns: 1fr;
	}

	.wn-sec-hero,
	.wn-sec-question,
	.wn-sec-pathway,
	.wn-sec-difference,
	.wn-sec-resource,
	.wn-sec-standard,
	.wn-sec-position {
		padding: 55px 0;
	}

	.wn-hero-h1 { font-size: 28px; }
	.wn-title-dark-huge { font-size: 28px; }
	.wn-final-emotional-quote blockquote { font-size: 20px; }
}
