/* ==========================================================
   VAM — Visual Attention Media
   Brand stylesheet — dark gold & purple premium palette
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ---------- Tokens ---------- */
:root {
  --bg:           #0D0D0D;
  --bg-soft:      #111318;
  --surface:      #16191F;
  --ink:          #FAF6EC;
  --ink-soft:     #C8C3B8;
  --muted:        #7a7f8e;
  --gold:         #C9A84C;
  --gold-dark:    #E0BE6A;
  --gold-soft:    rgba(201,168,76,0.12);
  --purple:       #6B2FA0;
  --purple-soft:  rgba(107,47,160,0.18);
  --navy:         #6B2FA0;
  --navy-soft:    #7B3FB0;
  --border:       #252830;
  --border-soft:  #1c1f27;
  --radius-sm:    8px;
  --radius:       16px;
  --radius-lg:    24px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.4);
  --shadow:       0 6px 24px rgba(0,0,0,0.55);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.7);
  --shadow-gold:  0 8px 32px rgba(201,168,76,0.22);
  --serif:        'Fraunces', 'Times New Roman', Georgia, serif;
  --sans:         'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max:          1240px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
  position: relative;
}
.section--alt {
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.section--soft {
  background: var(--bg-soft);
}
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 12px;
}
.h1, .h2, .h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 24px;
}
.h1 { font-size: clamp(40px, 6.5vw, 78px); }
.h2 { font-size: clamp(32px, 4.5vw, 54px); }
.h3 { font-size: clamp(22px, 2.4vw, 28px); }
.h2 em, .h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.lead {
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 32px;
  line-height: 1.65;
}
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--bg);
}
.btn--primary:hover {
  transform: translateY(-1px);
  background: var(--purple);
  box-shadow: var(--shadow);
}
.btn--gold {
  background: var(--gold);
  color: #0D0D0D;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  color: #0D0D0D;
  transform: translateY(-1px);
  box-shadow: 0 10px 36px rgba(201,168,76,0.38);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  background: var(--gold-soft);
  color: var(--gold);
  border-color: var(--gold);
}
.btn--full { width: 100%; }
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13,13,13,0.88);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.18em;
  font-size: 18px;
  color: var(--ink);
}
.nav__logo span {
  display: block;
  font-family: var(--sans);
  letter-spacing: 0.28em;
  font-size: 9px;
  color: var(--gold);
  font-weight: 700;
  margin-top: 2px;
}
.nav__links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  transition: color .2s ease;
}
.nav__links a:hover, .nav__links a.is-active {
  color: var(--gold);
}
.nav__links a.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: .25s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(13,13,13,0.82) 0%, rgba(13,13,13,0.70) 40%, rgba(13,13,13,0.88) 100%),
    url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1920&q=80')
    center / cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -10% -10% auto auto;
  width: 56%;
  height: 80%;
  background: radial-gradient(closest-side, rgba(107,47,160,0.3) 0%, transparent 70%);
  filter: blur(40px);
  opacity: .9;
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto auto -20% -20%;
  width: 60%;
  height: 70%;
  background: radial-gradient(closest-side, rgba(201,168,76,0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 7.6vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: var(--ink);
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.hero__sub {
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.hero__cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__metric {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.hero__metric > div { text-align: center; }
.hero__metric strong {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.hero__metric span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  display: block;
}

/* ---------- Cards / Grid ---------- */
.grid {
  display: grid;
  gap: 22px;
  margin-top: 48px;
}
.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(--border-soft);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.card__num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.card__num::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
}

/* ---------- Industry tiles ---------- */
.tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: all .3s ease;
}
.tile:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-3px);
}
.tile:hover .tile__sub { color: var(--ink-soft); }
.tile__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  color: var(--gold);
  transition: color .3s ease;
}
.tile:hover .tile__icon { color: var(--gold-dark); }
.tile h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.tile__sub {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* ---------- Pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.price {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price--featured {
  background: linear-gradient(145deg, #1a1232, #0f0c1f);
  color: var(--ink);
  border-color: var(--purple);
  border-width: 1.5px;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(107,47,160,0.35);
}
.price--featured:hover { transform: translateY(-12px) scale(1.02); }
.price--featured .price__name,
.price--featured .price__amount,
.price--featured .price__features li { color: var(--ink); }
.price--featured .price__amount span { color: var(--gold); }
.price__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0D0D0D;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.price__name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.price__amount {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 6px;
  color: var(--ink);
}
.price__amount span {
  font-size: 16px;
  font-family: var(--sans);
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
}
.price__sub {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 24px;
}
.price__features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  flex: 1;
}
.price__features li {
  padding: 10px 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  padding-left: 26px;
}
.price__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 16px;
  height: 8px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.price--featured .price__features li { border-color: rgba(255,255,255,0.07); }

/* ---------- Philosophy / Quote ---------- */
.quote {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.quote__mark {
  font-family: var(--serif);
  font-size: 96px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: -32px;
}
.quote__text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0 0 32px;
  color: var(--ink);
}
.quote__text em {
  color: var(--gold);
  font-weight: 500;
}
.quote__body {
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.step {
  position: relative;
  padding: 28px 24px;
  border-left: 2px solid var(--gold);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.step__num {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 8px;
}
.step h4 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--ink);
}
.step p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ---------- CTA Strip ---------- */
.cta-strip {
  background:
    linear-gradient(135deg, rgba(13,13,13,0.93) 0%, rgba(22,10,42,0.95) 100%),
    url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1920&q=80')
    center / cover no-repeat;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(107,47,160,0.28);
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  height: 180%;
  background: radial-gradient(closest-side, rgba(201,168,76,0.18) 0%, transparent 70%);
  filter: blur(10px);
}
.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 50%;
  height: 180%;
  background: radial-gradient(closest-side, rgba(107,47,160,0.18) 0%, transparent 70%);
  filter: blur(10px);
}
.cta-strip > * { position: relative; z-index: 1; }
.cta-strip h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--ink);
}
.cta-strip h2 em { color: var(--gold); font-style: italic; }
.cta-strip p {
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto 32px;
  font-size: 17px;
}

