		/* ── Design tokens — light (default) ────────────────────── */
		:root {
			--bg:        #f7faf7;
			--bg-card:   #ffffff;
			--bg-raised: #eef5ee;
			--border:    rgba(22,101,52,0.12);
			--border-hi: rgba(5,150,105,0.3);
			--accent:    #059669;
			--accent-hi: #047857;
			--accent-dim:rgba(5,150,105,0.08);
			--blue:      #0284c7;
			--blue-hi:   #0369a1;
			--text:      #1e2a1e;
			--muted:     #4b5563;
			--dimmed:    #9ca3af;
			--heading:   #0f1a0f;
			--shadow:    rgba(0,0,0,0.08);
		}
		/* ── Dark theme (opt-in via toggle) ──────────────────────── */
		[data-theme="dark"] {
			--bg:        #080e10;
			--bg-card:   #0c1410;
			--bg-raised: #101e14;
			--border:    rgba(134,183,120,0.12);
			--border-hi: rgba(16,185,129,0.3);
			--accent:    #10b981;
			--accent-hi: #34d399;
			--accent-dim:rgba(16,185,129,0.1);
			--blue:      #0ea5e9;
			--blue-hi:   #38bdf8;
			--text:      #e2e8f0;
			--muted:     #94a3b8;
			--dimmed:    #64748b;
			--heading:   #f8fafc;
			--shadow:    rgba(0,0,0,0.5);
		}

		/* ── Reset & base ────────────────────────────────────────── */
		*, *::before, *::after { box-sizing: border-box; }
		html { scroll-behavior: smooth; }
		body {
			margin: 0;
			font-family: 'Inter', sans-serif;
			font-size: 16px;
			line-height: 1.65;
			color: var(--text);
			background: var(--bg);
			transition: background 0.3s, color 0.3s;
		}
		h1,h2,h3,h4,h5,h6 {
			font-family: 'IBM Plex Sans', sans-serif;
			color: var(--heading);
			line-height: 1.2;
		}
		a { color: var(--accent-hi); text-decoration: none; }
		a:hover { color: var(--accent-hi); }
		img { max-width: 100%; height: auto; display: block; }

		/* ── Layout ──────────────────────────────────────────────── */
		.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
		section { padding: 48px 0; }

		/* ── Utility ─────────────────────────────────────────────── */
		.tag {
			display: inline-block;
			font-size: 11px;
			font-weight: 600;
			letter-spacing: 0.12em;
			text-transform: uppercase;
			color: var(--accent);
			background: var(--accent-dim);
			border: 1px solid var(--border-hi);
			padding: 4px 12px;
			border-radius: 100px;
			margin-bottom: 16px;
		}
		.section-label {
			text-align: center;
			margin-bottom: 32px;
		}
		.section-label h2 {
			font-size: clamp(28px, 4vw, 44px);
			margin: 8px 0 16px;
			letter-spacing: -0.03em;
		}
		.section-label p {
			color: var(--muted);
			max-width: 560px;
			margin: 0 auto;
			font-size: 17px;
		}
		.divider {
			border: none;
			border-top: 1px solid var(--border);
			margin: 24px 0;
		}

		/* ── Buttons ─────────────────────────────────────────────── */
		.btn {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			padding: 13px 28px;
			border-radius: 8px;
			font-weight: 600;
			font-family: 'IBM Plex Sans', sans-serif;
			font-size: 15px;
			border: none;
			cursor: pointer;
			text-decoration: none;
			transition: all 0.18s ease;
			white-space: nowrap;
		}
		.btn-primary {
			background: #047857;
			color: #fff;
		}
		.btn-primary:hover { background: #036648; color: #fff; transform: translateY(-1px); }
		.btn-green {
			background: #0369a1;
			color: #fff;
		}
		.btn-green:hover { background: #025283; color: #fff; transform: translateY(-1px); }
		.btn-outline {
			background: transparent;
			color: var(--text);
			border: 1px solid var(--border);
		}
		.btn-outline:hover {
			border-color: var(--accent);
			color: var(--accent);
			background: rgba(14,165,233,0.06);
		}
		.btn-ghost {
			background: rgba(255,255,255,0.07);
			color: var(--text);
			border: 1px solid var(--border);
		}
		.btn-ghost:hover {
			background: rgba(255,255,255,0.12);
			color: #fff;
		}

		/* ── Top bar ─────────────────────────────────────────────── */
		#top-bar {
			background: var(--bg-raised);
			border-bottom: 1px solid var(--border-hi);
			padding: 9px 0;
			font-size: 13.5px;
		}
		#top-bar .inner {
			display: flex;
			justify-content: space-between;
			align-items: center;
		}
		.lang-switcher { display: flex; gap: 4px; }
		.lang-btn {
			background: none;
			border: 1px solid var(--border);
			padding: 4px 11px;
			border-radius: 5px;
			cursor: pointer;
			font-size: 13px;
			font-weight: 600;
			color: var(--muted);
			font-family: 'Inter', sans-serif;
			letter-spacing: 0.05em;
			transition: all 0.15s;
		}
		.lang-btn:hover { border-color: var(--accent); color: var(--accent); }
		.lang-btn.active { background: #047857; color: #fff; border-color: #047857; }

		/* ── Header / Nav ────────────────────────────────────────── */
		#site-header {
			position: sticky;
			top: 0;
			z-index: 100;
			background: var(--bg-card);
			backdrop-filter: blur(12px);
			-webkit-backdrop-filter: blur(12px);
			border-bottom: 1px solid var(--border);
		}
		#site-header .inner {
			display: flex;
			align-items: center;
			justify-content: space-between;
			padding: 14px 0;
			flex-wrap: wrap;
			gap: 10px;
		}
		.logo a {
			display: flex;
			align-items: center;
			gap: 10px;
			text-decoration: none;
		}
		.logo img { height: 56px; flex-shrink: 0; }
		.logo-name {
			font-family: 'IBM Plex Sans', sans-serif;
			font-size: 15px;
			font-weight: 700;
			color: var(--heading);
			line-height: 1.2;
			white-space: nowrap;
		}
		.logo-name span { color: var(--accent); }
		nav ul {
			list-style: none;
			margin: 0;
			padding: 0;
			display: flex;
			flex-wrap: wrap;
			gap: 2px;
			align-items: center;
		}
		nav > ul > li { position: relative; }
		nav a {
			color: var(--muted);
			padding: 7px 12px;
			font-weight: 500;
			font-size: 14px;
			border-radius: 6px;
			transition: all 0.15s;
		}
		nav a:hover { color: var(--heading); background: rgba(255,255,255,0.05); }
		nav ul ul {
			display: none;
			position: absolute;
			top: calc(100% + 8px);
			left: 0;
			background: var(--bg-card);
			border: 1px solid var(--border);
			border-radius: 10px;
			min-width: 210px;
			padding: 6px;
			z-index: 20;
			box-shadow: 0 16px 48px rgba(0,0,0,0.5);
		}
		/* invisible bridge so the pointer can cross the gap into the submenu without it closing */
		nav ul ul::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
		nav ul li:hover > ul { display: block; }
		nav ul ul li { display: block; }
		nav ul ul a {
			display: block;
			padding: 9px 14px;
			border-radius: 6px;
			white-space: nowrap;
		}
		nav ul ul a:hover { background: rgba(255,255,255,0.06); }
		.nav-cta {
			background: #047857 !important;
			color: #fff !important;
			border-radius: 7px;
			padding: 7px 16px !important;
			font-weight: 600 !important;
		}
		.nav-cta:hover { background: #036648 !important; color: #fff !important; }

		/* ── Hero ────────────────────────────────────────────────── */
		.hero {
			position: relative;
			min-height: 420px;
			display: flex;
			align-items: center;
			overflow: hidden;
			background: #040a06;
			padding: 20px 0;
		}
		.hero-video {
			position: absolute;
			inset: 0;
			width: 100%;
			height: 100%;
			object-fit: cover;
			filter: brightness(0.45) saturate(0.8);
		}
		.hero-overlay {
			position: absolute;
			inset: 0;
			background: linear-gradient(
				135deg,
				rgba(4,10,6,0.88) 0%,
				rgba(4,10,6,0.55) 50%,
				rgba(4,10,6,0.25) 100%
			);
		}
		.hero-glow {
			position: absolute;
			width: 700px;
			height: 700px;
			border-radius: 50%;
			background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 65%);
			bottom: -200px;
			right: -100px;
			pointer-events: none;
		}
		.hero .container { position: relative; z-index: 2; padding-top: 14px; padding-bottom: 16px; }
		.hero-eyebrow {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			font-size: 12px;
			font-weight: 600;
			letter-spacing: 0.1em;
			text-transform: uppercase;
			color: var(--accent);
			margin-bottom: 14px;
		}
		.hero-eyebrow::before {
			content: '';
			display: block;
			width: 24px;
			height: 1px;
			background: var(--accent);
		}
		.hero h1 {
			font-size: clamp(34px, 5.2vw, 64px);
			font-weight: 700;
			letter-spacing: -0.04em;
			line-height: 1.06;
			margin: 0 0 16px;
			max-width: 960px;
			color: #fff;
		}
		.hero h1 span { color: var(--accent); text-shadow: 0 0 40px rgba(16,185,129,0.3); }
		.hero p {
			font-size: 17px;
			color: rgba(226,232,240,0.78);
			max-width: 560px;
			margin: 0 0 22px;
			line-height: 1.6;
		}
		.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
		.hero-stats {
			display: flex;
			gap: 36px;
			margin-top: 28px;
			padding-top: 22px;
			border-top: 1px solid var(--border);
			flex-wrap: wrap;
		}
		.hero-stat-num {
			font-family: 'IBM Plex Sans', sans-serif;
			font-size: 36px;
			font-weight: 700;
			color: #fff;
			letter-spacing: -0.03em;
			line-height: 1;
		}
		.hero-stat-num span { color: var(--accent); }
		.hero-stat-label {
			font-size: 13px;
			color: var(--muted);
			margin-top: 4px;
		}

		/* ── Services ────────────────────────────────────────────── */
		#services { background: var(--bg-card); }
		.services-grid {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
			gap: 2px;
			background: var(--border);
			border: 1px solid var(--border);
			border-radius: 16px;
			overflow: hidden;
		}
		.service-card {
			background: var(--bg-card);
			padding: 36px 32px;
			transition: background 0.2s;
		}
		.service-card:hover { background: var(--bg-raised); }
