/* ============== TOKENS ============== */
:root {
  --bg: #ECF0E8;
  --bg-warm: #F1EEE5;
  --surface: #FFFFFF;
  --surface-2: #F6F8F3;
  --surface-dark: #0F1A14;

  --ink: #0F1A14;
  --ink-soft: #2A3A30;
  --muted: #5C6B5E;

  --green-deep: #0B6E3C;
  --green: #15A152;
  --green-bright: #2BC771;
  --green-pale: #D6F3DF;

  --orange: #FF7A1A;
  --orange-deep: #E55A00;
  --orange-pale: #FFE2C7;

  --yellow: #FFD43B;
  --yellow-deep: #F0B400;
  --yellow-pale: #FFF3C2;

  --coral: #FF6B5C;

  --border: #0F1A140F;
  --border-mid: #0F1A1421;
  --border-strong: #0F1A1438;

  --display: "Bricolage Grotesque", "Helvetica Neue", sans-serif;
  --sans: "Plus Jakarta Sans", -apple-system, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --r: 24px;
  --r-lg: 36px;
  --r-sm: 14px;
  --r-pill: 999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 1px 2px #0F1A140A, 0 1px 1px #0F1A1408;
  --shadow: 0 4px 24px -8px #0F1A1418, 0 2px 6px #0F1A1410;
  --shadow-lg: 0 24px 60px -20px #0F1A1428, 0 8px 20px -8px #0F1A1418;
}

/* ============== RESET ============== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

/* ============== TYPE ============== */
.display {
  font-family: var(--display);
  font-variation-settings: "opsz" 96, "wght" 500;
  letter-spacing: -0.035em;
  line-height: 0.96;
}
h1.display { font-variation-settings: "opsz" 96, "wght" 480; }
.mono {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-pill);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 4px var(--green-pale);
}
.badge.green {
  background: var(--green-pale);
  color: var(--green-deep);
  border-color: transparent;
}
.badge.orange {
  background: var(--orange-pale);
  color: var(--orange-deep);
  border-color: transparent;
}
.badge.yellow {
  background: var(--yellow-pale);
  color: #8a6700;
  border-color: transparent;
}

/* ============== LAYOUT ============== */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px var(--gutter);
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled { border-color: var(--border); }
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-variation-settings: "wght" 700;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-text { display: inline-block; }
.logo-text > span { color: var(--green-deep); }

.nav-links {
  display: flex; gap: 4px;
  justify-self: center;
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-pill);
  padding: 6px;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--r-pill);
  transition: background 0.25s, color 0.25s;
}
.nav-links a:hover { background: var(--bg); color: var(--ink); }
.nav-links a.active { background: var(--bg); color: var(--ink); }

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.25s var(--ease), background 0.25s;
}
.nav-cta:hover { background: var(--green-deep); transform: translateY(-1px); }
.nav-cta .arr { transition: transform 0.3s; }
.nav-cta:hover .arr { transform: translateX(3px); }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
}

