:root {
	--font-sans: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--font-display: "Playfair Display", Georgia, serif;
	--font-accent: "Cinzel", Georgia, serif;

	/* Earthy Greens */
	--c-forest-900: #0E1F16;
	--c-forest-800: #152E21;
	--c-forest-700: #1D3D2C;
	--c-forest-600: #2A543E;
	--c-forest-500: #3D6F54;
	--c-sage-400: #6B947E;
	--c-sage-300: #9BB8A9;
	--c-sage-100: #E6EFEA;
	--c-sage-50: #F3F7F4;

	/* Warm Terracotta */
	--c-terra-900: #7A2E1A;
	--c-terra-800: #9B3D23;
	--c-terra-700: #BE4F31;
	--c-terra-600: #D46344;
	--c-terra-500: #E27C60;
	--c-terra-300: #F0AB98;
	--c-terra-100: #FCEBE6;
	--c-terra-50: #FEF6F3;

	/* Warm Sand & Linen Neutrals */
	--c-sand-900: #1C1A17;
	--c-sand-800: #332F2A;
	--c-sand-700: #575046;
	--c-sand-500: #8C8274;
	--c-sand-300: #C9BFB2;
	--c-sand-200: #E7E1D7;
	--c-sand-100: #F2EEE6;
	--c-sand-50: #FAF8F5;
	--c-white: #FFFFFF;

	/* Accents & Signals */
	--c-gold: #C28B2E;
	--c-gold-soft: #F9F2E2;
	--c-success: #2E7D47;
	--c-info: #2B6CB0;

	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--radius-full: 9999px;

	--shadow-subtle: 0 2px 8px rgba(14, 31, 22, 0.04);
	--shadow-card: 0 4px 20px rgba(14, 31, 22, 0.06), 0 1px 3px rgba(14, 31, 22, 0.03);
	--shadow-hover: 0 12px 32px rgba(14, 31, 22, 0.12), 0 2px 6px rgba(14, 31, 22, 0.04);
	--shadow-drawer: -8px 0 32px rgba(14, 31, 22, 0.18);
	--shadow-modal: 0 24px 60px rgba(14, 31, 22, 0.25);

	--transition-base: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
	--transition-bounce: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	background-color: var(--c-sand-50);
	color: var(--c-sand-900);
}

body {
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	background-color: var(--c-sand-50);
	color: var(--c-sand-900);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

/* Typography elements */
h1, h2, h3, h4, h5 {
	font-family: var(--font-display);
	color: var(--c-forest-900);
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.015em;
}

p {
	color: var(--c-sand-700);
}

a {
	color: inherit;
	text-decoration: none;
}

button, input, select, textarea {
	font-family: inherit;
}

/* Layout Utilities */
.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.container-narrow {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.section-pad {
	padding: 5.5rem 0;
}

.section-pad-sm {
	padding: 3.5rem 0;
}

/* Section Header styling */
.section-header {
	text-align: center;
	margin-bottom: 3.5rem;
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

.section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-sans);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--c-terra-700);
	background: var(--c-terra-100);
	padding: 0.35rem 0.85rem;
	border-radius: var(--radius-full);
	margin-bottom: 1rem;
}

.section-kicker-green {
	color: var(--c-forest-700);
	background: var(--c-sage-100);
}

.section-title {
	font-size: clamp(2rem, 3.5vw, 2.75rem);
	margin-bottom: 1rem;
	color: var(--c-forest-900);
}

.section-subtitle {
	font-size: 1.125rem;
	color: var(--c-sand-700);
	line-height: 1.65;
}

/* Navigation Bar */
.navbar {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(250, 248, 245, 0.92);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--c-sand-200);
	transition: var(--transition-base);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4.5rem;
	gap: 1.5rem;
}

.brand-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	cursor: pointer;
}

.brand-symbol {
	width: 2.5rem;
	height: 2.5rem;
	background: linear-gradient(135deg, var(--c-forest-700), var(--c-forest-900));
	color: var(--c-sand-50);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-accent);
	font-weight: 700;
	font-size: 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 3px 10px rgba(14, 31, 22, 0.15);
}

.brand-text {
	display: flex;
	flex-direction: column;
}

.brand-name {
	font-family: var(--font-accent);
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--c-forest-900);
	line-height: 1.1;
}

.brand-name span {
	color: var(--c-terra-700);
}

.brand-tagline {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--c-sand-500);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 1.75rem;
}

