/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --base: #0C1117;
  --surface: #131B27;
  --surface-2: #1A2436;
  --surface-3: #222F44;
  --txt: #E8E8E0;
  --txt-2: #94A3B8;
  --txt-3: #64748B;
  --line: rgba(232,232,224,0.10);
  --line-2: rgba(232,232,224,0.18);
  --brand: #F59E0B;
  --brand-dk: #D97706;
  --brand-lt: #FCD34D;
  --brand-glow: rgba(245,158,11,0.18);
  --on-brand: #0C1117;
  --f-body: "Outfit", sans-serif;
  --f-mono: "IBM Plex Mono", monospace;
  --radius: 10px;
  --radius-lg: 16px;
  --maxw: 1200px;
  --pad: clamp(18px, 4vw, 52px);
  --hd-h: 70px;
}

body {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--txt);
  background: var(--base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

.g-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--f-body); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
p { color: var(--txt-2); line-height: 1.75; }

.mono { font-family: var(--f-mono); }
.accent { color: var(--brand); }
.sect-label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  border: none;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-amber {
  background: var(--brand);
  color: var(--on-brand);
}
.btn-amber:hover { background: var(--brand-lt); box-shadow: 0 4px 20px var(--brand-glow); }
.btn-ghost {
  background: transparent;
  color: var(--txt);
  border: 1.5px solid var(--line-2);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-outline-amber {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--brand);
}
.btn-outline-amber:hover { background: var(--brand); color: var(--on-brand); }

/* ── HEADER ── */
.site-hd {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--hd-h);
  background: rgba(12,17,23,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.hd-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Logo */
.sn-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.sn-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.sn-wordmark {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--txt);
  letter-spacing: -0.01em;
  line-height: 1;
}
.sn-wordmark em {
  color: var(--brand);
  font-style: normal;
}

/* Desktop nav */
.hd-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.hd-nav a {
  padding: 6px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--txt-2);
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.hd-nav a:hover { color: var(--txt); background: var(--surface); }

/* Phone pill */
.hd-phone {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--txt);
  text-decoration: none;
  flex-shrink: 0;
}
.hd-phone::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid var(--brand);
  opacity: 0;
  animation: phone-ring 2.5s ease-in-out infinite;
}
@keyframes phone-ring {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.08); }
}
.hd-phone svg { color: var(--brand); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mob-menu {
  position: fixed;
  top: var(--hd-h);
  left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  z-index: 999;
  display: none;
  padding: 20px var(--pad) 28px;
}
.mob-menu.open { display: block; }
.mob-menu a {
  display: block;
  padding: 11px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--txt-2);
  border-bottom: 1px solid var(--line);
}
.mob-menu a:hover { color: var(--brand); }
.mob-menu .mob-phone {
  display: block;
  margin-top: 16px;
  padding: 12px 20px;
  background: var(--brand);
  color: var(--on-brand);
  border-radius: var(--radius);
  font-weight: 700;
  text-align: center;
  border-bottom: none;
}

/* ── HERO ── */
.hero-sect {
  padding-top: calc(var(--hd-h) + 60px);
  padding-bottom: 80px;
  padding-left: var(--pad);
  padding-right: var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}
.hero-txt {}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--brand-glow);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 22px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--brand);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--txt);
  margin-bottom: 20px;
}
.hero-h1 .hl { color: var(--brand); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--txt-2);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}
.h-stat {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--txt);
}
.h-stat-dot {
  width: 8px; height: 8px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Rank counter */
.rank-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  color: var(--txt-2);
  margin-top: 20px;
}
.rank-counter .pos {
  font-weight: 700;
  color: var(--brand);
}
.rank-counter .arrow { color: var(--brand); }

/* Quote form card */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: sticky;
  top: calc(var(--hd-h) + 20px);
}
.qcard-head {
  margin-bottom: 20px;
}
.qcard-head h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 4px;
}
.qcard-head p {
  font-size: 0.8rem;
  color: var(--txt-3);
}

