:root {
  --ink: #142019;
  --ink-soft: #536058;
  --forest-950: #0d2418;
  --forest-900: #123221;
  --forest-800: #173d2a;
  --forest-700: #215236;
  --forest-600: #2d6a3f;
  --lime: #8bc34a;
  --lime-soft: #dcebcf;
  --paper: #f7f8f4;
  --sand: #eceee7;
  --white: #fff;
  --line: rgba(20, 32, 25, 0.14);
  --shadow: 0 24px 70px rgba(16, 39, 25, 0.12);
  --radius: 22px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 40px));
  --font: "Aptos", "Segoe UI", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--lime-soft); color: var(--forest-950); }

.skip-link { position: fixed; top: -80px; left: 16px; z-index: 9999; padding: 12px 18px; background: var(--white); color: var(--forest-900); border-radius: 8px; }
.skip-link:focus { top: 16px; }
.container { width: var(--container); margin-inline: auto; }
.narrow { width: min(780px, calc(100vw - 40px)); margin-inline: auto; }
.section { padding: 110px 0; }
.section-sm { padding: 72px 0; }
.section-dark { color: var(--white); background: var(--forest-950); }
.section-forest { color: var(--white); background: var(--forest-800); }
.section-sand { background: var(--sand); }
.section-white { background: var(--white); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 20px; color: var(--forest-600); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.section-dark .eyebrow, .section-forest .eyebrow, .hero .eyebrow, .page-hero .eyebrow, .quote-band .eyebrow { color: #b7df89; }
.eyebrow::before { content: ""; width: 30px; height: 2px; background: currentColor; }
h1, h2, h3, h4 { margin: 0 0 20px; color: inherit; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3.2rem, 7vw, 6.7rem); max-width: 960px; }
h2 { font-size: clamp(2.45rem, 4.6vw, 4.6rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 2rem); }
h4 { font-size: 1.1rem; letter-spacing: -.015em; }
p { margin: 0 0 20px; }
.lead { max-width: 760px; color: var(--ink-soft); font-size: clamp(1.12rem, 1.9vw, 1.35rem); }
.section-dark .lead, .section-forest .lead { color: rgba(255,255,255,.72); }
.muted { color: var(--ink-soft); }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--forest-700); font-weight: 750; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(5px); }
.section-dark .text-link, .section-forest .text-link { color: #c8e7a3; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; transition: background .25s ease, box-shadow .25s ease, transform .25s ease; }
.site-header.scrolled, .site-header.light-page { background: rgba(247, 248, 244, .94); box-shadow: 0 8px 32px rgba(12, 36, 24, .08); backdrop-filter: blur(14px); }
.nav-wrap { width: var(--container); min-height: 88px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 190px; height: auto; }
.site-header:not(.scrolled):not(.light-page) .logo-dark { display: none; }
.site-header.scrolled .logo-light, .site-header.light-page .logo-light { display: none; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { position: relative; color: var(--white); font-size: .87rem; font-weight: 700; letter-spacing: .01em; }
.site-header.scrolled .nav a, .site-header.light-page .nav a { color: var(--ink); }
.nav a:not(.btn)::after { content: ""; position: absolute; inset: auto 0 -8px; height: 2px; background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav .btn { color: var(--white); }
.nav .btn-lime { color: var(--forest-950); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; color: var(--white); background: transparent; }
.site-header.scrolled .menu-toggle, .site-header.light-page .menu-toggle { color: var(--ink); border-color: var(--line); }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.btn { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; padding: 13px 22px; border: 1px solid transparent; border-radius: 999px; background: var(--forest-700); color: var(--white); font-size: .9rem; font-weight: 800; line-height: 1; transition: transform .2s ease, background .2s ease, border .2s ease; }
.btn:hover { transform: translateY(-2px); background: var(--forest-600); }
.btn-lime { color: var(--forest-950); background: var(--lime); }
.btn-lime:hover { background: #9bd35b; }
.btn-outline { color: var(--white); border-color: rgba(255,255,255,.42); background: transparent; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-dark-outline { color: var(--forest-900); border-color: var(--forest-700); background: transparent; }
.btn-dark-outline:hover { color: var(--white); background: var(--forest-700); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero { position: relative; min-height: 92vh; display: grid; align-items: end; overflow: hidden; color: var(--white); background: var(--forest-950); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,24,15,.93) 0%, rgba(8,24,15,.77) 39%, rgba(8,24,15,.22) 70%, rgba(8,24,15,.18) 100%), linear-gradient(0deg, rgba(8,24,15,.55), transparent 50%); }
.hero-content { position: relative; z-index: 2; width: var(--container); margin: 0 auto; padding: 175px 0 100px; }
.hero h1 { max-width: 970px; }
.hero .lead { max-width: 680px; color: rgba(255,255,255,.82); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 60px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.25); }
.hero-proof span { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.78); font-size: .9rem; font-weight: 650; }
.hero-proof span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(139,195,74,.16); }

.page-hero { padding: 180px 0 92px; color: var(--white); background: radial-gradient(circle at 80% 0, rgba(139,195,74,.16), transparent 35%), var(--forest-950); }
.page-hero h1 { max-width: 950px; font-size: clamp(3rem, 6vw, 6rem); }
.page-hero .lead { color: rgba(255,255,255,.72); }
.crumbs { margin-bottom: 28px; color: rgba(255,255,255,.62); font-size: .85rem; }
.crumbs a:hover { color: var(--white); }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(45px, 7vw, 100px); }
.split-top { align-items: start; }
.image-frame { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-frame img { aspect-ratio: 4/3; object-fit: cover; transition: transform .7s ease; }
.image-frame:hover img { transform: scale(1.025); }
.image-label { position: absolute; right: 16px; bottom: 16px; max-width: 230px; padding: 16px 18px; border-radius: 12px; color: var(--white); background: rgba(13,36,24,.9); backdrop-filter: blur(10px); font-size: .82rem; font-weight: 700; line-height: 1.45; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 55px; }
.section-heading h2 { max-width: 780px; margin-bottom: 0; }
.section-heading .lead { max-width: 440px; margin-bottom: 7px; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card { position: relative; overflow: hidden; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.68); transition: transform .25s ease, border .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-5px); border-color: rgba(45,106,63,.35); box-shadow: 0 18px 45px rgba(19,52,33,.09); }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 34px; border-radius: 50%; color: var(--forest-700); background: var(--lime-soft); font-weight: 900; }
.card p:last-child { margin-bottom: 0; }
.product-card { min-height: 320px; display: flex; flex-direction: column; justify-content: space-between; background: var(--white); }
.product-card .product-code { color: var(--forest-600); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.product-card .text-link { margin-top: 22px; }
.dark-card { border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.055); }
.dark-card p { color: rgba(255,255,255,.68); }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid rgba(255,255,255,.16); }
.stat { padding: 38px 28px; border-right: 1px solid rgba(255,255,255,.16); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--white); font-size: clamp(1.7rem, 3vw, 3rem); line-height: 1.1; }
.stat span { display: block; margin-top: 8px; color: rgba(255,255,255,.62); font-size: .84rem; }