/* ---------- Forms ---------- */
.form {
  display: grid;
  gap: 20px;
  max-width: 620px;
  margin: 0 auto;
}
.form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.field { display: grid; gap: 6px; }
.field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input, .field select, .field textarea {
  font: inherit;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.field textarea { min-height: 140px; resize: vertical; }
.field select option { background: var(--surface); color: var(--ink); }

/* ---------- About / Story ---------- */
.story {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.story p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.story__panel {
  background: linear-gradient(145deg, #16191F, #0f0c1f);
  border: 1px solid rgba(107,47,160,0.3);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  position: sticky;
  top: 100px;
}
.story__panel .num {
  font-family: var(--serif);
  font-size: 80px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.story__panel .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.story__panel .stack {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 24px 0 14px;
  color: var(--gold);
}
.story__panel .meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Footer ---------- */
.footer {
  background: #080808;
  color: var(--ink);
  padding: 72px 0 36px;
  margin-top: 0;
  border-top: 1px solid var(--border);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__brand h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.18em;
  font-size: 22px;
  margin: 0 0 10px;
}
.footer__brand span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}
.footer__brand p {
  color: rgba(250,246,236,0.5);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 320px;
  margin: 0;
}
.footer__col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: 12px; }
.footer__col a {
  color: rgba(250,246,236,0.55);
  font-size: 14.5px;
  transition: color .2s ease;
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(250,246,236,0.35);
}
.socials { display: flex; gap: 12px; }
.socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}
.socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0D0D0D;
}
.socials svg { width: 16px; height: 16px; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Nav Logo Image ---------- */
.nav__logo-img {
  height: 42px;
  width: auto;
  display: block;
}
.nav__logo { gap: 0; }

/* ---------- Footer Logo Image ---------- */
.footer__logo-img {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}

/* ---------- Comparison Section ---------- */
.pain-card {
  border-top: 3px solid #C9323A;
}
.pain-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e05a62;
  margin-bottom: 10px;
}
.compare-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}
.compare-header {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  background: #080808;
  padding: 18px 32px;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.compare-col-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
}
.compare-col--bad { color: rgba(250,246,236,0.3); }
.compare-col--good { color: var(--gold); }
.compare-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  padding: 15px 32px;
  gap: 16px;
  border-bottom: 1px solid var(--border-soft);
  align-items: center;
}
.compare-row:last-child { border-bottom: none; }
.compare-row--price {
  background: var(--bg-soft);
  padding: 20px 32px;
}
.compare-feature {
  font-size: 15px;
  color: var(--ink-soft);
}
.compare-val {
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
}
.compare-val--bad {
  color: #e05a62;
  background: rgba(201,50,58,0.1);
}
.compare-val--good {
  color: #4ecb82;
  background: rgba(26,110,67,0.14);
}
@media (max-width: 720px) {
  .compare-header,
  .compare-row { grid-template-columns: 1fr 1fr; padding: 14px 18px; }
  .compare-feature { display: none; }
  .compare-header > div:first-child { display: none; }
}

/* ---------- Pricing 6-tier note ---------- */
.price-note {
  text-align: center;
  margin-top: 36px;
  font-size: 14px;
  color: var(--muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid--3, .grid--4, .price-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .story { grid-template-columns: 1fr; }
  .story__panel { position: static; }
  .price--featured { transform: none; }
  .price--featured:hover { transform: translateY(-4px); }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(13,13,13,0.97);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 18px;
  }
  .grid--3, .grid--4, .grid--2, .price-grid, .steps,
  .form__row, .footer__top { grid-template-columns: 1fr; }
  .hero__metric { grid-template-columns: 1fr; }
  .cta-strip { padding: 40px 24px; }
}