/* Form fields */
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.f-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.f-field label { font-size: 0.78rem; font-weight: 600; color: var(--txt-2); }
.f-field input,
.f-field select,
.f-field textarea {
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--f-body);
  font-size: 0.9rem;
  color: var(--txt);
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.f-field input::placeholder,
.f-field textarea::placeholder { color: var(--txt-3); }
.f-field input:focus,
.f-field select:focus,
.f-field textarea:focus { border-color: var(--brand); }
.f-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.f-field select option { background: var(--surface-2); }
.f-field textarea { resize: vertical; min-height: 80px; }
.f-submit {
  width: 100%;
  padding: 13px;
  background: var(--brand);
  color: var(--on-brand);
  border: none;
  border-radius: var(--radius);
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
  margin-top: 4px;
}
.f-submit:hover { background: var(--brand-lt); box-shadow: 0 4px 20px var(--brand-glow); }
.f-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-msg {
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  display: none;
}
.form-msg.ok { background: rgba(34,197,94,0.12); color: #4ade80; border: 1px solid rgba(34,197,94,0.25); display: block; }
.form-msg.err { background: rgba(239,68,68,0.12); color: #f87171; border: 1px solid rgba(239,68,68,0.25); display: block; }

/* ── TICKER ── */
.ticker {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.tick-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--txt-2);
}
.tick-item .sep {
  width: 4px; height: 4px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── TRUST STATS ── */
.trust-sect {
  padding: 52px var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.trust-item {
  background: var(--surface);
  padding: 28px 20px;
  text-align: center;
}
.trust-num {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 6px;
  font-family: var(--f-body);
}
.trust-lbl {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--txt-2);
}

/* ── SERVICES ── */
.svc-sect {
  padding: 80px var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.svc-head {
  margin-bottom: 44px;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color .25s, transform .25s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.svc-item:hover { border-color: var(--brand); transform: translateY(-3px); }
.svc-icon {
  width: 48px; height: 48px;
  background: var(--brand-glow);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
}
.svc-item h3 { color: var(--txt); font-size: 1.15rem; }
.svc-item p { font-size: 0.9rem; flex: 1; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand);
  margin-top: auto;
}
.svc-link:hover { gap: 8px; }

/* ── SEO CONTENT ── */
.content-sect {
  padding: 80px var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.content-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}
.content-aside {
  position: sticky;
  top: calc(var(--hd-h) + 28px);
}
.content-aside h2 {
  font-size: 1.3rem;
  color: var(--txt);
  margin-bottom: 10px;
}
.content-aside p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.aside-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: var(--brand-glow);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
}
.aside-badge:hover { background: rgba(245,158,11,0.28); }
.content-h1 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 20px;
}
.content-intro h3 {
  font-size: 1.1rem;
  color: var(--txt);
  margin-bottom: 10px;
}
.content-intro p {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

/* Accordion */
.acc-list { margin-top: 28px; }
.acc-list details {
  border-top: 1px solid var(--line);
}
.acc-list details:last-child { border-bottom: 1px solid var(--line); }
.acc-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  cursor: pointer;
  list-style: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--txt);
  transition: color .2s;
  user-select: none;
}
.acc-list summary::-webkit-details-marker { display: none; }
.acc-list summary:hover { color: var(--brand); }
.acc-list details[open] summary { color: var(--brand); }
.acc-plus {
  width: 22px; height: 22px;
  background: var(--surface-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--brand);
  transition: transform .25s, background .2s;
}
.acc-list details[open] .acc-plus { transform: rotate(45deg); background: var(--brand-glow); }
.acc-body {
  padding: 0 4px 18px;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--txt-2);
}
.acc-body p { margin-bottom: 10px; color: var(--txt-2); }
.acc-body h3 {
  font-size: 0.9rem;
  color: var(--txt);
  margin: 14px 0 6px;
  font-weight: 600;
}
.acc-body ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 10px;
}
.acc-body ul li { margin-bottom: 4px; }