.nav-link {
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--c-sand-800);
	padding: 0.5rem 0.25rem;
	position: relative;
	transition: var(--transition-base);
	cursor: pointer;
}

.nav-link:hover, .nav-link.active {
	color: var(--c-forest-800);
}

.nav-link.active::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--c-terra-600);
	border-radius: var(--radius-full);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 0.875rem;
}

/* Button Component Styles */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-size: 0.9375rem;
	font-weight: 600;
	padding: 0.75rem 1.4rem;
	border-radius: var(--radius-md);
	border: 1px solid transparent;
	cursor: pointer;
	transition: var(--transition-base);
	white-space: nowrap;
}

.btn-sm {
	padding: 0.45rem 0.85rem;
	font-size: 0.8125rem;
}

.btn-lg {
	padding: 0.95rem 1.85rem;
	font-size: 1.0625rem;
	border-radius: var(--radius-lg);
}

.btn-primary {
	background: var(--c-forest-800);
	color: var(--c-white);
	border-color: var(--c-forest-800);
	box-shadow: 0 4px 14px rgba(21, 46, 33, 0.25);
}

.btn-primary:hover {
	background: var(--c-forest-900);
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(21, 46, 33, 0.32);
}

.btn-terracotta {
	background: var(--c-terra-600);
	color: var(--c-white);
	border-color: var(--c-terra-600);
	box-shadow: 0 4px 14px rgba(212, 99, 68, 0.28);
}

.btn-terracotta:hover {
	background: var(--c-terra-700);
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(212, 99, 68, 0.35);
}

.btn-secondary {
	background: var(--c-white);
	color: var(--c-sand-800);
	border-color: var(--c-sand-300);
}

.btn-secondary:hover {
	background: var(--c-sand-100);
	border-color: var(--c-sand-500);
}

.btn-outline-forest {
	background: transparent;
	color: var(--c-forest-800);
	border-color: var(--c-forest-600);
}

.btn-outline-forest:hover {
	background: var(--c-sage-50);
	border-color: var(--c-forest-800);
}

.btn-ghost {
	background: transparent;
	color: var(--c-sand-800);
}

.btn-ghost:hover {
	background: var(--c-sand-100);
}

/* Hero Section */
.hero {
	position: relative;
	padding: 5rem 0 6rem;
	overflow: hidden;
	background: linear-gradient(180deg, #FAF8F5 0%, #F3EEE4 100%);
	border-bottom: 1px solid var(--c-sand-200);
}

.hero-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.04;
	pointer-events: none;
	background-image: radial-gradient(var(--c-forest-900) 1px, transparent 1px);
	background-size: 28px 28px;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.4rem 1rem;
	border-radius: var(--radius-full);
	background: var(--c-white);
	border: 1px solid var(--c-sand-200);
	box-shadow: var(--shadow-subtle);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--c-forest-800);
	margin-bottom: 1.5rem;
}

.hero-tag-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--c-terra-600);
	animation: pulse-subtle 2s infinite;
}

@keyframes pulse-subtle {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-headline {
	font-size: clamp(2.5rem, 4.5vw, 3.6rem);
	line-height: 1.15;
	margin-bottom: 1.5rem;
	color: var(--c-forest-900);
}

.hero-headline span {
	font-style: italic;
	font-family: var(--font-display);
	color: var(--c-terra-700);
	font-weight: 500;
}

.hero-lede {
	font-size: 1.1875rem;
	line-height: 1.7;
	color: var(--c-sand-700);
	margin-bottom: 2.25rem;
	max-width: 620px;
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 3rem;
}

.hero-trust-badges {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding-top: 1.75rem;
	border-top: 1px solid var(--c-sand-200);
}

.trust-title {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 700;
	color: var(--c-sand-500);
}

.trust-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.trust-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--c-forest-800);
	background: rgba(230, 239, 234, 0.75);
	padding: 0.35rem 0.75rem;
	border-radius: var(--radius-sm);
	border: 1px solid var(--c-sage-300);
}

/* Hero Showcase Card */
.hero-card {
	background: var(--c-white);
	border-radius: var(--radius-xl);
	border: 1px solid var(--c-sand-200);
	box-shadow: var(--shadow-card);
	overflow: hidden;
	position: relative;
}

.hero-card-header {
	background: linear-gradient(135deg, var(--c-forest-900), var(--c-forest-800));
	color: var(--c-white);
	padding: 1.75rem;
	position: relative;
}

