:root {
  --forest: #0A2F24;
  --forest-deep: #061C16;
  --mint: #2DD4A8;
  --mint-soft: #A7F3D0;
  --ember: #FF5C35;
  --ember-dark: #E04824;
  --ink: #0C1210;
  --muted: #5A6B64;
  --mist: #F4F6F5;
  --line: rgba(10, 47, 36, 0.1);
  --white: #ffffff;
  --shadow: 0 24px 64px rgba(6, 28, 22, 0.12);
  --radius: 18px;
  --font: "Figtree", system-ui, sans-serif;
  --display: "Sora", system-ui, sans-serif;
  --max: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--mist);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled,
.site-header.solid {
  background: rgba(6, 28, 22, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.brand-logo {
  height: 44px;
  width: auto;
  max-width: min(240px, 62vw);
  display: block;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
}
.brand span { opacity: 0.7; font-weight: 500; font-size: 0.92rem; margin-left: 2px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--mint); }
.nav-links .has-drop { position: relative; }
.nav-links .drop {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  padding: 10px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.nav-links .has-drop:hover .drop,
.nav-links .has-drop:focus-within .drop { display: grid; gap: 2px; }
.nav-links .drop a {
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
}
.nav-links .drop a:hover { background: var(--mist); color: var(--forest); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.94rem;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-ember {
  background: var(--ember);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(255, 92, 53, 0.28);
}
.btn-ember:hover { background: var(--ember-dark); }
.btn-mint {
  background: var(--mint);
  color: var(--forest-deep);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover { border-color: var(--mint); color: var(--mint); }
.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid rgba(10, 47, 36, 0.2);
}
.btn-outline:hover { border-color: var(--forest); background: var(--forest); color: var(--white); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 140px 0 88px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(6, 28, 22, 0.92) 0%, rgba(10, 47, 36, 0.78) 48%, rgba(6, 28, 22, 0.55) 100%),
    url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=2000&q=80") center/cover no-repeat;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to top, var(--mist), transparent);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.brand-hero {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: var(--mint);
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.15rem, 5.2vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero-lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.84);
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.page-hero {
  padding: 140px 0 72px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(6, 28, 22, 0.95), rgba(10, 47, 36, 0.88)),
    radial-gradient(circle at 80% 20%, rgba(45, 212, 168, 0.25), transparent 40%),
    var(--forest);
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 14px;
}
.page-hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}
.page-kicker {
  display: inline-block;
  color: var(--mint);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Sections */
.section { padding: 88px 0; }
.section-alt { background: var(--white); }
.section-dark {
  background: var(--forest-deep);
  color: var(--white);
}
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-kicker {
  color: var(--ember);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-dark .section-kicker { color: var(--mint); }
.section-head h2,
.section h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-head p,
.lead {
  color: var(--muted);
  font-size: 1.05rem;
}
.section-dark .lead,
.section-dark .section-head p { color: rgba(255, 255, 255, 0.72); }

/* Intro band */
.intro-band {
  margin-top: -48px;
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}
.intro-card {
  background: var(--white);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}
.intro-card h2 {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  letter-spacing: -0.03em;
  max-width: 720px;
}
.intro-card p { color: var(--muted); max-width: 760px; }

/* Stats band */
.stats-band {
  padding: 56px 0 28px;
}
.stats-band-alt {
  padding: 28px 0 56px;
  background: rgba(10, 47, 36, 0.03);
}
.stats-band .section-head {
  margin-bottom: 28px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat-card {
  background: linear-gradient(160deg, #0A2F24 0%, #061C16 100%);
  color: var(--white);
  border-radius: 16px;
  padding: 28px 20px 24px;
  text-align: center;
  display: grid;
  gap: 10px;
  justify-items: center;
  border: 1px solid rgba(45, 212, 168, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(6, 28, 22, 0.28);
}
.stat-card i {
  color: var(--mint);
  font-size: 1.35rem;
  margin-bottom: 4px;
}
.stat-card strong {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-card span {
  color: rgba(244, 246, 245, 0.78);
  font-size: 0.92rem;
}
.stat-pill {
  background: linear-gradient(145deg, #0A2F24, #07261d);
  color: var(--white);
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(45, 212, 168, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(6, 28, 22, 0.24);
}
.stat-pill i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(45, 212, 168, 0.14);
  color: var(--mint);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.stat-pill strong {
  display: block;
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.stat-pill span {
  color: rgba(244, 246, 245, 0.72);
  font-size: 0.9rem;
}

/* Provide grid */
.provide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.provide-item {
  padding: 28px 22px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.provide-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.provide-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(45, 212, 168, 0.16);
  color: var(--forest);
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.provide-item h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.provide-item p { color: var(--muted); font-size: 0.95rem; }

/* Verticals */
.vertical-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.vertical-card {
  position: relative;
  min-height: 180px;
  padding: 24px 18px;
  border-radius: 18px;
  overflow: hidden;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--forest);
  transition: transform 0.25s ease;
}
.vertical-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(6, 28, 22, 0.92));
  z-index: 0;
}
.vertical-card > * { position: relative; z-index: 1; }
.vertical-card:hover { transform: translateY(-5px); }
.vertical-card i {
  font-size: 1.35rem;
  color: var(--mint);
  margin-bottom: 12px;
}
.vertical-card h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.vertical-card p { font-size: 0.86rem; color: rgba(255, 255, 255, 0.72); }
.v-auto { background: linear-gradient(145deg, #0A2F24, #134E3A), url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=600&q=60") center/cover; }
.v-fe { background: linear-gradient(145deg, #0A2F24, #1B4332), url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=600&q=60") center/cover; }
.v-med { background: linear-gradient(145deg, #0A2F24, #065F46), url("https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=600&q=60") center/cover; }
.v-aca { background: linear-gradient(145deg, #0A2F24, #047857), url("https://images.unsplash.com/photo-1579684385127-1ef15d508118?auto=format&fit=crop&w=600&q=60") center/cover; }
.v-mva { background: linear-gradient(145deg, #0A2F24, #115E59), url("https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?auto=format&fit=crop&w=600&q=60") center/cover; }

/* Why list */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}
.why-list {
  display: grid;
  gap: 12px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--line);
  font-weight: 600;
}
.why-list i { color: var(--ember); margin-top: 3px; }
.why-panel {
  background: var(--forest);
  color: var(--white);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.why-panel::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 168, 0.35), transparent 70%);
  top: -60px;
  right: -40px;
}
.why-panel h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  position: relative;
}
.why-panel p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 22px;
  position: relative;
}

/* Approach */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.approach-card {
  padding: 30px 24px;
  border-radius: 20px;
  background: var(--white);
  border-top: 4px solid var(--mint);
}
.approach-card:nth-child(2) { border-top-color: var(--ember); }
.approach-card:nth-child(3) { border-top-color: var(--forest); }
.approach-card h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.approach-card p { color: var(--muted); }

/* Checklist / bullets */
.check-list { display: grid; gap: 10px; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.check-list li:last-child { border-bottom: 0; }
.check-list i {
  color: var(--mint);
  background: rgba(45, 212, 168, 0.15);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.75rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.content-panel {
  background: var(--white);
  border-radius: 22px;
  padding: 32px 28px;
  border: 1px solid var(--line);
}
.content-panel h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin-bottom: 14px;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  counter-reset: step;
}
.step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 22px 16px;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--display);
  font-weight: 700;
  color: var(--mint);
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.step p { color: rgba(255, 255, 255, 0.78); font-size: 0.92rem; }

/* Forms */
.form-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--forest);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--mist);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--mint);
  background: var(--white);
}
.form-note {
  margin-top: 12px;
  color: var(--forest);
  font-weight: 600;
  font-size: 0.92rem;
}
.contact-aside h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.contact-aside p { color: var(--muted); margin-bottom: 20px; }
.contact-points { display: grid; gap: 12px; }
.contact-points li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 600;
}
.contact-points i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 92, 53, 0.12);
  color: var(--ember);
}

/* CTA band */
.cta-band {
  padding: 72px 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(45, 212, 168, 0.22), transparent 35%),
    radial-gradient(circle at 90% 30%, rgba(255, 92, 53, 0.18), transparent 30%),
    var(--forest-deep);
  color: var(--white);
  text-align: center;
}
.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.cta-band p {
  max-width: 560px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.75);
}
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* Footer */
.site-footer {
  background: #041510;
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}
.footer-brand {
  font-family: var(--display);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.footer-brand span { color: var(--mint); }
.site-footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer a {
  display: block;
  padding: 5px 0;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.site-footer a:hover { color: var(--mint); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.88rem;
}

/* Reveal / scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92) translateY(18px);
}
.reveal-fade {
  opacity: 0;
  transform: none;
  filter: blur(6px);
}
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}
.reveal-fade.visible {
  opacity: 1;
  filter: none;
}

/* Stagger helpers (set by JS or manually) */
.reveal-delay-1 { --reveal-delay: 80ms; }
.reveal-delay-2 { --reveal-delay: 160ms; }
.reveal-delay-3 { --reveal-delay: 240ms; }
.reveal-delay-4 { --reveal-delay: 320ms; }
.reveal-delay-5 { --reveal-delay: 400ms; }
.reveal-delay-6 { --reveal-delay: 480ms; }
.reveal-delay-7 { --reveal-delay: 560ms; }

/* Hero entrance (on load) */
.hero-inner > * {
  opacity: 0;
  transform: translateY(28px);
  animation: heroIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-inner > *:nth-child(1) { animation-delay: 0.08s; }
.hero-inner > *:nth-child(2) { animation-delay: 0.22s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.36s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.5s; }
@keyframes heroIn {
  to {
    opacity: 1;
    transform: none;
  }
}

.page-hero .container > * {
  opacity: 0;
  transform: translateY(22px);
  animation: heroIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.page-hero .container > *:nth-child(1) { animation-delay: 0.05s; }
.page-hero .container > *:nth-child(2) { animation-delay: 0.18s; }
.page-hero .container > *:nth-child(3) { animation-delay: 0.3s; }

/* Soft lift when cards enter */
.provide-item.reveal.visible,
.vertical-card.reveal.visible,
.stat-card.reveal.visible,
.stat-pill.reveal.visible,
.approach-card.reveal.visible,
.feature-tile.reveal.visible {
  animation: softLift 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}
@keyframes softLift {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-fade,
  .hero-inner > *,
  .page-hero .container > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* Vertical page extras */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-tile {
  background: var(--white);
  border-radius: 18px;
  padding: 24px 20px;
  border: 1px solid var(--line);
}
.feature-tile h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.feature-tile p { color: var(--muted); font-size: 0.94rem; }

.prose { max-width: 720px; }
.prose p { color: var(--muted); margin-bottom: 14px; font-size: 1.05rem; }
.prose h2 {
  font-family: var(--display);
  letter-spacing: -0.03em;
  margin: 28px 0 12px;
}

@media (max-width: 1024px) {
  .provide-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr; }
  .vertical-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid,
  .two-col,
  .form-shell { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-row { grid-template-columns: 1fr 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--forest-deep);
    border-radius: 16px;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; border-radius: 10px; }
  .nav-links .drop {
    position: static;
    transform: none;
    display: grid;
    background: transparent;
    box-shadow: none;
    padding: 0 0 0 12px;
  }
  .nav-links .drop a { color: rgba(255, 255, 255, 0.75); }
  .nav .btn { display: none; }
  .vertical-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .provide-grid,
  .vertical-grid,
  .steps,
  .feature-row,
  .footer-grid,
  .stats-grid { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 72px; min-height: auto; }
  .page-hero { padding: 120px 0 56px; }
}
