/* ============================================================
   SCAFFOLD LEADS — landing page styles
   Brand: navy #0e3556 · orange #e47617 · white
   Type:  Archivo (display) · Barlow (body) · Barlow Condensed (labels/numbers)
   ============================================================ */

:root {
  --navy:        #0e3556;
  --navy-700:    #0c2c48;
  --navy-900:    #081e31;
  --orange:      #e47617;
  --orange-600:  #c9640e;
  --orange-tint: #fbeede;

  --ink:    #16242e;
  --muted:  #5a6b78;
  --paper:  #ffffff;
  --mist:   #f3f6f8;
  --mist-2: #e9eef2;
  --line:   #dde4ea;

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body:    'Barlow', system-ui, sans-serif;
  --font-cond:    'Barlow Condensed', system-ui, sans-serif;

  --maxw: 1200px;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(8,30,49,.06), 0 2px 8px rgba(8,30,49,.05);
  --shadow-md: 0 8px 24px rgba(8,30,49,.10), 0 2px 6px rgba(8,30,49,.06);
  --shadow-lg: 0 24px 60px rgba(8,30,49,.18), 0 6px 16px rgba(8,30,49,.10);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.04; letter-spacing: -.02em; margin: 0; color: var(--navy); }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.center { text-align: center; }

.eyebrow {
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 15px;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px; background: var(--orange); display: inline-block;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }
.eyebrow--light { color: #f0a566; }

.h-sec { font-size: clamp(32px, 4.6vw, 52px); margin: 16px 0 0; max-width: 16ch; }
.center .h-sec { margin-inline: auto; }
.lede { font-size: clamp(18px, 2vw, 21px); color: var(--muted); max-width: 60ch; margin-top: 18px; }
.center .lede { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 17px;
  padding: 16px 28px; border-radius: 10px; border: 0; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 8px 22px rgba(228,118,23,.32); }
.btn--primary:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(228,118,23,.40); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn--outline { background: #fff; color: var(--navy); border: 1.5px solid var(--line); }
.btn--outline:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn--lg { padding: 19px 34px; font-size: 19px; }
.btn--block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s var(--ease), border-color .25s;
}
.header.is-stuck { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.brand__name {
  font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -.01em;
  color: var(--navy); line-height: 1; text-transform: uppercase;
}
.brand__name small { display: block; font-family: var(--font-cond); font-weight: 600; font-size: 11px; letter-spacing: .22em; color: var(--orange); margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a { font-weight: 600; font-size: 16px; color: var(--navy); opacity: .82; transition: opacity .15s; }
.nav a:hover { opacity: 1; }
.header__cta { display: flex; align-items: center; gap: 16px; }
.header__cta .btn { padding: 12px 22px; font-size: 16px; }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; margin: 5px 0; transition: .25s var(--ease); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy);
  color: #fff;
  padding: 84px 0 96px;
}
.hero::before { /* isometric scaffold grid texture */
  content: ""; position: absolute; inset: 0; opacity: .12; pointer-events: none;
  background-image:
    repeating-linear-gradient(60deg, rgba(255,255,255,.6) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(-60deg, rgba(255,255,255,.6) 0 1px, transparent 1px 46px);
  -webkit-mask-image: radial-gradient(120% 90% at 70% 10%, #000 35%, transparent 75%);
          mask-image: radial-gradient(120% 90% at 70% 10%, #000 35%, transparent 75%);
}

.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(40px, 5.4vw, 66px); letter-spacing: -.025em; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero__lede { color: #c6d3de; font-size: clamp(18px, 2.1vw, 22px); margin-top: 22px; max-width: 48ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__guarantee {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 26px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  padding: 12px 18px; border-radius: 999px; font-size: 15px; color: #e7eef4; font-weight: 500;
}
.hero__guarantee .dot { width: 9px; height: 9px; border-radius: 50%; background: #43d17a; box-shadow: 0 0 0 4px rgba(67,209,122,.22); flex: none; }
.hero__guarantee b { color: #fff; font-weight: 700; }

/* hero lead-feed visual */
.leadcard {
  background: #fff; color: var(--ink); border-radius: 18px; box-shadow: var(--shadow-lg);
  padding: 22px; position: relative;
}
.leadcard__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.leadcard__title { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--navy); }
.leadcard__live { font-family: var(--font-cond); font-weight: 600; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; color: #2aa35a; display: inline-flex; align-items: center; gap: 7px; }
.leadcard__live .ping { width: 8px; height: 8px; border-radius: 50%; background: #2aa35a; position: relative; }
.leadcard__live .ping::after { content:""; position:absolute; inset:-4px; border-radius:50%; background:#2aa35a; opacity:.4; animation: ping 1.8s var(--ease) infinite; }
@keyframes ping { 0%{transform:scale(.6);opacity:.5} 100%{transform:scale(2.2);opacity:0} }
.leadlist { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.lead__ic { font-size: 16px; }
.lead {
  display: flex; align-items: center; gap: 14px; padding: 13px 14px; border-radius: 12px;
  background: var(--mist); border: 1px solid var(--mist-2); min-width: 0; min-height: 66px;
  opacity: 1; transform: none;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.lead.is-new { opacity: 0; transform: translateY(-12px); }
.lead__ic { width: 40px; height: 40px; border-radius: 10px; background: var(--navy); color: #fff; display: grid; place-items: center; flex: none; font-family: var(--font-display); font-weight: 800; }
.lead__ic--alt { background: var(--orange); }
.lead__main { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.lead__name { font-weight: 700; font-size: 15.5px; color: var(--navy); display: block; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lead__meta { font-size: 13.5px; color: var(--muted); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lead__tag { margin-left: auto; font-family: var(--font-cond); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: #2aa35a; background: #e7f6ee; padding: 5px 9px; border-radius: 7px; flex: none; }
.leadcard__foot { display: flex; align-items: center; justify-content: flex-start; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.leadcard__foot .muted-cta { font-weight: 600; font-size: 14px; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }
.leadcard__foot .muted-cta svg { width: 15px; height: 15px; }
.leadcard__since { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .1em; font-size: 12px; color: var(--muted); font-weight: 600; }
.leadcard__count { font-family: var(--font-cond); font-weight: 700; display: flex; align-items: baseline; gap: 7px; }
.leadcard__count b { font-size: 30px; color: var(--orange); }
.leadcard__count span { color: var(--muted); font-size: 14px; font-family: var(--font-body); }
.leadcard__float {
  position: absolute; right: -16px; bottom: -26px; background: var(--orange); color: #fff;
  border-radius: 12px; padding: 12px 16px; box-shadow: var(--shadow-md); font-size: 13px; font-weight: 600; max-width: 200px;
}
.leadcard__float b { font-family: var(--font-cond); font-size: 22px; display: block; line-height: 1; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust { background: #fff; border-bottom: 1px solid var(--line); padding: 30px 0; }
.trust__inner { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; justify-content: center; }
.trust__label { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .14em; font-weight: 600; font-size: 13px; color: var(--muted); }
.trust__logos { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; }
.chip {
  font-family: var(--font-body); font-weight: 700; font-size: 15px; color: var(--navy);
  background: var(--mist); border: 1px solid var(--mist-2); padding: 9px 16px; border-radius: 999px;
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem { background: var(--mist); }
.problem__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 48px; }
.pcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.pcard__n { font-family: var(--font-cond); font-weight: 700; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); }
.pcard h3 { font-size: 22px; margin: 12px 0 10px; }
.pcard p { color: var(--muted); font-size: 16.5px; }
.problem__turn { text-align: center; margin-top: 44px; font-family: var(--font-display); font-weight: 800; font-size: clamp(22px,3vw,30px); color: var(--navy); }
.problem__turn em { color: var(--orange); font-style: normal; }

/* ============================================================
   PROCESS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 54px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step__num { font-family: var(--font-cond); font-weight: 700; font-size: 64px; line-height: .8; color: var(--mist-2); -webkit-text-stroke: 1.5px var(--navy); color: transparent; }
.step__num b { color: var(--orange); -webkit-text-stroke: 0; }
.step h3 { font-size: 23px; margin: 14px 0 10px; }
.step p { color: var(--muted); font-size: 16.5px; }
.step__line { position: absolute; top: 28px; left: 64px; right: -26px; height: 2px; background: repeating-linear-gradient(90deg, var(--mist-2) 0 8px, transparent 8px 16px); }
.step:last-child .step__line { display: none; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--mist); }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.svc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc__ic { width: 50px; height: 50px; border-radius: 12px; background: var(--orange-tint); color: var(--orange); display: grid; place-items: center; margin-bottom: 18px; }
.svc__ic svg { width: 26px; height: 26px; }
.svc h3 { font-size: 20px; margin-bottom: 8px; }
.svc p { color: var(--muted); font-size: 16px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing__head { text-align: center; }
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; align-items: center; }
.tier {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 34px 30px;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.tier:hover { box-shadow: var(--shadow-md); }
.tier--feature {
  background: var(--navy); color: #fff; border-color: var(--navy);
  padding: 44px 34px; box-shadow: var(--shadow-lg); position: relative; z-index: 2;
  transform: scale(1.04);
}
.tier--feature:hover { transform: scale(1.04) translateY(-4px); }
.tier--feature h3, .tier--feature .tier__price b { color: #fff; }
.tier__badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-family: var(--font-cond); font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; font-size: 13px; padding: 7px 18px; border-radius: 999px;
  white-space: nowrap; box-shadow: 0 6px 16px rgba(228,118,23,.4);
}
.tier__name { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; font-size: 15px; color: var(--orange); }
.tier--feature .tier__name { color: #f0a566; }
.tier h3 { font-size: 25px; margin: 6px 0 4px; }
.tier__sub { font-size: 15px; color: var(--muted); min-height: 44px; }
.tier--feature .tier__sub { color: #b9c7d4; }
.tier__price { margin: 22px 0 6px; font-family: var(--font-cond); display: flex; align-items: baseline; gap: 4px; }
.tier__price b { font-size: 56px; font-weight: 700; line-height: .9; color: var(--navy); letter-spacing: -.01em; }
.tier__price span { color: var(--muted); font-size: 17px; font-weight: 600; }
.tier--feature .tier__price span { color: #b9c7d4; }
.tier__note { font-size: 13.5px; color: var(--muted); margin-bottom: 22px; }
.tier--feature .tier__note { color: #9fb2c1; }
.tier .btn { margin-bottom: 24px; }
.tier__feats { display: flex; flex-direction: column; gap: 13px; font-size: 16px; }
.tier__feats li { display: flex; gap: 11px; align-items: flex-start; }
.tier__feats .ck { flex: none; width: 20px; height: 20px; margin-top: 2px; border-radius: 50%; background: var(--orange-tint); color: var(--orange); display: grid; place-items: center; }
.tier--feature .tier__feats .ck { background: rgba(228,118,23,.25); color: #f7b075; }
.tier__feats .ck svg { width: 12px; height: 12px; }
.tier__feats .lead-in { font-weight: 700; color: var(--navy); }
.tier--feature .tier__feats .lead-in { color: #fff; }
.pricing__foot { text-align: center; margin-top: 40px; color: var(--muted); font-size: 16px; }
.pricing__foot b { color: var(--navy); }

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.guarantee::before { content:""; position:absolute; left:-140px; bottom:-160px; width:460px; height:460px; border-radius:50%; background: radial-gradient(circle, rgba(228,118,23,.22), transparent 65%); }
.guarantee__inner { position: relative; display: grid; grid-template-columns: 220px 1fr; gap: 50px; align-items: center; }
.seal {
  width: 200px; height: 200px; border-radius: 50%; display: grid; place-items: center; text-align: center;
  background: radial-gradient(circle at 50% 35%, #14436c, var(--navy-900));
  border: 3px solid var(--orange); box-shadow: 0 0 0 8px rgba(228,118,23,.12), var(--shadow-lg);
  font-family: var(--font-cond); justify-self: center;
}
.seal b { display: block; font-size: 52px; font-weight: 700; line-height: .85; color: var(--orange); }
.seal span { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .14em; font-size: 13px; color: #d7e2ec; margin-top: 8px; }
.guarantee h2 { color: #fff; font-size: clamp(28px, 3.8vw, 42px); }
.guarantee p { color: #c6d3de; font-size: 18.5px; margin-top: 16px; max-width: 60ch; }
.guarantee__tags { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.guarantee__tags span { font-family: var(--font-cond); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: 13.5px; padding: 9px 16px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; }

/* ============================================================
   PROOF / STATS
   ============================================================ */
.proof__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 50px; }
.stat { text-align: center; padding: 28px 18px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.stat b { font-family: var(--font-cond); font-weight: 700; font-size: 52px; line-height: .9; color: var(--orange); display: block; }
.stat span { font-weight: 600; color: var(--navy); font-size: 16px; margin-top: 8px; display: block; }
.proof__note {
  margin-top: 40px; background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 32px 36px; display: flex; gap: 22px; align-items: center; box-shadow: var(--shadow-md);
}
.proof__note .badge { font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: 13px; color: var(--navy); background: var(--orange); padding: 8px 14px; border-radius: 8px; flex: none; align-self: flex-start; white-space: nowrap; }
.proof__note p { color: #d4dee7; font-size: 17.5px; }
.proof__note b { color: #fff; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--mist); }
.faq__list { max-width: 820px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.qa { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.qa__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-display); font-weight: 700; font-size: 18.5px; color: var(--navy); }
.qa__q .ic { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--mist); display: grid; place-items: center; transition: .25s var(--ease); }
.qa__q .ic::before, .qa__q .ic::after { content:""; position:absolute; background: var(--navy); border-radius: 2px; }
.qa__q .ic { position: relative; }
.qa__q .ic::before { width: 12px; height: 2px; }
.qa__q .ic::after { width: 2px; height: 12px; transition: transform .25s var(--ease); }
.qa.open .qa__q .ic { background: var(--orange); }
.qa.open .qa__q .ic::before, .qa.open .qa__q .ic::after { background: #fff; }
.qa.open .qa__q .ic::after { transform: scaleY(0); }
.qa__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.qa__a p { padding: 0 24px 24px; color: var(--muted); font-size: 16.5px; }

/* ============================================================
   BOOKING / FINAL CTA
   ============================================================ */
.booking { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.booking::before { content:""; position:absolute; inset:0; opacity:.1;
  background-image: repeating-linear-gradient(60deg, rgba(255,255,255,.6) 0 1px, transparent 1px 50px), repeating-linear-gradient(-60deg, rgba(255,255,255,.6) 0 1px, transparent 1px 50px);
  -webkit-mask-image: radial-gradient(100% 100% at 20% 0%, #000 30%, transparent 70%); mask-image: radial-gradient(100% 100% at 20% 0%, #000 30%, transparent 70%); }
.booking__inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.booking h2 { color: #fff; font-size: clamp(30px,4.2vw,48px); }
.booking p { color: #c6d3de; font-size: 19px; margin-top: 18px; max-width: 46ch; }
.booking__list { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.booking__list li { display: flex; gap: 13px; align-items: center; font-size: 17px; color: #e7eef4; }
.booking__list .ck { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; }
.booking__list .ck svg { width: 13px; height: 13px; }
.booking__contact { margin-top: 30px; display: flex; gap: 28px; flex-wrap: wrap; font-size: 16px; }
.booking__contact a { color: #fff; font-weight: 700; display: inline-flex; align-items: center; gap: 9px; }
.booking__contact .lab { color: #91a4b4; font-weight: 500; display: block; font-size: 13px; font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .1em; }

/* calendar embed placeholder */
.calendar {
  background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; color: var(--ink);
}
.calendar__bar { background: var(--mist); border-bottom: 1px solid var(--line); padding: 16px 22px; display: flex; align-items: center; gap: 10px; }
.calendar__bar b { font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: 16px; }
.calendar__bar .pip { width: 11px; height: 11px; border-radius: 50%; background: #d7dee5; }
.calendar__embed { background: #fff; }
.calendar__embed .calendly-inline-widget { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-900); color: #c6d3de; padding: 64px 0 30px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand img { height: 90px; margin-bottom: 18px; }
.footer__brand p { color: #91a4b4; font-size: 16px; max-width: 38ch; }
.footer__col h5 { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .12em; font-size: 13px; color: #fff; margin: 0 0 16px; font-weight: 700; }
.footer__col a { display: block; color: #aebecb; margin-bottom: 11px; font-size: 15.5px; transition: color .15s; }
.footer__col a:hover { color: #fff; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: .2s var(--ease); }
.socials a:hover { background: var(--orange); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; fill: #fff; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; font-size: 14px; color: #7e93a4; gap: 16px; flex-wrap: wrap; }
.footer__bottom a { color: #aebecb; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); gap: 44px; }
  .hero__copy { min-width: 0; }
  .hero__visual { max-width: 440px; margin-inline: auto; width: 100%; min-width: 0; }
  .booking__inner { grid-template-columns: 1fr; gap: 40px; }
  .guarantee__inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .guarantee p { margin-inline: auto; }
  .guarantee__tags { justify-content: center; }
  .proof__grid { grid-template-columns: repeat(2,1fr); }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  .nav, .header__cta .btn { display: none; }
  .menu-toggle { display: block; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; gap: 28px; }
  .tier--feature { transform: none; order: -1; }
  .tier--feature:hover { transform: translateY(-4px); }
  .problem__grid, .steps { grid-template-columns: 1fr; gap: 30px; }
  .step__line { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .section { padding: 64px 0; }
  .wrap { padding: 0 20px; }
  .svc-grid, .proof__grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 64px; }
  .hero__cta .btn { width: 100%; }
  .proof__note { flex-direction: column; align-items: flex-start; }
  .leadcard__float { right: 8px; bottom: -22px; }
  .footer__top { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* mobile menu drawer */
.mobile-menu {
  position: fixed; inset: 76px 0 auto 0; background: #fff; border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md); padding: 18px 28px 26px; z-index: 99;
  transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .22s var(--ease);
}
.mobile-menu.open { transform: none; opacity: 1; pointer-events: auto; }
.mobile-menu a { display: block; padding: 13px 0; font-weight: 600; font-size: 18px; color: var(--navy); border-bottom: 1px solid var(--mist); }
.mobile-menu .btn { margin-top: 18px; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .lead.is-new { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