.hero-card-header h3 {
	color: var(--c-sand-100);
	font-size: 1.35rem;
	margin-bottom: 0.35rem;
}

.hero-card-header p {
	color: var(--c-sage-300);
	font-size: 0.875rem;
}

.dpp-pill {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: var(--c-sand-50);
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.3rem 0.7rem;
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.hero-card-body {
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.metrics-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.metric-box {
	background: var(--c-sand-50);
	border: 1px solid var(--c-sand-200);
	border-radius: var(--radius-md);
	padding: 1rem;
}

.metric-label {
	font-size: 0.75rem;
	color: var(--c-sand-500);
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 0.25rem;
}

.metric-value {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--c-forest-900);
	font-family: var(--font-sans);
}

.metric-sub {
	font-size: 0.75rem;
	color: var(--c-terra-700);
	font-weight: 500;
	margin-top: 0.15rem;
}

.compliance-status-bar {
	background: var(--c-sage-50);
	border: 1px solid var(--c-sage-300);
	border-radius: var(--radius-md);
	padding: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.compliance-status-bar span {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--c-forest-800);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.compliance-verified-badge {
	background: var(--c-forest-800);
	color: var(--c-white);
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.25rem 0.6rem;
	border-radius: var(--radius-full);
}

/* Material Selector Section */
.selector-section {
	background: var(--c-white);
	border-bottom: 1px solid var(--c-sand-200);
}

.selector-toolbar {
	background: var(--c-sand-50);
	border: 1px solid var(--c-sand-200);
	border-radius: var(--radius-xl);
	padding: 1.5rem;
	margin-bottom: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	box-shadow: var(--shadow-subtle);
}

.filter-group-row {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.filter-group-label {
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--c-sand-700);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	min-width: 110px;
}

.filter-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.filter-pill {
	background: var(--c-white);
	border: 1px solid var(--c-sand-300);
	color: var(--c-sand-800);
	padding: 0.45rem 0.95rem;
	border-radius: var(--radius-full);
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	transition: var(--transition-base);
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.filter-pill:hover {
	border-color: var(--c-forest-600);
	color: var(--c-forest-800);
}

.filter-pill.active {
	background: var(--c-forest-800);
	border-color: var(--c-forest-800);
	color: var(--c-white);
	font-weight: 600;
}

.filter-pill.active-terra {
	background: var(--c-terra-600);
	border-color: var(--c-terra-600);
	color: var(--c-white);
	font-weight: 600;
}

.search-sort-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--c-sand-200);
	flex-wrap: wrap;
}

.search-input-wrap {
	position: relative;
	flex: 1;
	min-width: 260px;
}

.search-input {
	width: 100%;
	padding: 0.65rem 1rem 0.65rem 2.6rem;
	border-radius: var(--radius-md);
	border: 1px solid var(--c-sand-300);
	background: var(--c-white);
	font-size: 0.9375rem;
	color: var(--c-sand-900);
	outline: none;
	transition: var(--transition-base);
}

.search-input:focus {
	border-color: var(--c-forest-600);
	box-shadow: 0 0 0 3px var(--c-sage-100);
}

.search-icon {
	position: absolute;
	left: 0.85rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--c-sand-500);
}

.results-meta {
	font-size: 0.875rem;
	color: var(--c-sand-500);
	font-weight: 500;
}

/* Material Cards Grid */
.materials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 2rem;
}

.material-card {
	background: var(--c-white);
	border-radius: var(--radius-lg);
	border: 1px solid var(--c-sand-200);
	overflow: hidden;
	transition: var(--transition-base);
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow-card);
	position: relative;
}

.material-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
	border-color: var(--c-sand-300);
}

.card-image-wrap {
	position: relative;
	height: 190px;
	background: var(--c-sand-100);
	overflow: hidden;
}

.card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.material-card:hover .card-image {
	transform: scale(1.04);
}