.process { counter-reset: process; }
.process-step { position: relative; display: grid; grid-template-columns: 80px 1fr; gap: 20px; padding: 30px 0; border-top: 1px solid var(--line); }
.process-step::before { counter-increment: process; content: "0" counter(process); color: var(--forest-600); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.process-step h3 { margin-bottom: 10px; }

.region-panel { display: grid; grid-template-columns: .85fr 1.15fr; gap: 54px; padding: 52px; border-radius: var(--radius); color: var(--white); background: var(--forest-900); box-shadow: var(--shadow); }
.region-list { display: grid; gap: 14px; margin-top: 32px; }
.region-item { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.15); }
.region-item span { color: rgba(255,255,255,.62); font-size: .82rem; }
.map { position: relative; min-height: 430px; display: grid; place-items: center; overflow: hidden; border-radius: 18px; background: radial-gradient(circle at 50% 45%, rgba(139,195,74,.22), transparent 50%), rgba(255,255,255,.045); }
.map svg { width: min(92%, 540px); }
.map .country { fill: #2e6142; stroke: rgba(255,255,255,.35); stroke-width: 2; transition: fill .2s ease; }
.map .country.active { fill: #8bc34a; }
.map .country.capability { fill: #5f8b58; }
.map .marker { fill: var(--white); stroke: var(--forest-900); stroke-width: 5; transform-box: fill-box; transform-origin: center; animation: pulse 2.3s infinite; }
@keyframes pulse { 50% { transform: scale(1.25); opacity: .72; } }

.relationship-bar { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); align-items: center; gap: 18px; padding: 30px 0; }
.relationship-bar > div { padding: 18px 22px; border-left: 1px solid var(--line); }
.relationship-bar > div:first-child { border-left: 0; padding-left: 0; }
.relationship-name { display: block; color: var(--forest-900); font-weight: 900; letter-spacing: .04em; }
.relationship-type { display: block; color: var(--ink-soft); font-size: .75rem; }

.quote-band { position: relative; overflow: hidden; padding: 100px 0; color: var(--white); background: var(--forest-800); }
.quote-band::before { content: ""; position: absolute; width: 500px; height: 500px; top: -260px; right: -80px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018); }
.quote-band-inner { position: relative; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.quote-band h2 { max-width: 760px; margin-bottom: 0; }

.form-shell { display: grid; grid-template-columns: .68fr 1.32fr; gap: 50px; align-items: start; }
.form-intro { position: sticky; top: 125px; }
.form-card { padding: clamp(28px, 5vw, 54px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
label { color: var(--ink); font-size: .83rem; font-weight: 800; }
input, select, textarea { width: 100%; min-height: 54px; padding: 13px 15px; border: 1px solid #cdd3cd; border-radius: 10px; outline: none; color: var(--ink); background: #fbfcf9; transition: border .2s ease, box-shadow .2s ease; }
textarea { min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--forest-600); box-shadow: 0 0 0 4px rgba(45,106,63,.12); }
.checkbox { display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: 10px; }
.checkbox input { width: 18px; min-height: 18px; margin-top: 4px; }
.checkbox label { font-weight: 500; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-note { margin-top: 20px; color: var(--ink-soft); font-size: .78rem; }
.status-message { display: none; margin-bottom: 20px; padding: 14px 16px; border-radius: 10px; }
.status-message.error { display: block; color: #7c2222; background: #f9e4e4; }

.prose h2 { margin-top: 60px; font-size: 2.1rem; }
.prose h3 { margin-top: 38px; font-size: 1.35rem; }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 10px; }
.notice { padding: 22px 24px; border-left: 4px solid var(--lime); border-radius: 0 12px 12px 0; color: var(--ink); background: var(--sand); }

.site-footer { padding: 80px 0 26px; color: var(--white); background: #091a11; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 50px; padding-bottom: 60px; }
.footer-brand img { width: 220px; margin-bottom: 28px; }
.footer-brand p { max-width: 360px; color: rgba(255,255,255,.62); }
.footer-heading { margin-bottom: 18px; color: rgba(255,255,255,.55); font-size: .72rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.76); font-size: .9rem; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.56); font-size: .76rem; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .nav { gap: 17px; }
  .nav a { font-size: .8rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .relationship-bar { grid-template-columns: repeat(3, 1fr); }
  .relationship-bar > div:first-child { grid-column: 1 / -1; }
  .relationship-bar > div:nth-child(2) { border-left: 0; padding-left: 0; }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 30px, 720px); }
  .section { padding: 80px 0; }
  .menu-toggle { display: block; position: relative; z-index: 1002; }
  .nav { position: fixed; inset: 0; z-index: 1001; flex-direction: column; justify-content: center; gap: 22px; padding: 100px 25px; background: var(--forest-950); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .2s ease, transform .2s ease; }
  .nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .nav a, .site-header.scrolled .nav a, .site-header.light-page .nav a { color: var(--white); font-size: 1.1rem; }
  .nav .btn { margin-top: 10px; }
  .hero { min-height: 850px; }
  .hero-content { padding: 150px 0 70px; }
  .hero-proof { gap: 16px 28px; margin-top: 40px; }
  .split, .region-panel, .form-shell { grid-template-columns: 1fr; }
  .split > .image-frame { order: -1; }
  .split.keep-order > .image-frame { order: initial; }
  .grid-3 { grid-template-columns: 1fr; }
  .section-heading, .quote-band-inner { align-items: start; flex-direction: column; }
  .region-panel { padding: 30px; }
  .map { min-height: 340px; }
  .form-intro { position: static; }
  .footer-grid { grid-template-columns: 1.3fr 1fr; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  h2 { font-size: clamp(2.1rem, 11vw, 3.4rem); }
  .nav-wrap { min-height: 76px; }
  .brand img { width: 154px; }
  .hero { min-height: 790px; }
  .page-hero { padding: 140px 0 72px; }
  .grid-2, .grid-4, .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .card { padding: 26px; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .stat:last-child { border-bottom: 0; }
  .relationship-bar { grid-template-columns: 1fr; }
  .relationship-bar > div { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .relationship-bar > div:first-child { border-top: 0; }
  .process-step { grid-template-columns: 48px 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; }
  .button-row { flex-direction: column; align-items: stretch; }
  .button-row .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