.service-card h3 {
			font-size: 20px;
			margin: 0 0 12px;
			color: var(--heading);
		}
		.service-card p {
			font-size: 15px;
			color: var(--muted);
			margin: 0 0 24px;
			line-height: 1.65;
		}
		.service-card img {
			width: 100%;
			border-radius: 10px;
			margin-bottom: 20px;
			object-fit: cover;
			height: 200px;
		}
		.card-link {
			font-size: 14px;
			font-weight: 600;
			color: var(--accent);
			display: inline-flex;
			align-items: center;
			gap: 6px;
		}
		.card-link:hover { color: var(--accent-hi); gap: 10px; }

		/* ── Topographic pattern (kept solid — texture lives on the green banners) ── */
		.topo-pattern { background-image: none; }

		/* ── Stats bar ───────────────────────────────────────────── */
		.stats-bar {
			background: var(--bg-raised);
			border-top: 1px solid var(--border);
			border-bottom: 1px solid var(--border);
			padding: 0;
			background-blend-mode: overlay;
		}
		.stats-bar-inner {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
		}
		.stat-item {
			padding: 44px 32px;
			border-right: 1px solid var(--border);
			text-align: center;
		}
		.stat-item:last-child { border-right: none; }
		.stat-num {
			font-family: 'IBM Plex Sans', sans-serif;
			font-size: 52px;
			font-weight: 700;
			color: var(--accent);
			letter-spacing: -0.04em;
			line-height: 1;
		}
		.stat-label {
			font-size: 14px;
			font-weight: 600;
			color: var(--muted);
			margin-top: 8px;
			text-transform: uppercase;
			letter-spacing: 0.06em;
		}

		/* ── Portfolio CTA ───────────────────────────────────────── */
		#portfolio-cta {
			background: var(--bg);
			text-align: center;
		}
		.portfolio-link {
			display: inline-flex;
			align-items: center;
			gap: 10px;
			font-size: 17px;
			font-weight: 600;
			color: var(--green);
		}
		.portfolio-link:hover { color: var(--green-hi); }

		/* ── Workflow ────────────────────────────────────────────── */
		#workflow { background: var(--bg-card); }
		.workflow-grid {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
			gap: 24px;
		}
		.workflow-card {
			background: var(--bg-raised);
			border: 1px solid var(--border);
			border-radius: 14px;
			overflow: hidden;
			transition: border-color 0.2s, transform 0.2s;
		}
		.workflow-card:hover {
			border-color: var(--border-hi);
			transform: translateY(-3px);
		}
		.workflow-card img {
			width: 100%;
			height: 180px;
			object-fit: cover;
		}
		.workflow-card-body { padding: 24px; }
		.workflow-step {
			font-size: 11px;
			font-weight: 700;
			letter-spacing: 0.12em;
			text-transform: uppercase;
			color: var(--accent);
			margin-bottom: 8px;
		}
		.workflow-card h3 {
			font-size: 18px;
			margin: 0 0 10px;
		}
		.workflow-card p { font-size: 14px; color: var(--muted); margin: 0; }

		/* ── How it works ────────────────────────────────────────── */
		#how-it-works { background: var(--bg); }
		.steps-grid {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 64px;
			align-items: start;
		}
		@media (max-width: 800px) { .steps-grid { grid-template-columns: 1fr; gap: 40px; } }
		.steps-intro h2 {
			font-size: clamp(28px, 4vw, 44px);
			letter-spacing: -0.03em;
			margin: 8px 0 20px;
		}
		.steps-intro p { color: var(--muted); font-size: 16px; margin: 0 0 32px; }
		.step-list { display: flex; flex-direction: column; gap: 0; }
		.step {
			display: flex;
			gap: 20px;
			padding: 28px 0;
			border-bottom: 1px solid var(--border);
		}
		.step:last-child { border-bottom: none; }
		.step-num {
			flex-shrink: 0;
			width: 36px;
			height: 36px;
			border-radius: 50%;
			background: var(--accent-dim);
			border: 1px solid var(--border-hi);
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 13px;
			font-weight: 700;
			color: var(--accent);
			font-family: 'IBM Plex Sans', sans-serif;
		}
		.step-content h4 {
			font-size: 17px;
			margin: 0 0 6px;
			color: var(--heading);
		}
		.step-content p { font-size: 14px; color: var(--muted); margin: 0; }

		/* ── Tech spec ───────────────────────────────────────────── */
		#tech { background: var(--bg-card); }
		.tech-inner {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 64px;
			align-items: center;
		}
		@media (max-width: 800px) { .tech-inner { grid-template-columns: 1fr; } }
		.tech-img {
			border-radius: 16px;
			overflow: hidden;
			border: 1px solid var(--border);
		}
		.tech-img img { width: 100%; object-fit: cover; }
		.tech-content h2 {
			font-size: clamp(26px, 3.5vw, 40px);
			letter-spacing: -0.03em;
			margin: 8px 0 16px;
		}
		.tech-content p { color: var(--muted); font-size: 16px; margin: 0 0 32px; }
		.tech-specs {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 16px;
		}
		.spec-box {
			background: var(--bg-raised);
			border: 1px solid var(--border);
			border-radius: 10px;
			padding: 20px;
		}
		.spec-val {
			font-family: 'IBM Plex Sans', sans-serif;
			font-size: 26px;
			font-weight: 700;
			color: var(--heading);
			letter-spacing: -0.02em;
		}
		.spec-key { font-size: 13px; color: var(--muted); margin-top: 4px; }

		/* ── Testimonials ────────────────────────────────────────── */
		#testimonials { background: var(--bg); }
		.reviews-grid {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
			gap: 20px;
		}
		.review-card {
			background: var(--bg-card);
			border: 1px solid var(--border);
			border-radius: 14px;
			padding: 28px;
			transition: border-color 0.2s;
		}
		.review-card:hover { border-color: var(--border-hi); }
		.stars { color: #fbbf24; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
		.review-text {
			font-size: 15px;
			color: var(--muted);
			font-style: italic;
			line-height: 1.7;
			margin: 0 0 20px;
		}
		.reviewer-name { font-weight: 600; color: var(--heading); font-size: 14px; }
		.reviewer-role { font-size: 13px; color: var(--dimmed); margin-top: 2px; }
		.reviews-cta { text-align: center; margin-top: 40px; }

		/* ── CTA Band ────────────────────────────────────────────── */
		#contact-cta {
			background: var(--bg-raised);
			border-top: 1px solid var(--border);
			border-bottom: 1px solid var(--border);
		}
		.cta-band {
			display: grid;
			grid-template-columns: 1fr auto;
			gap: 40px;
			align-items: center;
			padding: 64px 0;
		}
		@media (max-width: 700px) { .cta-band { grid-template-columns: 1fr; text-align: center; } }
		.cta-band h2 {
			font-size: clamp(24px, 3.5vw, 38px);
			letter-spacing: -0.03em;
			margin: 0 0 12px;
		}
		.cta-band p { color: var(--muted); margin: 0; font-size: 16px; }
		.cta-band-actions { display: flex; flex-direction: column; gap: 10px; min-width: 200px; }

		/* ── FAQ ─────────────────────────────────────────────────── */
		#faq { background: var(--bg); }
		.faq-list { max-width: 800px; margin: 0 auto; }
		details {
			border-bottom: 1px solid var(--border);
		}
		details:first-child { border-top: 1px solid var(--border); }
		summary {
			font-size: 17px;
			font-weight: 600;
			color: var(--heading);
			cursor: pointer;
			padding: 22px 0;
			font-family: 'IBM Plex Sans', sans-serif;
			list-style: none;
			display: flex;
			justify-content: space-between;
			align-items: center;
			gap: 16px;
		}
		summary::-webkit-details-marker { display: none; }
		summary::after {
			content: '+';
			font-size: 22px;
			font-weight: 400;
			color: var(--accent);
			flex-shrink: 0;
			transition: transform 0.2s;
		}
		details[open] summary::after { transform: rotate(45deg); }
		details p {
			color: var(--muted);
			font-size: 15px;
			padding: 0 0 22px;
			margin: 0;
			line-height: 1.7;
		}
		details p a { color: var(--accent); }

		/* ── Feature boxes ───────────────────────────────────────── */
		#features { background: var(--bg-card); padding: 60px 0; }
		.features-grid {
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			gap: 16px;
		}
		@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
		@media (max-width: 500px) { .features-grid { grid-template-columns: 1fr; } }
		.feature-pill {
			background: var(--bg-raised);
			border: 1px solid var(--border);
			border-radius: 12px;
			padding: 28px 24px;
			text-align: center;
			transition: border-color 0.2s;
		}
		.feature-pill:hover { border-color: var(--border-hi); }
		.feature-pill h4 { font-size: 15px; margin: 0; color: var(--heading); }

		/* ── Footer ──────────────────────────────────────────────── */
		footer {
			background: var(--bg-card);
			border-top: 1px solid var(--border);
			padding: 60px 0 24px;
		}
		.footer-grid {
			display: grid;
			grid-template-columns: 2fr 1fr 1fr 1fr;
			gap: 40px;
			margin-bottom: 48px;
		}
		@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
		@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
		.footer-brand img { height: 60px; width: auto; }
		.footer-brand p { color: var(--muted); font-size: 14px; margin: 12px 0 0; line-height: 1.7; }
		.footer-contact { margin-top: 16px; }
		.footer-contact a {
			display: block;
			color: var(--muted);
			font-size: 14px;
			margin-bottom: 6px;
		}
		.footer-contact a:hover { color: var(--accent); }
		.footer-col h5 {
			font-size: 13px;
			font-weight: 700;
			letter-spacing: 0.08em;
			text-transform: uppercase;
			color: var(--dimmed);
			margin: 0 0 16px;
		}
		.footer-col ul {
			list-style: none;
			padding: 0;
			margin: 0;
		}
		.footer-col li { margin-bottom: 10px; }
		.footer-col a { color: var(--muted); font-size: 14px; }
		.footer-col a:hover { color: var(--heading); }
		.footer-bottom {
			border-top: 1px solid var(--border);
			padding-top: 24px;
			display: flex;
			justify-content: space-between;
			align-items: center;
			flex-wrap: wrap;
			gap: 10px;
		}
		.footer-bottom p { font-size: 13px; color: var(--dimmed); margin: 0; }
		.footer-bottom a { color: var(--dimmed); }
		.footer-bottom a:hover { color: var(--muted); }

		/* ── Video section ───────────────────────────────────────── */
		#video-section { background: var(--bg-raised); }
		.video-wrapper {
			max-width: 960px;
			margin: 0 auto;
			border-radius: 16px;
			overflow: hidden;
			border: 1px solid var(--border);
			position: relative;
		}
		.video-wrapper video {
			width: 100%;
			display: block;
			border-radius: 16px;
		}
		.video-overlay {
			position: absolute;
			inset: 0;
			background: rgba(4,10,6,0.35);
			display: flex;
			align-items: center;
			justify-content: center;
			transition: background 0.2s;
		}
		.video-overlay:hover { background: rgba(4,10,6,0.15); }
		.play-btn {
			width: 72px;
			height: 72px;
			border-radius: 50%;
			background: rgba(16,185,129,0.9);
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 26px;
			color: #fff;
			transition: all 0.2s;
			text-decoration: none;
			box-shadow: 0 0 0 0 rgba(16,185,129,0.4);
			animation: pulse-green 2.5s infinite;
		}
		.play-btn:hover {
			background: var(--accent);
			transform: scale(1.1);
			color: #fff;
			animation: none;
		}
		@keyframes pulse-green {
			0%   { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
			70%  { box-shadow: 0 0 0 20px rgba(16,185,129,0); }
			100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
		}

		/* ── Responsive ──────────────────────────────────────────── */
		@media (max-width: 768px) {
			section { padding: 56px 0; }
			.hero { min-height: 70vh; }
			.hero-stats { gap: 24px; }
			.stats-bar-inner { grid-template-columns: 1fr; }
			.stat-item { border-right: none; border-bottom: 1px solid var(--border); }
			.stat-item:last-child { border-bottom: none; }
		}
		@media (max-width: 600px) {
			nav ul { gap: 0; }
			nav a { padding: 6px 8px; font-size: 13px; }
		}

		/* ════════════════════════════════════════════════════════════
		   INNER PAGE / CONTENT STYLES (shared across all sub-pages)
		   ════════════════════════════════════════════════════════════ */

		/* Compact page hero for interior pages — branded green block w/ white contours */
		.page-hero {
			position: relative;
			padding: 64px 0 56px;
			background: #064e3b;
			border-bottom: 1px solid rgba(255,255,255,0.10);
			overflow: hidden;
		}
		.page-hero::before {
			content: '';
			position: absolute;
			inset: 0;
			background-image: url('../images/topo-bg.svg?v=3');
			background-size: cover;
			background-position: center;
			opacity: 0.16;
			pointer-events: none;
		}
		.page-hero .container { position: relative; z-index: 1; }
		.page-hero h1 {
			font-size: clamp(30px, 5vw, 50px);
			letter-spacing: -0.03em;
			margin: 14px 0 16px;
			max-width: 800px;
			color: #ffffff;
		}
		.page-hero p, .page-hero p.lead {
			color: rgba(255,255,255,0.86);
			font-size: clamp(16px, 2vw, 19px);
			max-width: 680px;
			margin: 0;
		}
		.page-hero .breadcrumb, .page-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
		.page-hero .tag, .page-hero .section-label .tag { background: rgba(255,255,255,0.14); color: #d1fae5; border-color: rgba(255,255,255,0.2); }
		.breadcrumb { font-size: 13px; color: var(--dimmed); margin-bottom: 4px; }
		.breadcrumb a { color: var(--muted); }
		.breadcrumb a:hover { color: var(--accent); }

		/* Prose / article body */
		.prose { max-width: 760px; margin: 0 auto; }
		.prose.wide { max-width: 920px; }
		.prose h2 { font-size: clamp(24px, 3.4vw, 34px); letter-spacing: -0.02em; margin: 48px 0 16px; }
		.prose h3 { font-size: 21px; margin: 36px 0 12px; }
		.prose p { color: var(--text); margin: 0 0 20px; font-size: 17px; line-height: 1.8; }
		.prose > p:first-of-type { font-size: 19px; line-height: 1.75; color: var(--heading); }
		.prose ul, .prose ol { color: var(--text); margin: 0 0 20px; padding-left: 22px; }
		.prose li { margin-bottom: 9px; }
		.prose img { border-radius: 14px; border: 1px solid var(--border); margin: 24px 0; }
		.prose a { color: var(--accent); font-weight: 500; }
		.prose a:hover { color: var(--accent-hi); text-decoration: underline; }
		.prose blockquote {
			border-left: 3px solid var(--accent);
			background: var(--bg-card);
			padding: 18px 24px;
			border-radius: 0 10px 10px 0;
			margin: 24px 0;
			color: var(--muted);
		}

		/* Check list */
		.check-list { list-style: none; padding-left: 0; }
		.check-list li {
			position: relative;
			padding-left: 30px;
			margin-bottom: 14px;
			color: var(--text);
		}
		.check-list li::before {
			content: '✓';
			position: absolute;
			left: 0;
			top: 0;
			color: var(--accent);
			font-weight: 700;
			background: var(--accent-dim);
			width: 20px; height: 20px;
			border-radius: 50%;
			display: flex; align-items: center; justify-content: center;
			font-size: 12px;
		}

		/* Generic info card grid */
		.info-grid {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
			gap: 22px;
			margin: 32px 0;
		}
		.info-card {
			background: var(--bg-card);
			border: 1px solid var(--border);
			border-radius: 16px;
			padding: 30px 28px;
			transition: border-color 0.2s, transform 0.2s;
		}
		.info-card:hover { border-color: var(--border-hi); transform: translateY(-3px); }
		.info-card h3 { margin: 0 0 10px; font-size: 19px; }
		.info-card p { color: var(--muted); font-size: 15px; margin: 0; line-height: 1.65; }
		.info-card .num {
			font-family: 'IBM Plex Sans', sans-serif;
			font-size: 14px; font-weight: 700;
			color: var(--accent);
			letter-spacing: 0.1em;
			text-transform: uppercase;
			margin-bottom: 12px;
		}
		.info-card img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; margin-bottom: 18px; }

		/* Spec / data table */
		.spec-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px; }
		.spec-table th, .spec-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--border); }
		.spec-table th { color: var(--heading); font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; width: 40%; }
		.spec-table td { color: var(--muted); }
		.spec-table tr:hover td, .spec-table tr:hover th { background: var(--bg-card); }

		/* Pricing / highlight box */
		.highlight-box {
			background: var(--accent-dim);
			border: 1px solid var(--border-hi);
			border-radius: 16px;
			padding: 32px;
			margin: 32px 0;
		}
		.highlight-box h3 { margin-top: 0; }
		.price-tag {
			font-family: 'IBM Plex Sans', sans-serif;
			font-size: 40px; font-weight: 700;
			color: var(--accent);
			letter-spacing: -0.03em;
		}
		.price-tag span { font-size: 16px; color: var(--muted); font-weight: 500; }

		/* Forms (quote page) */
		.form-card {
			background: var(--bg-card);
			border: 1px solid var(--border);
			border-radius: 18px;
			padding: 36px;
		}
		.form-row { margin-bottom: 20px; }
		.form-row label {
			display: block;
			font-size: 14px;
			font-weight: 600;
			color: var(--heading);
			margin-bottom: 8px;
			font-family: 'IBM Plex Sans', sans-serif;
		}
		.form-row input, .form-row select, .form-row textarea {
			width: 100%;
			background: var(--bg);
			border: 1px solid var(--border);
			border-radius: 9px;
			padding: 12px 14px;
			color: var(--text);
			font-family: 'Inter', sans-serif;
			font-size: 15px;
			transition: border-color 0.15s;
		}
		.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
			outline: none;
			border-color: var(--accent);
		}
		.form-row textarea { resize: vertical; min-height: 120px; }
		.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
		@media (max-width: 600px) { .form-grid-2 { grid-template-columns: 1fr; } }

		/* CTA band reused on inner pages */
		.inner-cta {
			background: var(--bg-card);
			border: 1px solid var(--border-hi);
			border-radius: 20px;
			padding: 48px 40px;
			text-align: center;
			margin: 24px 0;
		}
		.inner-cta h2 { margin: 0 0 12px; font-size: clamp(24px, 3.5vw, 34px); }
		.inner-cta p { color: var(--muted); max-width: 540px; margin: 0 auto 28px; }
		.inner-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

		/* ── Blog article extras (re-themed posts) ───────────────── */
		.prose iframe { width: 100%; border: none; border-radius: 12px; margin: 16px 0; }
		.prose img { border-radius: 12px; margin: 16px 0; }
		.podcast-embed {
			background: var(--bg-card);
			border: 1px solid var(--border);
			border-radius: 14px;
			padding: 20px 22px;
			margin: 28px 0;
		}
		.podcast-embed h3 { margin: 0 0 8px; color: var(--heading); }
		.podcast-embed p { color: var(--muted); margin: 0 0 14px; }

		/* ── Blog post hero (centered reading layout) ────────────── */
		.post-hero {
			background: linear-gradient(180deg, var(--bg-raised), var(--bg));
			border-bottom: 1px solid var(--border);
			padding: 60px 0 46px;
			text-align: center;
		}
		.post-hero .container { max-width: 820px; }
		.post-hero .breadcrumb { justify-content: center; margin-bottom: 18px; }
		.post-hero h1 { font-size: clamp(30px, 4.6vw, 46px); letter-spacing: -0.03em; margin: 14px auto 16px; max-width: 760px; }
		.post-hero .post-meta { color: var(--muted); font-size: 14px; margin: 0; }
		.post-body { padding-top: 56px; padding-bottom: 56px; }

		/* ── Header hardening — beat carried pages' generic CSS (blog/regional/es) ── */
		#site-header .logo a { display: flex !important; align-items: center; gap: 10px; }
		#site-header .logo img { height: 56px !important; width: auto !important; display: block; margin: 0; }
		#site-header .logo-name { display: inline-block; font-family: 'IBM Plex Sans', sans-serif; font-weight: 700; color: var(--heading); white-space: nowrap; }
		#site-header .logo-name span { color: var(--accent); }
		#site-header nav ul { display: flex; flex-wrap: wrap; gap: 2px; align-items: center; list-style: none; margin: 0; padding: 0; justify-content: flex-end; }
		#site-header nav > ul > li { position: relative; }
		#site-header nav > ul > li > a { color: var(--muted); padding: 7px 12px; font-weight: 500; font-size: 14px; border-radius: 6px; background: none; }
		#site-header nav > ul > li > a:hover { color: var(--heading); background: rgba(0,0,0,0.04); }
		#site-header nav ul ul { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; min-width: 210px; padding: 6px; box-shadow: 0 16px 48px var(--shadow); }
		#site-header nav ul ul::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
		#site-header nav ul li:hover > ul { display: block; }
		#site-header nav ul ul a { display: block; padding: 9px 14px; border-radius: 6px; white-space: nowrap; color: var(--text); font-size: 14px; }
		#site-header nav ul ul a:hover { background: var(--accent-dim); color: var(--accent-hi); }
		#site-header .nav-cta { background: #047857 !important; color: #fff !important; border-radius: 7px; padding: 7px 16px !important; font-weight: 600; }
		#site-header .nav-cta:hover { background: #036648 !important; color: #fff !important; }

		/* ── Carried-page hero/banner text stays light on its colored background ── */
		.blog-post-hero, .blog-post-hero h1, .blog-post-hero h2, .blog-post-hero h3,
		.blog-post-hero p, .blog-post-hero a, .blog-post-hero .breadcrumb, .blog-post-hero .breadcrumb a,
		.article-hero, .article-hero h1, .article-hero h2, .article-hero h3, .article-hero p, .article-hero a,
		.article-hero .breadcrumb, .article-hero .breadcrumb a,
		.blog-hero, .blog-hero h1, .blog-hero h2, .blog-hero h3, .blog-hero p, .blog-hero a,
		.blog-hero .breadcrumb, .blog-hero .breadcrumb a,
		.hero h1, .hero h2, .hero h3, .hero p, .hero a, .hero .breadcrumb, .hero .breadcrumb a, .hero .subtitle,
		.page-header h1, .page-header p, .page-header a { color: #ffffff !important; }

		/* ── In-article CTA band (follow-action) ─────────────────── */
		.cta-band { position: relative; overflow: hidden; background: #064e3b; color: #fff; padding: 48px 0; text-align: center; margin-top: 8px; }
		.cta-band::before { content: ''; position: absolute; inset: 0; background-image: url('../images/topo-bg.svg?v=3'); background-size: cover; background-position: center; opacity: 0.16; pointer-events: none; }
		.cta-band .container { position: relative; z-index: 1; }
		.cta-band h2 { color: #fff !important; margin: 0 0 10px; font-size: clamp(24px, 3.4vw, 34px); }
		.cta-band p { color: rgba(255,255,255,0.88); margin: 0 auto 22px; max-width: 560px; }
		.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
		.cta-band .btn-primary { background: #fff; color: #064e3b; }
		.cta-band .btn-primary:hover { background: #d1fae5; }
		.cta-band .btn-outline { border: 1px solid rgba(255,255,255,0.5); color: #fff; }
		.cta-band .btn-outline:hover { background: rgba(255,255,255,0.12); }

		/* Normalise carried hero backgrounds to the emerald brand gradient (kills old blue) */
		.blog-hero, .article-hero, .blog-post-hero { background: linear-gradient(135deg, #064e3b 0%, #059669 100%) !important; }

		/* ── Responsive YouTube embed (main LiDAR promo video) ───── */
		.video-embed { position: relative; width: 100%; max-width: 720px; margin: 0 auto; aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 18px 50px var(--shadow); }
		.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

		/* ── Project viewer (layer cards + iframe viewer) ────────── */
		.layer-card {
			text-align: left; cursor: pointer; font: inherit;
			background: var(--bg-card); border: 1px solid var(--border);
			border-radius: 14px; padding: 24px; transition: all 0.18s ease; color: var(--text);
		}
		.layer-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 16px 40px var(--shadow); }
		.layer-icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; background: var(--accent-dim); color: var(--accent); margin-bottom: 14px; }
		.layer-icon svg { width: 26px; height: 26px; }
		.layer-card h3 { margin: 0 0 8px; font-size: 19px; }
		.layer-card p { margin: 0 0 14px; color: var(--muted); font-size: 14px; line-height: 1.55; }
		.viewer-toolbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; margin-bottom: 16px; }
		.layer-toggle { display: flex; flex-wrap: wrap; gap: 8px; }
		.layer-toggle button {
			font: inherit; cursor: pointer; font-size: 14px; font-weight: 600;
			padding: 8px 16px; border-radius: 100px; border: 1px solid var(--border);
			background: var(--bg-card); color: var(--muted); transition: all 0.15s;
		}
		.layer-toggle button:hover { border-color: var(--accent); color: var(--accent); }
		.layer-toggle button.active { background: var(--accent); color: #fff; border-color: var(--accent); }
		.viewer-fs { padding: 8px 16px !important; font-size: 14px; }
		.viewer-frame { position: relative; width: 100%; height: 82vh; min-height: 480px; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); background: #000; }
		.viewer-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
		.viewer-frame:fullscreen { border-radius: 0; height: 100%; }

		/* ── Project viewer: tighter hero + 4-up layer grid ──────── */
		#proj-hero { padding: 26px 0 26px; }
		#proj-hero h1 { margin: 10px 0 0; }
		#layer-picker { padding-top: 36px; }
		.layer-grid { display: grid; gap: 16px; justify-content: center; }
		.layer-grid.count-1 { grid-template-columns: minmax(240px, 340px); }
		.layer-grid.count-2 { grid-template-columns: repeat(2, minmax(220px, 320px)); }
		.layer-grid.count-3 { grid-template-columns: repeat(3, minmax(0, 300px)); }
		.layer-grid.count-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
		.layer-grid .layer-card { padding: 20px; }
		.layer-grid .layer-card h3 { font-size: 17px; }
		.layer-grid .layer-card p { font-size: 13px; margin-bottom: 12px; }
		@media (max-width: 680px) { .layer-grid[class*="count-"] { grid-template-columns: 1fr 1fr; } }
		@media (max-width: 400px) { .layer-grid[class*="count-"] { grid-template-columns: 1fr; } }


		/* ── Mobile nav (CSS-only hamburger) ──────────────────────── */
		.nav-toggle-cb, .nav-toggle-btn { display: none; }
		@media (max-width: 820px) {
			#site-header .inner { flex-wrap: wrap; }
			#site-header .nav-toggle-btn {
				display: flex; flex-direction: column; justify-content: center; gap: 5px;
				width: 44px; height: 40px; padding: 9px; margin-left: auto; cursor: pointer;
				border-radius: 8px; border: 1px solid var(--border); background: var(--bg-card);
			}
			#site-header .nav-toggle-btn span { display: block; height: 2px; width: 100%; background: var(--heading); border-radius: 2px; transition: transform .2s, opacity .2s; }
			#site-header nav { flex-basis: 100%; order: 3; }
			#site-header nav > ul { display: none; flex-direction: column; align-items: stretch; gap: 2px; padding: 8px 0 4px; width: 100%; }
			#site-header .nav-toggle-cb:checked ~ nav > ul { display: flex; }
			#site-header nav > ul > li { position: static; width: 100%; }
			#site-header nav > ul > li > a { display: block; padding: 12px 10px; border-radius: 8px; font-size: 15px; }
			#site-header nav > ul > li > a:hover { background: var(--accent-dim); }
			#site-header nav ul ul { position: static; display: block; box-shadow: none; border: none; background: transparent; min-width: 0; padding: 0 0 4px 14px; }
			#site-header nav ul ul::before { display: none; }
			#site-header nav ul ul a { padding: 9px 10px; }
			#site-header .nav-cta { display: inline-block; margin: 4px 0 0; }
			#site-header .nav-toggle-cb:checked ~ .nav-toggle-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
			#site-header .nav-toggle-cb:checked ~ .nav-toggle-btn span:nth-child(2) { opacity: 0; }
			#site-header .nav-toggle-cb:checked ~ .nav-toggle-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
		}
		@media (max-width: 480px) {
			#top-bar { font-size: 12px; }
			#top-bar .inner { gap: 8px; }
			#top-bar .inner > *:last-child { white-space: nowrap; }
		}