.origin-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: rgba(14, 31, 22, 0.85);
	backdrop-filter: blur(8px);
	color: var(--c-sand-50);
	padding: 0.35rem 0.75rem;
	border-radius: var(--radius-full);
	font-size: 0.75rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.esg-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(226, 124, 96, 0.95);
	backdrop-filter: blur(8px);
	color: var(--c-white);
	padding: 0.35rem 0.75rem;
	border-radius: var(--radius-full);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.card-content {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.card-title {
	font-size: 1.25rem;
	margin-bottom: 0.4rem;
	color: var(--c-forest-900);
}

.card-desc {
	font-size: 0.875rem;
	color: var(--c-sand-700);
	margin-bottom: 1.25rem;
	line-height: 1.55;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.specs-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
	background: var(--c-sand-50);
	padding: 0.875rem;
	border-radius: var(--radius-md);
	margin-bottom: 1.25rem;
	border: 1px solid var(--c-sand-200);
}

.spec-item {
	display: flex;
	flex-direction: column;
}

.spec-key {
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--c-sand-500);
	font-weight: 600;
}

.spec-val {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--c-forest-900);
}

.spec-val-positive {
	color: var(--c-forest-700);
}

.cert-chips-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-bottom: 1.5rem;
}

.cert-tag {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	padding: 0.2rem 0.55rem;
	border-radius: var(--radius-sm);
	background: var(--c-sand-100);
	color: var(--c-forest-800);
	border: 1px solid var(--c-sand-300);
}

.card-footer {
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid var(--c-sand-200);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.spec-meta-box {
	display: flex;
	flex-direction: column;
}

.spec-meta-unit {
	font-size: 0.6875rem;
	color: var(--c-sand-500);
	font-weight: 600;
	text-transform: uppercase;
}

.spec-meta-val {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--c-forest-900);
}

.card-actions {
	display: flex;
	gap: 0.5rem;
}

/* Interactive Map Section */
.map-section {
	background: var(--c-sand-100);
	border-bottom: 1px solid var(--c-sand-200);
	position: relative;
}

.map-layout {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 3.5rem;
	align-items: center;
}

.map-canvas-card {
	background: var(--c-white);
	border-radius: var(--radius-xl);
	border: 1px solid var(--c-sand-200);
	padding: 2rem;
	box-shadow: var(--shadow-card);
	position: relative;
	min-height: 520px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.india-svg-container {
	width: 100%;
	max-width: 500px;
	height: auto;
}

.map-region-hotspot {
	cursor: pointer;
	transition: var(--transition-base);
}

.map-region-hotspot:hover circle.pin-core {
	fill: var(--c-terra-700);
	r: 9;
}

.pin-pulse {
	animation: pin-ripple 2.5s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform-origin: center;
}

@keyframes pin-ripple {
	0% { r: 6; opacity: 0.9; }
	100% { r: 24; opacity: 0; }
}

.map-details-card {
	background: var(--c-white);
	border-radius: var(--radius-xl);
	border: 1px solid var(--c-sand-200);
	padding: 2.25rem;
	box-shadow: var(--shadow-card);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.region-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--c-sand-200);
}

.region-title {
	font-size: 1.65rem;
	color: var(--c-forest-900);
	margin-bottom: 0.25rem;
}

.region-sub {
	font-size: 0.875rem;
	color: var(--c-sand-500);
	font-weight: 500;
}

.region-hero-material {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: var(--c-sage-50);
	border: 1px solid var(--c-sage-300);
	border-radius: var(--radius-lg);
	padding: 1.25rem;
}

.region-material-avatar {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: var(--radius-md);
	background: var(--c-forest-800);
	color: var(--c-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

.region-stats-table {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.region-stat-box {
	background: var(--c-sand-50);
	padding: 1rem;
	border-radius: var(--radius-md);
	border: 1px solid var(--c-sand-200);
}

.region-stat-lbl {
	font-size: 0.75rem;
	color: var(--c-sand-500);
	font-weight: 600;
	text-transform: uppercase;
}

.region-stat-val {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--c-forest-900);
}

.region-nav-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.region-nav-btn {
	background: var(--c-sand-50);
	border: 1px solid var(--c-sand-200);
	padding: 0.5rem 0.85rem;
	border-radius: var(--radius-md);
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--c-sand-800);
	cursor: pointer;
	transition: var(--transition-base);
}

.region-nav-btn:hover, .region-nav-btn.active {
	background: var(--c-forest-800);
	color: var(--c-white);
	border-color: var(--c-forest-800);
}

/* How It Works - Protocol Section */
.protocol-section {
	background: var(--c-white);
	border-bottom: 1px solid var(--c-sand-200);
}

.protocol-stepper-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	position: relative;
	margin-top: 2rem;
}

.protocol-step-card {
	background: var(--c-sand-50);
	border: 1px solid var(--c-sand-200);
	border-radius: var(--radius-xl);
	padding: 2rem 1.5rem;
	display: flex;
	flex-direction: column;
	transition: var(--transition-base);
	position: relative;
	cursor: pointer;
}

