/* =========================================================
  Goatara — Design System
   Palette: deep teal ink + emerald growth + warm gold accent
   ========================================================= */

:root {
  /* Brand palette */
  --ink: #07211C;          /* near-black teal for text / dark sections */
  --ink-soft: #0E3A31;
  --brand: #10B981;        /* emerald — growth, money, go */
  --brand-dark: #059669;
  --brand-light: #34D399;
  --accent: #F6C453;       /* warm gold highlight */
  --accent-dark: #E0A92E;

  /* Neutrals */
  --bg: #F5FAF8;
  --surface: #FFFFFF;
  --surface-alt: #EEF6F3;
  --line: #DCE9E4;
  --text: #10221E;
  --text-muted: #4A5D57;
  --white: #FFFFFF;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(7, 33, 28, 0.06), 0 2px 6px rgba(7, 33, 28, 0.05);
  --shadow-md: 0 8px 24px rgba(7, 33, 28, 0.10);
  --shadow-lg: 0 24px 60px rgba(7, 33, 28, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --grad-brand: linear-gradient(135deg, #10B981 0%, #0EA5A5 100%);
  --grad-ink: linear-gradient(160deg, #0B2A24 0%, #07211C 60%, #061A16 100%);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Sora", "Inter", sans-serif;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

p { margin: 0 0 1rem; color: var(--text-muted); }

a { color: var(--brand-dark); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--brand); }

img { max-width: 100%; display: block; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--alt { background: var(--surface-alt); }
.section--ink { background: var(--grad-ink); color: #DFF3EC; }
.section--ink h2,
.section--ink h3 { color: #FFFFFF; }
.section--ink p { color: #A9CFC5; }

.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 680px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Sora", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-dark);
  background: rgba(16, 185, 129, 0.10);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.section--ink .eyebrow { color: var(--brand-light); background: rgba(16, 185, 129, 0.16); }

.lead { font-size: 1.2rem; color: var(--text-muted); }
.section--ink .lead { color: #BFE1D8; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn--primary {
  background: var(--grad-brand);
  color: #04150F;
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(16, 185, 129, 0.45); color: #04150F; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-dark); transform: translateY(-2px); }

.btn--light {
  background: #FFFFFF;
  color: var(--ink);
}
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--ink); }

.btn--outline-light {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.30);
}
.btn--outline-light:hover { border-color: #FFFFFF; color: #FFFFFF; transform: translateY(-2px); }

.btn--lg { padding: 18px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn--icon { padding: 12px; width: 48px; height: 48px; flex: 0 0 auto; }
.btn--icon svg { width: 20px; height: 20px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 250, 248, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 0;
}
.brand:hover { color: var(--ink); }
.brand__logo {
  display: block;
  width: auto;
  height: 40px;
  max-width: 100%;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  display: inline-block;
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.97rem;
  transition: background 0.2s, color 0.2s;
}
.nav__links a:hover { background: var(--surface-alt); color: var(--ink); }
.nav__links a.active { color: var(--brand-dark); background: rgba(16,185,129,0.10); }

.nav__cta { display: flex; align-items: center; gap: 12px; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
  position: relative;
}
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after { position: absolute; top: 6px; }
.nav__toggle.open span { background: transparent; }
.nav__toggle.open span::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle.open span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(60px, 8vw, 110px) 0 clamp(70px, 9vw, 120px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 55% at 85% 8%, rgba(16,185,129,0.16), transparent 60%),
    radial-gradient(50% 50% at 5% 90%, rgba(246,196,83,0.14), transparent 60%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.hero h1 span { color: var(--brand-dark); }
.hero__sub { font-size: 1.2rem; max-width: 540px; }

.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 30px; padding: 0; list-style: none; }
.pill-list li {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.pill-list li svg { width: 16px; height: 16px; color: var(--brand); }

.hero__trust { margin-top: 30px; font-size: 0.92rem; color: var(--text-muted); }

/* Hero visual / split card */
.hero__visual { position: relative; }
.split-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.split-card__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.split-card__label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); font-weight: 600; }
.split-bar {
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
}
.split-bar__you {
  flex: 0 0 60%;
  background: var(--grad-brand);
  display: flex; align-items: center; padding-left: 18px;
  color: #04150F; font-weight: 700; font-family: "Sora", sans-serif;
}
.split-bar__us {
  flex: 0 0 40%;
  background: var(--ink);
  display: flex; align-items: center; padding-left: 16px;
  color: #CFEDE3; font-weight: 600; font-family: "Sora", sans-serif;
}
.split-legend { display: flex; justify-content: space-between; margin-top: 14px; font-size: 0.9rem; color: var(--text-muted); }
.split-legend b { color: var(--ink); }

.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.mini-stat {
  background: var(--surface-alt);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
}
.mini-stat b { display: block; font-family: "Sora", sans-serif; font-size: 1.35rem; color: var(--ink); }
.mini-stat span { font-size: 0.78rem; color: var(--text-muted); }

/* ---------- Image placeholder ---------- */
.img-ph {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, rgba(16,185,129,0.05) 0 12px, transparent 12px 24px),
    var(--surface-alt);
  border: 2px dashed var(--line);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  min-height: 240px;
  text-align: center;
  padding: 20px;
}
.img-ph span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 8px;
}
.img-ph svg { width: 22px; height: 22px; opacity: 0.6; }
.img-ph--wide { aspect-ratio: 16 / 8; min-height: 0; }
.img-ph--square { aspect-ratio: 1 / 1; min-height: 0; }
.img-ph--tall { aspect-ratio: 3 / 4; min-height: 0; }

/* ---------- Content images ---------- */
.feature-image {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}
.feature-image--square {
  aspect-ratio: 1 / 1;
}

/* ---------- Section headings ---------- */
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { font-size: 1.12rem; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(16,185,129,0.4); }
.card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(16,185,129,0.12);
  color: var(--brand-dark);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; }
.card--ink {
  background: var(--grad-ink);
  border-color: rgba(255,255,255,0.08);
}
.card--ink h3 { color: #fff; }
.card--ink p { color: #A9CFC5; }
.card--ink .card__icon { background: rgba(16,185,129,0.2); color: var(--brand-light); }

/* Feature card with number */
.numbered { counter-reset: none; }
.num-badge {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-brand);
  color: #04150F;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  display: grid; place-items: center;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

/* ---------- Check list ---------- */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); }
.check-list li svg { flex: 0 0 22px; width: 22px; height: 22px; color: var(--brand); margin-top: 2px; }
.section--ink .check-list li { color: #DFF3EC; }

/* ---------- Split feature (two column) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split--media-wide { grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); }
.split--reverse .split__media { order: 2; }

/* ---------- Comparison table ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.compare__col {
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--line);
}
.compare__col--bad { background: var(--surface); }
.compare__col--good {
  background: var(--grad-ink);
  border-color: rgba(16,185,129,0.4);
  box-shadow: var(--shadow-md);
}
.compare__col--good h3, .compare__col--good li { color: #EAF7F2; }
.compare__tag {
  display: inline-block;
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.compare__col--bad .compare__tag { background: #FBECEC; color: #C0433B; }
.compare__col--good .compare__tag { background: rgba(16,185,129,0.2); color: var(--brand-light); }
.compare__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.compare__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.98rem; }
.compare__list li svg { flex: 0 0 20px; width: 20px; height: 20px; margin-top: 3px; }
.compare__col--bad li svg { color: #D06B63; }
.compare__col--good li svg { color: var(--brand-light); }
.compare__col--bad li { color: var(--text-muted); }

/* ---------- Cost comparison table ---------- */
.cost-table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.cost-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cost-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 0.96rem;
}
.cost-table thead th {
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  padding: 24px 22px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: bottom;
  white-space: nowrap;
}
.cost-table thead th:first-child {
  text-align: left;
  color: var(--ink);
}
.cost-table tbody th {
  text-align: left;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  color: var(--ink);
  padding: 20px 22px;
  vertical-align: top;
  width: 24%;
}
.cost-table tbody td {
  text-align: center;
  padding: 20px 22px;
  color: var(--text-muted);
  vertical-align: top;
  line-height: 1.5;
}
.cost-table tbody tr + tr th,
.cost-table tbody tr + tr td { border-top: 1px solid var(--line); }
.cost-table tbody tr:hover th,
.cost-table tbody tr:hover td { background: rgba(7, 33, 28, 0.02); }

/* Highlighted "Our Model" column */
.cost-table .col-ours {
  background: rgba(16, 185, 129, 0.07);
  color: var(--ink);
  font-weight: 600;
  border-left: 1px solid rgba(16, 185, 129, 0.28);
  border-right: 1px solid rgba(16, 185, 129, 0.28);
}
.cost-table thead .col-ours { border-top: 3px solid var(--brand); }
.cost-table tbody tr:last-child .col-ours { border-bottom: 1px solid rgba(16, 185, 129, 0.28); }
.cost-table tbody tr:hover .col-ours { background: rgba(16, 185, 129, 0.11); }
.cost-ours-tag {
  display: inline-block;
  background: var(--grad-brand);
  color: #04150F;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 14px;
  border-radius: 999px;
}
.cost-inc {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand-dark);
  font-family: "Sora", sans-serif;
  font-weight: 600;
}
.cost-inc svg { width: 18px; height: 18px; flex: 0 0 18px; }
.cost-table .col-ours strong { color: var(--ink); font-weight: 700; }
.cost-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 18px;
  margin-bottom: 0;
}

/* ---------- Timeline ---------- */
.timeline { position: relative; margin-top: 20px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 27px; top: 10px; bottom: 10px;
  width: 2px;
  background: linear-gradient(var(--brand), var(--accent));
}
.tl-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 14px 0 30px;
}
.tl-step:last-child { padding-bottom: 0; }
.tl-dot {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--surface);
  border: 2px solid var(--brand);
  color: var(--brand-dark);
  display: grid; place-items: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1;
  text-align: center;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.tl-dot small { display: block; font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
.tl-body {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
}
.tl-body h3 { margin-bottom: 6px; }
.tl-body p { margin-bottom: 0; }
.tl-step--highlight .tl-dot { background: var(--grad-brand); color: #04150F; border-color: transparent; }
.tl-step--highlight .tl-dot small { color: #04150F; }
.tl-step--highlight .tl-body { border-color: rgba(16,185,129,0.5); background: rgba(16,185,129,0.06); }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat b {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1;
}
.stat span { color: #A9CFC5; font-size: 0.95rem; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item.open { border-color: rgba(16,185,129,0.45); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink);
}
.faq-q .chev {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--surface-alt);
  display: grid; place-items: center;
  transition: transform 0.3s var(--ease), background 0.3s;
  color: var(--brand-dark);
}
.faq-item.open .chev { transform: rotate(180deg); background: var(--brand); color: #04150F; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-a__inner { padding: 0 26px 24px; }
.faq-a__inner p { margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--grad-ink);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 80% 0%, rgba(16,185,129,0.28), transparent 60%),
    radial-gradient(45% 55% at 10% 100%, rgba(246,196,83,0.18), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #BFE1D8; max-width: 560px; margin-inline: auto; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
.contact-methods { display: grid; gap: 16px; }
.contact-method {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}
.contact-method:hover { transform: translateY(-3px); border-color: rgba(16,185,129,0.4); box-shadow: var(--shadow-sm); color: var(--text); }
.contact-method__icon {
  flex: 0 0 auto;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(16,185,129,0.12);
  color: var(--brand-dark);
  display: grid; place-items: center;
}
.contact-method__icon svg { width: 24px; height: 24px; }
.contact-method h3 { margin: 0 0 2px; font-size: 1.1rem; }
.contact-method p { margin: 0; font-size: 0.95rem; }

/* Form */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  font-size: 0.98rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(16,185,129,0.14);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }
.form-success {
  display: none;
  background: rgba(16,185,129,0.10);
  border: 1px solid rgba(16,185,129,0.4);
  color: var(--brand-dark);
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 18px;
  font-weight: 500;
}
.form-success.show { display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--grad-ink);
  color: #A9CFC5;
  padding: 64px 0 32px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand:hover { color: #fff; }
.site-footer .brand__logo {
  height: 42px;
  background: rgba(255,255,255,0.96);
  border-radius: 12px;
  padding: 6px 10px;
  box-shadow: var(--shadow-sm);
}
.footer-about { max-width: 320px; font-size: 0.95rem; color: #9CC4BA; }
.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col a { color: #9CC4BA; font-size: 0.95rem; }
.footer-col a:hover { color: var(--brand-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: #7FA79D;
}
.footer-disclaimer { max-width: 640px; font-size: 0.8rem; color: #6E958C; margin-top: 16px; }

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.modal.open { display: flex; }
.modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 33, 28, 0.55);
  backdrop-filter: blur(4px);
  animation: modalFade 0.25s var(--ease);
}
.modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(24px, 4vw, 40px);
  margin: auto;
  animation: modalPop 0.32s var(--ease);
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalPop { from { opacity: 0; transform: translateY(24px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.modal__close:hover { background: var(--surface-alt); color: var(--brand-dark); transform: rotate(90deg); }
.modal__head { margin-bottom: 22px; padding-right: 40px; }
.modal__head h2 { margin-bottom: 8px; font-size: clamp(1.5rem, 3vw, 2rem); }
.modal__head p { margin-bottom: 0; }
.modal__divider { border: none; border-top: 1px solid var(--line); margin: 6px 0 20px; }
.qualify-form .field:last-of-type { margin-bottom: 20px; }
body.modal-open { overflow: hidden; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0 clamp(40px, 5vw, 64px);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(55% 60% at 90% 0%, rgba(16,185,129,0.14), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero p { font-size: 1.15rem; max-width: 640px; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 36px; }
.hl { color: var(--brand-dark); font-weight: 600; }
.badge-free {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(246,196,83,0.18);
  color: var(--accent-dark);
  border: 1px solid rgba(246,196,83,0.5);
  padding: 7px 15px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: "Sora", sans-serif;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 520px; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-about { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__links, .nav__cta .btn:not(.nav__call) { display: none; }
  .nav__toggle { display: flex; }
  .nav.open .nav__links {
    display: flex;
    position: absolute;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px;
    box-shadow: var(--shadow-md);
  }
  .nav.open .nav__links a { padding: 12px 14px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .stats-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mini-stats { grid-template-columns: 1fr 1fr; }
}