/* ============== HERO ============== */
.hero {
  padding: 48px var(--gutter) 0;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 48px;
}
.hero-left { padding: 16px 0; }
.hero-title {
  font-size: clamp(54px, 9vw, 132px);
  margin: 28px 0 32px;
  color: var(--ink);
}
.hero-title .strike {
  position: relative;
  color: var(--muted);
  display: inline-block;
}
.hero-title .strike::after {
  content: "";
  position: absolute;
  left: -4%; right: -4%;
  top: 52%;
  height: 7px;
  background: var(--orange);
  transform: skewY(-3deg);
  border-radius: 2px;
}
.hero-title em {
  color: var(--green-deep);
  font-style: italic;
  font-variation-settings: "opsz" 96, "wght" 440;
  position: relative;
  display: inline-block;
}
.hero-title em::after {
  content: "";
  position: absolute;
  left: -3%; right: -3%;
  bottom: 6%;
  height: 18%;
  background: var(--yellow);
  border-radius: 4px;
  transform: skew(-5deg);
  z-index: -1;
}
.hero-lede {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 0 36px;
  line-height: 1.6;
}
.hero-lede strong {
  font-weight: 600;
  color: var(--green-deep);
  background: var(--green-pale);
  padding: 2px 8px;
  border-radius: 6px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  box-shadow: 0 8px 20px -8px var(--surface-dark);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px var(--surface-dark);
}
.btn-primary .arr-circle {
  width: 22px; height: 22px;
  background: var(--green-bright);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  margin-right: -10px;
  transition: transform 0.3s var(--ease);
}
.btn-primary:hover .arr-circle { transform: rotate(-45deg); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.25s, color 0.25s;
}
.btn-ghost:hover { background: var(--ink); color: #fff; }

/* hero art */
.hero-art {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 520px;
  margin: 0 auto;
}
.hero-art svg { width: 100%; height: 100%; display: block; }
.hero-art .rays {
  transform-origin: 250px 250px;
  animation: spin 90s linear infinite;
}
.hero-art .panel-tile { animation: float 6s ease-in-out infinite; transform-origin: center; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float {
  0%, 100% { transform: translate(330px, 380px) rotate(-12deg); }
  50%      { transform: translate(330px, 372px) rotate(-9deg); }
}

/* proof strip */
.hero-proof {
  max-width: var(--maxw);
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-mid);
  border: 1px solid var(--border-mid);
  border-radius: var(--r);
  overflow: hidden;
}
.proof-item {
  background: var(--surface);
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.3s;
  position: relative;
}
.proof-item:hover { background: var(--surface-2); }
.proof-num {
  font-family: var(--display);
  font-variation-settings: "opsz" 72, "wght" 600;
  font-size: clamp(26px, 2.4vw, 38px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--green-deep);
}
.proof-num .proof-unit {
  font-size: 0.42em;
  color: var(--muted);
  font-weight: 400;
  margin-left: 4px;
  font-style: italic;
}
.proof-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .hero-art { max-width: 360px; order: -1; }
  .hero-proof { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero-proof { grid-template-columns: 1fr; }
}

/* ============== TICKER ============== */
.ticker-wrap {
  margin: 64px 0 0;
  padding: 28px 0;
  background: var(--ink);
  color: #FAFAF7;
  overflow: hidden;
  position: relative;
}
.ticker {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: slide 36s linear infinite;
  font-family: var(--display);
  font-variation-settings: "opsz" 72, "wght" 400;
  font-size: 32px;
  letter-spacing: -0.02em;
}
.ticker > div {
  display: flex; align-items: center; gap: 56px;
  white-space: nowrap;
}
.ticker .dot {
  width: 10px; height: 10px;
  background: var(--green-bright);
  border-radius: 50%;
  display: inline-block;
}
.ticker em {
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 300;
  color: var(--green-bright);
}
@keyframes slide { to { transform: translateX(-50%); } }

/* ============== SCHEME / SUBSIDY ============== */
.scheme {
  padding: 100px var(--gutter) 80px;
}
.scheme-card {
  max-width: var(--maxw);
  margin: 0 auto;
  background: linear-gradient(135deg, var(--green-deep) 0%, #0E5530 70%, #073A20 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
}
.scheme-card::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--yellow) 0%, var(--orange) 50%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.scheme-card::after {
  content: "";
  position: absolute;
  bottom: -200px; left: 30%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, #2BC77140 0%, transparent 60%);
  pointer-events: none;
}
.scheme-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.scheme-inner .badge {
  background: #ffffff22;
  color: #fff;
  border-color: #ffffff33;
  backdrop-filter: blur(10px);
}
.scheme-inner .badge .dot { background: var(--yellow); box-shadow: 0 0 0 4px #FFD43B30; }
.scheme h2 {
  font-family: var(--display);
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 20px 0 24px;
}
.scheme h2 em {
  color: var(--yellow);
  font-style: italic;
  font-variation-settings: "opsz" 96, "wght" 400;
}
.scheme p {
  font-size: 17px;
  line-height: 1.55;
  color: #ffffffcc;
  max-width: 540px;
  margin: 0 0 32px;
}
.scheme-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.scheme-perks span {
  background: #ffffff14;
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid #ffffff20;
}

.scheme-stat {
  background: #fff;
  color: var(--ink);
  border-radius: var(--r);
  padding: 32px;
  transform: rotate(2deg);
  box-shadow: 0 30px 60px -20px #0F1A1450;
}
.scheme-stat .sub-amount {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.scheme-stat .big {
  font-family: var(--display);
  font-variation-settings: "wght" 700;
  font-size: clamp(72px, 9vw, 120px);
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--green-deep);
  margin: 8px 0 12px;
}
.scheme-stat .big .rs {
  font-size: 0.5em;
  color: var(--muted);
  vertical-align: 0.4em;
}
.scheme-stat-foot {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed var(--border-strong);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-soft);
}
.scheme-stat-foot strong { color: var(--ink); font-weight: 600; }

@media (max-width: 880px) {
  .scheme-card { padding: 40px 28px; }
  .scheme-inner { grid-template-columns: 1fr; gap: 32px; }
  .scheme-stat { transform: rotate(0); }
}

/* ============== PRICING ============== */
.pricing {
  padding: 60px var(--gutter) 100px;
}
.section-head {
  max-width: var(--maxw);
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}
.section-head h2 {
  font-family: var(--display);
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin: 16px 0 0;
}
.section-head h2 em {
  font-style: italic;
  color: var(--green-deep);
  font-variation-settings: "opsz" 96, "wght" 400;
}
.section-head p {
  color: var(--ink-soft);
  max-width: 480px;
  font-size: 16px;
  margin: 0;
  line-height: 1.55;
  justify-self: end;
}

.pricing-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.plan {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 40px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan.featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.plan.featured .plan-meta { color: #ffffffaa; }
.plan.featured .plan-list li { border-color: #ffffff20; }
.plan.featured .plan-list svg { color: var(--green-bright); }
.plan.featured .plan-final { color: #fff; }
.plan.featured .plan-strike { color: #ffffff70; }
.plan.featured .plan-subsidy { color: var(--yellow); }
.plan.featured .plan-cta {
  background: var(--green-bright);
  color: var(--ink);
}
.plan.featured .plan-cta:hover { background: #fff; }

.plan-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 6px 12px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: var(--r-pill);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.plan-size {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.plan.featured .plan-size { color: #ffffff80; }
.plan h3 {
  font-family: var(--display);
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: 48px;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 8px;
}
.plan h3 em {
  font-style: italic;
  color: var(--green-deep);
  font-variation-settings: "wght" 400;
}
.plan.featured h3 em { color: var(--green-bright); }
.plan-meta {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0 0 24px;
  line-height: 1.5;
}

.plan-pricing {
  padding: 24px 0;
  border-top: 1px dashed var(--border-strong);
  border-bottom: 1px dashed var(--border-strong);
  margin: 12px 0 28px;
}
.plan.featured .plan-pricing { border-color: #ffffff20; }
.plan-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  font-size: 14px;
}
.plan-strike .val { text-decoration: line-through; color: var(--muted); }
.plan-subsidy { color: var(--orange-deep); font-weight: 600; }
.plan-final {
  align-items: center;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-mid);
  font-size: 13px;
  font-weight: 600;
}
.plan.featured .plan-final { border-color: #ffffff20; }
.plan-final .val {
  font-family: var(--display);
  font-variation-settings: "wght" 700;
  font-size: 56px;
  letter-spacing: -0.04em;
  color: var(--green-deep);
  line-height: 1;
}
.plan.featured .plan-final .val { color: var(--green-bright); }

.plan-list { list-style: none; padding: 0; margin: 0 0 32px; }
.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.4;
}
.plan-list li:last-child { border-bottom: 0; }
.plan-list svg {
  flex-shrink: 0;
  color: var(--green);
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 16px 22px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  margin-top: auto;
  transition: background 0.25s, color 0.25s;
}
.plan-cta:hover { background: var(--green-deep); }

@media (max-width: 820px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .section-head p { justify-self: start; }
}

/* ============== ROI ============== */
.roi {
  padding: 80px var(--gutter) 100px;
  background: var(--bg-warm);
}
.roi-card {
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 56px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}
.roi-card h2 {
  font-family: var(--display);
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 16px 0 20px;
}
.roi-card h2 em {
  color: var(--green-deep);
  font-style: italic;
}
.roi-card p {
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  max-width: 380px;
}

.roi-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
}
.roi-step {
  background: var(--surface-2);
  border-radius: var(--r);
  padding: 24px 20px;
  border: 1px solid var(--border);
  position: relative;
}
.roi-step .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.roi-step .num {
  font-family: var(--display);
  font-variation-settings: "wght" 600;
  font-size: 32px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.roi-step .unit {
  font-size: 0.45em;
  color: var(--muted);
  font-weight: 400;
  margin-left: 2px;
}
.roi-step .ctx {
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}
.roi-step.highlight {
  background: var(--green-deep);
  color: #fff;
  border-color: transparent;
}
.roi-step.highlight .lbl { color: #ffffff90; }
.roi-step.highlight .num { color: var(--yellow); }
.roi-step.highlight .ctx { color: #ffffffaa; }
.roi-step .arrow {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  background: var(--bg-warm);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 12px;
  z-index: 2;
}
.roi-step:last-child .arrow { display: none; }

@media (max-width: 960px) {
  .roi-card { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
  .roi-flow { grid-template-columns: repeat(2, 1fr); }
  .roi-step:nth-child(2) .arrow { display: none; }
}

/* ============== STATS ============== */
.stats {
  padding: 100px var(--gutter) 80px;
}
.stats-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat {
  background: var(--surface);
  border-radius: var(--r);
  padding: 28px;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease);
}
.stat:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.stat .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat .num {
  font-family: var(--display);
  font-variation-settings: "wght" 600;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 16px 0 8px;
  color: var(--ink);
}
.stat .num .unit {
  font-size: 0.35em;
  color: var(--green-deep);
  font-weight: 500;
  font-style: italic;
}
.stat .ctx {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.stat.accent {
  background: var(--green-deep);
  color: #fff;
  border-color: transparent;
}
.stat.accent .lbl { color: #ffffffaa; }
.stat.accent .num { color: #fff; }
.stat.accent .num .unit { color: var(--yellow); }
.stat.accent .ctx { color: #ffffffcc; }

@media (max-width: 880px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============== WHY US ============== */
.why {
  padding: 60px var(--gutter) 80px;
}
.why-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.why-tile {
  background: var(--surface);
  border-radius: var(--r);
  padding: 32px;
  border: 1px solid var(--border);
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease);
}
.why-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.why-tile.wide { grid-column: span 6; }
.why-tile.feature {
  grid-column: span 6;
  background: linear-gradient(135deg, var(--yellow-pale) 0%, var(--orange-pale) 100%);
  border-color: transparent;
}
.why-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--green-pale);
  color: var(--green-deep);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.why-tile.feature .why-icon {
  background: var(--orange);
  color: #fff;
}
.why-tile h3 {
  font-family: var(--display);
  font-variation-settings: "opsz" 72, "wght" 500;
  font-size: 24px;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  line-height: 1.1;
}
.why-tile p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}
.why-tile .big {
  font-family: var(--display);
  font-variation-settings: "wght" 700;
  font-size: 64px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--orange-deep);
  margin-bottom: 8px;
}

@media (max-width: 880px) {
  .why-tile, .why-tile.wide, .why-tile.feature { grid-column: span 12; }
}

/* ============== BRANDS ============== */
.brands {
  padding: 80px var(--gutter) 100px;
}
.brands-card {
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 48px;
  border: 1px solid var(--border);
}
.brands-head {
  text-align: center;
  margin-bottom: 40px;
}
.brands-head h2 {
  font-family: var(--display);
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.025em;
  margin: 12px 0 8px;
}
.brands-head h2 em { color: var(--green-deep); font-style: italic; }
.brands-head p { color: var(--muted); margin: 0; font-size: 14px; }
.brand-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
}
.brand-item {
  background: var(--surface);
  padding: 36px 24px;
  text-align: center;
  transition: background 0.3s;
}
.brand-item:hover { background: var(--surface-2); }
.brand-name {
  font-family: var(--display);
  font-variation-settings: "wght" 600;
  font-size: 32px;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.brand-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
@media (max-width: 720px) {
  .brand-list { grid-template-columns: 1fr; }
}

/* ============== PROCESS ============== */
.process {
  padding: 80px var(--gutter) 100px;
}
.process-head {
  max-width: var(--maxw);
  margin: 0 auto 48px;
  text-align: center;
}
.process-head h2 {
  font-family: var(--display);
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin: 16px 0 12px;
}
.process-head h2 em { color: var(--green-deep); font-style: italic; }
.process-head p {
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.55;
}
.timeline {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border-strong) 0, var(--border-strong) 4px, transparent 4px, transparent 10px);
  z-index: 0;
}
.tl-step {
  background: var(--surface);
  border-radius: var(--r);
  padding: 24px 20px;
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.tl-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--green-bright);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-variation-settings: "wght" 700;
  font-size: 15px;
  margin-bottom: 20px;
}
.tl-step h4 {
  font-family: var(--display);
  font-variation-settings: "opsz" 60, "wght" 600;
  font-size: 17px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 1.15;
}
.tl-step p {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}
.tl-step .when {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--green-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 1000px) {
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .timeline::before { display: none; }
}
@media (max-width: 560px) {
  .timeline { grid-template-columns: 1fr 1fr; }
}

/* ============== SERVICES STRIP ============== */
.services-strip {
  padding: 0 var(--gutter) 100px;
}
.services-card {
  max-width: var(--maxw);
  margin: 0 auto;
  background: linear-gradient(135deg, #1a261d 0%, #0F1A14 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.services-card::before {
  content: "";
  position: absolute;
  top: 40%;
  right: -10%;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, #2BC77130 0%, transparent 60%);
  pointer-events: none;
}
.services-card h2 {
  font-family: var(--display);
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: clamp(32px, 4.4vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 16px 0 16px;
  max-width: 700px;
}
.services-card h2 em { color: var(--green-bright); font-style: italic; }
.services-card > p {
  color: #ffffffaa;
  max-width: 580px;
  margin: 0 0 48px;
  line-height: 1.55;
  position: relative;
  z-index: 2;
}
.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #ffffff15;
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.svc {
  background: #ffffff08;
  padding: 32px 28px;
  transition: background 0.3s;
  backdrop-filter: blur(10px);
}
.svc:hover { background: #ffffff14; }
.svc-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 16px;
}
.svc h4 {
  font-family: var(--display);
  font-variation-settings: "opsz" 60, "wght" 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 1.15;
  color: #fff;
}
.svc p {
  font-size: 13.5px;
  color: #ffffffaa;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 880px) {
  .services-card { padding: 36px 24px; }
  .services-list { grid-template-columns: 1fr; }
}

/* ============== FAQ ============== */
.faq {
  padding: 80px var(--gutter) 100px;
}
.faq-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-side h2 {
  font-family: var(--display);
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin: 16px 0 16px;
}
.faq-side h2 em { color: var(--green-deep); font-style: italic; }
.faq-side p {
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 320px;
  margin: 0;
}
.faq-list { border-top: 1px solid var(--border-mid); }
details {
  border-bottom: 1px solid var(--border-mid);
  padding: 24px 0;
}
details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--display);
  font-variation-settings: "opsz" 60, "wght" 500;
  font-size: 19px;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+";
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--green-bright);
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: transform 0.3s var(--ease), background 0.3s;
  flex-shrink: 0;
}
details[open] summary::after {
  content: "−";
  background: var(--green-deep);
}
details p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 15px;
  padding-right: 48px;
}

@media (max-width: 880px) {
  .faq-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ============== CTA ============== */
.cta-section {
  padding: 60px var(--gutter) 100px;
}
.cta-card {
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 80px 56px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: -100% -10% auto -10%;
  height: 280px;
  background: radial-gradient(ellipse at center, var(--yellow) 0%, var(--orange) 30%, transparent 60%);
  opacity: 0.18;
  pointer-events: none;
}
.cta-card h2 {
  font-family: var(--display);
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: clamp(40px, 7vw, 96px);
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin: 16px 0 24px;
  position: relative;
}
.cta-card h2 em { color: var(--green-deep); font-style: italic; font-variation-settings: "wght" 400; }
.cta-card > p {
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 17px;
  line-height: 1.55;
  position: relative;
}
.cta-buttons {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.cta-meta {
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  position: relative;
}
.cta-meta div {
  text-align: left;
  font-size: 13px;
  color: var(--muted);
}
.cta-meta div strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-variation-settings: "wght" 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 80px var(--gutter) 40px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  margin: 0 12px;
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 60px;
}
.footer-brand h3 {
  font-family: var(--display);
  font-variation-settings: "opsz" 96, "wght" 600;
  font-size: 36px;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1;
}
.footer-brand h3 em { color: var(--green-bright); font-style: italic; }
.footer-brand p {
  color: #ffffffaa;
  max-width: 340px;
  margin: 16px 0 24px;
  font-size: 14px;
  line-height: 1.55;
}
.footer-addr {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #ffffff80;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin: 0 0 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: #fff;
  transition: color 0.3s, padding-left 0.3s;
  display: inline-block;
}
.footer-col a:hover { color: var(--green-bright); padding-left: 4px; }

.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid #ffffff15;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff70;
}

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* ============== REVEAL ============== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============== CONTACT PAGE ============== */
.contact-page { padding-top: 0; }

.contact-hero {
  padding: 80px var(--gutter) 60px;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--yellow-pale) 0%, transparent 65%);
  pointer-events: none;
}
.contact-hero-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.contact-hero h1 {
  font-family: var(--display);
  font-variation-settings: "opsz" 96, "wght" 480;
  font-size: clamp(56px, 9vw, 140px);
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin: 24px 0 28px;
}
.contact-hero h1 em {
  color: var(--green-deep);
  font-style: italic;
  font-variation-settings: "opsz" 96, "wght" 440;
  position: relative;
  display: inline-block;
}
.contact-hero h1 em::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: 8%;
  height: 18%;
  background: var(--yellow);
  border-radius: 4px;
  transform: skew(-5deg);
  z-index: -1;
}
.contact-hero p {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.contact-hero .hero-ctas { justify-content: center; }

/* methods grid */
.methods {
  padding: 24px var(--gutter) 80px;
}
.methods-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}
.method {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 36px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.method:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.method.featured {
  background: linear-gradient(135deg, var(--green-deep) 0%, #0E5530 100%);
  color: #fff;
  border-color: transparent;
}
.method.featured::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-bright) 0%, transparent 70%);
  opacity: 0.35;
  pointer-events: none;
}
.method-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--green-pale);
  color: var(--green-deep);
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}
.method.featured .method-icon {
  background: #ffffff22;
  color: var(--green-bright);
  backdrop-filter: blur(10px);
}
.method h3 {
  font-family: var(--display);
  font-variation-settings: "opsz" 72, "wght" 500;
  font-size: 28px;
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 1.1;
  position: relative;
}
.method-desc {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  flex: 1;
  position: relative;
}
.method.featured .method-desc { color: #ffffffcc; }
.method-value {
  font-family: var(--display);
  font-variation-settings: "wght" 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 8px;
  word-break: break-word;
  position: relative;
}
.method.featured .method-value { color: var(--yellow); }
.method-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  transition: background 0.25s;
  position: relative;
}
.method-cta:hover { background: var(--green-deep); }
.method.featured .method-cta {
  background: var(--green-bright);
  color: var(--ink);
}
.method.featured .method-cta:hover { background: #fff; }

@media (max-width: 880px) {
  .methods-grid { grid-template-columns: 1fr; }
}

/* contact form */
.form-section {
  padding: 40px var(--gutter) 100px;
}
.form-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 56px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.form-side h2 {
  font-family: var(--display);
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 16px 0 16px;
}
.form-side h2 em { color: var(--green-deep); font-style: italic; }
.form-side p {
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 360px;
  margin: 0 0 28px;
}
.form-perks { list-style: none; padding: 0; margin: 0; }
.form-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink-soft);
}
.form-perks li:last-child { border-bottom: 1px solid var(--border); }
.form-perks svg {
  flex-shrink: 0;
  color: var(--green);
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form { display: flex; flex-direction: column; gap: 16px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 16px;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  color: var(--ink);
  width: 100%;
  transition: border-color 0.25s, background 0.25s;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-deep);
  background: var(--surface);
}
.field textarea { min-height: 90px; font-family: var(--sans); }
.form-submit {
  align-self: flex-start;
  margin-top: 8px;
  border: none;
  cursor: pointer;
}

@media (max-width: 880px) {
  .form-wrap { grid-template-columns: 1fr; padding: 32px 28px; gap: 32px; }
  .field-row { grid-template-columns: 1fr; }
}

/* info strip */
.info {
  padding: 0 var(--gutter) 100px;
}
.info-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.info-card {
  background: var(--surface);
  border-radius: var(--r);
  padding: 32px;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease);
}
.info-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.info-card h4 {
  font-family: var(--display);
  font-variation-settings: "opsz" 72, "wght" 500;
  font-size: 24px;
  letter-spacing: -0.025em;
  margin: 16px 0 8px;
  line-height: 1.15;
}
.info-card h4 em { color: var(--green-deep); font-style: italic; }
.info-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 880px) {
  .info-grid { grid-template-columns: 1fr; }
}