.protocol-step-card:hover, .protocol-step-card.active {
	background: var(--c-white);
	border-color: var(--c-forest-600);
	transform: translateY(-4px);
	box-shadow: var(--shadow-card);
}

.protocol-step-card.active {
	border-color: var(--c-terra-600);
	box-shadow: 0 8px 28px rgba(190, 79, 49, 0.12);
}

.step-num-badge {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: var(--radius-md);
	background: var(--c-forest-800);
	color: var(--c-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-accent);
	font-weight: 700;
	font-size: 1.125rem;
	margin-bottom: 1.5rem;
}

.protocol-step-card.active .step-num-badge {
	background: var(--c-terra-600);
}

.step-title {
	font-size: 1.2rem;
	margin-bottom: 0.75rem;
	color: var(--c-forest-900);
}

.step-desc {
	font-size: 0.875rem;
	color: var(--c-sand-700);
	line-height: 1.6;
	margin-bottom: 1.25rem;
}

.step-bullets {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-top: auto;
}

.step-bullets li {
	font-size: 0.8125rem;
	color: var(--c-sand-800);
	display: flex;
	align-items: flex-start;
	gap: 0.4rem;
}

.step-bullets li::before {
	content: "✓";
	color: var(--c-forest-600);
	font-weight: bold;
}

/* Compliance & Trust Center Page/Section */
.trust-center-section {
	background: linear-gradient(180deg, #FAF8F5 0%, #F1ECE3 100%);
	border-bottom: 1px solid var(--c-sand-200);
}

.compliance-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 3.5rem;
}

.compliance-card {
	background: var(--c-white);
	border-radius: var(--radius-xl);
	border: 1px solid var(--c-sand-200);
	padding: 2.25rem;
	box-shadow: var(--shadow-card);
	display: flex;
	flex-direction: column;
}

.compliance-icon-wrap {
	width: 3.25rem;
	height: 3.25rem;
	border-radius: var(--radius-lg);
	background: var(--c-sage-100);
	color: var(--c-forest-800);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
}

.compliance-icon-wrap.terra {
	background: var(--c-terra-100);
	color: var(--c-terra-700);
}

.compliance-card-title {
	font-size: 1.35rem;
	margin-bottom: 0.35rem;
	color: var(--c-forest-900);
}

.compliance-card-subtitle {
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--c-sand-500);
	margin-bottom: 1rem;
}

.compliance-card-desc {
	font-size: 0.9375rem;
	color: var(--c-sand-700);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.compliance-checklist {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid var(--c-sand-200);
}

.compliance-check-item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.875rem;
	color: var(--c-forest-900);
	font-weight: 500;
}

/* Roadmap Timeline */
.roadmap-box {
	background: var(--c-white);
	border: 1px solid var(--c-sand-200);
	border-radius: var(--radius-xl);
	padding: 2.5rem;
	box-shadow: var(--shadow-card);
}

.roadmap-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.timeline-track {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	position: relative;
}

.timeline-track::before {
	content: "";
	position: absolute;
	top: 18px;
	left: 5%;
	right: 5%;
	height: 3px;
	background: var(--c-sand-200);
	z-index: 0;
}

.timeline-node {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
}

.node-dot {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--c-forest-800);
	color: var(--c-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 700;
	margin-bottom: 1rem;
	border: 4px solid var(--c-white);
	box-shadow: 0 2px 8px rgba(14, 31, 22, 0.15);
}

.node-dot.future {
	background: var(--c-terra-600);
}

.node-dot.active {
	background: var(--c-gold);
}

.node-quarter {
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--c-terra-700);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.25rem;
}

.node-heading {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--c-forest-900);
	margin-bottom: 0.35rem;
}

.node-text {
	font-size: 0.8125rem;
	color: var(--c-sand-700);
	line-height: 1.5;
}

/* Sourcing Plan Wizard Section & Contact */
.sourcing-plan-section {
	background: var(--c-white);
	border-bottom: 1px solid var(--c-sand-200);
}

.wizard-card {
	background: var(--c-sand-50);
	border-radius: var(--radius-xl);
	border: 1px solid var(--c-sand-200);
	box-shadow: var(--shadow-card);
	overflow: hidden;
}

.wizard-inner {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 0;
}

.wizard-form-side {
	padding: 3rem;
}