/* ── PROCESS ── */
.process-sect {
  padding: 80px var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.process-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 52px;
}
.process-head p { font-size: 0.95rem; }
.timeline {
  position: relative;
  padding-left: 36px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand), transparent);
}
.tl-item {
  position: relative;
  padding: 0 0 44px 36px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-num {
  position: absolute;
  left: -36px;
  top: 0;
  width: 30px; height: 30px;
  background: var(--surface-2);
  border: 2px solid var(--brand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brand);
  z-index: 1;
}
.tl-tag {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  display: block;
  margin-bottom: 6px;
}
.tl-item h3 { color: var(--txt); margin-bottom: 6px; font-size: 1.05rem; }
.tl-item p { font-size: 0.875rem; }

/* ── REVIEWS ── */
.reviews-sect {
  padding: 80px var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.reviews-head { margin-bottom: 40px; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
  color: var(--brand);
}
.review-card blockquote {
  font-size: 0.9rem;
  color: var(--txt-2);
  line-height: 1.75;
  margin-bottom: 14px;
  font-style: italic;
}
.review-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--txt);
}
.review-loc {
  font-size: 0.75rem;
  color: var(--txt-3);
  font-family: var(--f-mono);
}
.google-bar {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.g-rating { font-size: 1.8rem; font-weight: 700; color: var(--brand); line-height: 1; }
.g-stars { display: flex; gap: 2px; color: var(--brand); }
.g-label { font-size: 0.8rem; color: var(--txt-2); }

/* ── PRICING ── */
.pricing-sect {
  padding: 80px var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.pricing-head { margin-bottom: 44px; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.price-card.featured {
  background: var(--surface-2);
  border-color: var(--brand);
  transform: scale(1.02);
  position: relative;
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: var(--on-brand);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 999px;
}
.price-tier {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
}
.price-card h3 { font-size: 1.15rem; color: var(--txt); }
.price-range {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--txt);
  line-height: 1;
}
.price-range span { font-size: 0.85rem; color: var(--txt-2); font-weight: 400; }
.price-desc { font-size: 0.875rem; }
.price-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--txt-2);
}
.price-list li::before {
  content: '✓';
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── FAQ ── */
.faq-sect {
  padding: 80px var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-head { margin-bottom: 36px; }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.faq-body details {
  border-top: 1px solid var(--line);
}
.faq-body details:last-child { border-bottom: 1px solid var(--line); }
.faq-body summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--txt);
  user-select: none;
  transition: color .2s;
}
.faq-body summary::-webkit-details-marker { display: none; }
.faq-body summary:hover { color: var(--brand); }
.faq-body details[open] summary { color: var(--brand); }
.faq-body .acc-plus { flex-shrink: 0; }
.faq-body details[open] .acc-plus { transform: rotate(45deg); background: var(--brand-glow); }
.faq-ans {
  padding: 0 0 18px;
  font-size: 0.9rem;
  color: var(--txt-2);
  line-height: 1.75;
}
.faq-sticky {
  position: sticky;
  top: calc(var(--hd-h) + 28px);
  background: var(--surface);
  border: 1px solid var(--brand);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-sticky h3 { font-size: 1.05rem; color: var(--txt); }
.faq-sticky p { font-size: 0.85rem; }
.faq-sticky ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-sticky ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--txt-2);
}
.faq-sticky ul li::before {
  content: '✓';
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── BIG CTA ── */
.cta-sect {
  background: var(--brand);
  padding: 72px var(--pad);
}
.cta-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-sect h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--on-brand);
  margin-bottom: 8px;
}
.cta-sect p {
  color: rgba(12,17,23,0.7);
  font-size: 1rem;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}
.btn-dark {
  background: var(--on-brand);
  color: var(--brand);
  border: none;
}
.btn-dark:hover { background: var(--surface-2); color: var(--brand-lt); opacity: 1; }
.btn-outline-dark {
  background: transparent;
  color: var(--on-brand);
  border: 1.5px solid var(--on-brand);
}
.btn-outline-dark:hover { background: var(--on-brand); color: var(--brand); opacity: 1; }

/* ── FOOTER ── */
.site-ft {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 64px var(--pad) 0;
}
.ft-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.ft-brand p {
  font-size: 0.875rem;
  margin: 14px 0 20px;
  max-width: 240px;
}
.ft-socials {
  display: flex;
  gap: 10px;
}
.ft-si {
  width: 34px; height: 34px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--txt-2);
  transition: border-color .2s, color .2s;
}
.ft-si:hover { border-color: var(--brand); color: var(--brand); }
.ft-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--txt-3);
  margin-bottom: 16px;
  font-family: var(--f-mono);
}
.ft-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--txt-2);
  padding: 5px 0;
  transition: color .2s;
}
.ft-col a:hover { color: var(--brand); }
.ft-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--txt-2);
  padding: 5px 0;
  transition: color .2s;
}
.ft-contact a:hover { color: var(--brand); }
.ft-contact svg { color: var(--brand); flex-shrink: 0; }
.ft-bar {
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.ft-bar p {
  font-size: 0.78rem;
  color: var(--txt-3);
}
.ft-bar a {
  font-size: 0.78rem;
  color: var(--txt-3);
  transition: color .2s;
}
.ft-bar a:hover { color: var(--brand); }
.ft-bar-links { display: flex; gap: 20px; }

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--brand);
  color: var(--on-brand);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 24px var(--brand-glow);
  text-decoration: none;
  transition: background .2s;
}
.sticky-cta a:hover { background: var(--brand-lt); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in-view { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1060px) {
  .hero-grid { grid-template-columns: 1fr 360px; gap: 32px; }
  .process-head { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 900px) {
  .hd-nav, .hd-phone { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .quote-card { position: static; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .content-aside { position: static; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sticky { position: static; }
  .cta-inner { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-stats { flex-direction: column; gap: 12px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .svc-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; }
  .ft-bar { flex-direction: column; align-items: flex-start; }
  .sticky-cta a span { display: none; }
  .sticky-cta a { padding: 14px; border-radius: 50%; }
  .cta-btns { flex-direction: column; }
}