.wizard-preview-side {
	background: linear-gradient(135deg, var(--c-forest-900) 0%, var(--c-forest-800) 100%);
	color: var(--c-white);
	padding: 3rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--c-sand-800);
	margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border-radius: var(--radius-md);
	border: 1px solid var(--c-sand-300);
	background: var(--c-white);
	font-size: 0.9375rem;
	color: var(--c-sand-900);
	outline: none;
	transition: var(--transition-base);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
	border-color: var(--c-forest-600);
	box-shadow: 0 0 0 3px var(--c-sage-100);
}

.chips-selector-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	gap: 0.5rem;
}

.chip-option {
	padding: 0.6rem 0.8rem;
	border-radius: var(--radius-md);
	border: 1px solid var(--c-sand-300);
	background: var(--c-white);
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--c-sand-800);
	cursor: pointer;
	text-align: center;
	transition: var(--transition-base);
}

.chip-option:hover {
	border-color: var(--c-forest-600);
}

.chip-option.selected {
	background: var(--c-forest-800);
	color: var(--c-white);
	border-color: var(--c-forest-800);
}

/* Modals and Drawers */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(14, 31, 22, 0.65);
	backdrop-filter: blur(8px);
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	animation: fade-in 0.2s ease;
}

@keyframes fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

.modal-card {
	background: var(--c-white);
	border-radius: var(--radius-xl);
	border: 1px solid var(--c-sand-200);
	box-shadow: var(--shadow-modal);
	max-width: 540px;
	width: 100%;
	overflow: hidden;
	animation: slide-up 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slide-up {
	from { transform: translateY(20px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

.modal-header {
	padding: 1.75rem 2rem 1.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--c-sand-200);
}

.modal-close-btn {
	background: transparent;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--c-sand-500);
	padding: 0.25rem;
	line-height: 1;
}

.modal-body {
	padding: 2rem;
}

/* Drawer Component */
.drawer-overlay {
	position: fixed;
	inset: 0;
	background: rgba(14, 31, 22, 0.5);
	backdrop-filter: blur(4px);
	z-index: 1000;
	display: flex;
	justify-content: flex-end;
}

.drawer-panel {
	background: var(--c-white);
	width: 100%;
	max-width: 580px;
	height: 100%;
	box-shadow: var(--shadow-drawer);
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	animation: drawer-slide-left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes drawer-slide-left {
	from { transform: translateX(100%); }
	to { transform: translateX(0); }
}

.drawer-header {
	padding: 1.75rem 2rem;
	border-bottom: 1px solid var(--c-sand-200);
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	top: 0;
	background: var(--c-white);
	z-index: 2;
}

.drawer-content {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

/* Footer Section */
.footer {
	background: var(--c-forest-900);
	color: var(--c-sand-100);
	padding: 5rem 0 2.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3.5rem;
	margin-bottom: 3.5rem;
}

.footer-brand p {
	color: var(--c-sage-300);
	font-size: 0.9375rem;
	margin-top: 1rem;
	max-width: 320px;
}

.footer-col-title {
	font-family: var(--font-sans);
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--c-terra-500);
	margin-bottom: 1.25rem;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-link {
	font-size: 0.875rem;
	color: var(--c-sand-200);
	transition: var(--transition-base);
	cursor: pointer;
}

.footer-link:hover {
	color: var(--c-white);
}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.8125rem;
	color: var(--c-sage-400);
	flex-wrap: wrap;
	gap: 1rem;
}

/* Toast alert notification */
.toast-container {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 10000;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.toast {
	background: var(--c-forest-900);
	color: var(--c-white);
	border: 1px solid var(--c-sage-400);
	padding: 1rem 1.5rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-modal);
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.9375rem;
	animation: slide-up 0.2s ease;
}

.toast.success {
	border-color: var(--c-success);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
	.hero-grid, .map-layout, .wizard-inner {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.protocol-stepper-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.compliance-grid {
		grid-template-columns: 1fr;
	}
	.timeline-track {
		grid-template-columns: 1fr 1fr;
	}
	.timeline-track::before {
		display: none;
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}
	.protocol-stepper-grid, .timeline-track {
		grid-template-columns: 1fr;
	}
	.materials-grid {
		grid-template-columns: 1fr;
	}
	.wizard-form-side, .wizard-preview-side {
		padding: 1.75rem;
	}
	.footer-grid {
		grid-template-columns: 1fr;
	}
}
