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

/* ── Tokens ──────────────────────────────────────────────────────────────────── */
:root {
  --lead:      #0284c7;
  --lead-dk:   #0369a1;
  --lead-lt:   #e0f2fe;
  --page:      #f8fafc;
  --canvas:    #ffffff;
  --navy:      #0f172a;
  --navy-mid:  #1e293b;
  --text:      #1e293b;
  --muted:     #64748b;
  --border:    #e2e8f0;
  --shadow:    0 2px 16px rgba(0,0,0,.07);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
  --radius:    10px;
}

/* ── Base ────────────────────────────────────────────────────────────────────── */
body {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--page);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  color: var(--navy);
}

/* ── Site wrap ───────────────────────────────────────────────────────────────── */
.site-wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lead);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 999px;
  transition: background .2s, transform .15s;
  text-decoration: none;
}
.btn-solid:hover { background: var(--lead-dk); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 999px;
  transition: border-color .2s, color .2s, transform .15s;
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--lead); color: var(--lead); transform: translateY(-1px); }

/* ── STICKY NAV ──────────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--canvas);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,.05);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ── Logo ────────────────────────────────────────────────────────────────────── */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-top {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.logo-bot {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--lead);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ── Nav links ───────────────────────────────────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--lead); background: var(--lead-lt); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-phone {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.nav-phone:hover { color: var(--lead); }

/* ── HERO ────────────────────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--canvas);
  padding: 80px 0 60px;
}

/* Bubble drift background */
.bubble-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(2, 132, 199, .15);
  animation: bubble-rise linear infinite;
  opacity: 0;
}
@keyframes bubble-rise {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .6; }
  100% { transform: translateY(-110vh) scale(1.3); opacity: 0; }
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--lead);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-eyebrow svg { width: 14px; height: 14px; }

.hero-h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-h1 em {
  font-style: italic;
  color: var(--lead);
  position: relative;
}
.hero-h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  background: var(--lead);
  border-radius: 2px;
  opacity: .35;
}

.hero-tagline {
  font-size: 18px;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 28px;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.hero-trust-item svg { color: var(--lead); width: 16px; height: 16px; flex-shrink: 0; }
.trust-divider { width: 1px; height: 18px; background: var(--border); }

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Checklist card ──────────────────────────────────────────────────────────── */
.checklist-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.checklist-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2,132,199,.3) 0%, transparent 70%);
  pointer-events: none;
}
.checklist-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--lead);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.checklist-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--lead);
  border-radius: 1px;
}
.checklist-tasks { display: flex; flex-direction: column; gap: 12px; }
.task-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  opacity: 0;
  transform: translateX(-8px);
}
.task-row.task-appear {
  animation: task-in .4s ease forwards;
}
.task-row.task-done { background: rgba(2,132,199,.15); }
@keyframes task-in {
  to { opacity: 1; transform: translateX(0); }
}
.task-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, border-color .3s;
}
.task-row.task-done .task-check {
  background: var(--lead);
  border-color: var(--lead);
}
.task-check svg { width: 12px; height: 12px; color: #fff; opacity: 0; transition: opacity .2s .1s; }
.task-row.task-done .task-check svg { opacity: 1; }
.task-name {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  transition: color .3s;
}
.task-row.task-done .task-name { color: #fff; }

.checklist-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checklist-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.star-row { display: flex; gap: 2px; }
.star-row svg { width: 14px; height: 14px; color: #fbbf24; fill: #fbbf24; }
.checklist-cta {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--lead);
  text-decoration: none;
}
.checklist-cta:hover { text-decoration: underline; }

/* ── TRUST STATS STRIP ───────────────────────────────────────────────────────── */
.stats-strip {
  background: var(--lead);
  padding: 40px 0;
}
.stats-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-cell { color: #fff; }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: 14px;
  font-weight: 500;
  opacity: .85;
}

/* ── SIDEBAR-ANCHOR REGION ───────────────────────────────────────────────────── */
.anchor-region {
  padding: 80px 0;
}
.anchor-layout {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Left sidebar ────────────────────────────────────────────────────────────── */
.anchor-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-nav-box {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.sidebar-nav-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--page);
}
.sidebar-nav-list { list-style: none; padding: 8px 0; }
.sidebar-nav-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color .15s, background .15s;
  border-left: 3px solid transparent;
}
.sidebar-nav-list a:hover,
.sidebar-nav-list a.active {
  color: var(--lead);
  background: var(--lead-lt);
  border-left-color: var(--lead);
}
.sidebar-nav-list a svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--lead); }

.sidebar-contact-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 22px;
  color: #fff;
}
.sidebar-contact-box .sc-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lead);
  margin-bottom: 14px;
}
.sc-phone, .sc-email {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color .15s;
}
.sc-phone:hover, .sc-email:hover { color: #fff; }
.sc-phone svg, .sc-email svg { width: 14px; height: 14px; color: var(--lead); flex-shrink: 0; }
.sc-cta {
  display: block;
  margin-top: 16px;
  background: var(--lead);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 11px 16px;
  border-radius: 8px;
  transition: background .2s;
  text-decoration: none;
}
.sc-cta:hover { background: var(--lead-dk); }

/* ── Anchor main (scrollable right panel) ────────────────────────────────────── */
.anchor-main { display: flex; flex-direction: column; gap: 72px; }

/* ── Section headings ────────────────────────────────────────────────────────── */
.section-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--lead);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lead);
  border-radius: 1px;
}
.section-h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.section-intro {
  font-size: 16px;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 36px;
}

/* ── SERVICES CARDS ──────────────────────────────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.svc-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--lead);
}
.svc-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--lead-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-icon-wrap svg { width: 22px; height: 22px; color: var(--lead); }
.svc-card-body { flex: 1; min-width: 0; }
.svc-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}
.svc-card-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── PRICING ─────────────────────────────────────────────────────────────────── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.price-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  transition: box-shadow .2s, border-color .2s;
}
.price-card:hover { box-shadow: var(--shadow-lg); border-color: var(--lead); }
.price-card.featured {
  border-color: var(--lead);
  box-shadow: 0 0 0 3px rgba(2,132,199,.12);
}
.price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--lead);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.price-service {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--lead);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.price-figure {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.price-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}
.price-includes { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.price-includes li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
}
.price-includes li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--lead-lt);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230284c7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3.5 8 6.5 11 12.5 5'/%3E%3C/svg%3E");
  background-size: contain;
}

/* ── PROCESS ─────────────────────────────────────────────────────────────────── */
.process-steps { display: flex; flex-direction: column; }
.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
}
.process-step + .process-step { border-top: 1px solid var(--border); }
.step-num-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2px;
}
.step-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--lead);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── SEO CONTENT SECTION ─────────────────────────────────────────────────────── */
.seo-section {
  padding: 80px 0;
  background: var(--canvas);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.seo-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}
.seo-h1 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}
.seo-intro { margin-bottom: 32px; }
.seo-intro h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.seo-intro p { font-size: 16px; color: var(--text); margin-bottom: 14px; line-height: 1.75; }

.seo-accord { margin-top: 8px; }
.seo-accord details {
  border-bottom: 1px solid var(--border);
}
.seo-accord details:first-of-type { border-top: 1px solid var(--border); }
.seo-accord summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0 18px 16px;
  border-left: 3px solid var(--lead);
  display: flex;
  align-items: center;
  gap: 0;
  user-select: none;
}
.seo-accord summary::-webkit-details-marker { display: none; }
.seo-accord summary h2 {
  font-family: 'Poppins', sans-serif !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  line-height: 1.3 !important;
  flex: 1;
}
.seo-accord summary .accord-arrow {
  width: 20px;
  height: 20px;
  color: var(--lead);
  flex-shrink: 0;
  transition: transform .25s;
  margin-left: 12px;
}
.seo-accord details[open] summary .accord-arrow { transform: rotate(90deg); }
.seo-accord details[open] summary { border-left-color: var(--lead-dk); }
.seo-accord .accord-body {
  padding: 0 0 24px 16px;
  border-left: 3px solid var(--border);
}
.seo-accord .accord-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin: 18px 0 8px;
}
.seo-accord .accord-body p { font-size: 15px; color: var(--text); margin-bottom: 12px; line-height: 1.75; }
.seo-accord .accord-body ul, .seo-accord .accord-body ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
.seo-accord .accord-body li { font-size: 15px; color: var(--text); margin-bottom: 6px; line-height: 1.65; }

/* ── REVIEWS ─────────────────────────────────────────────────────────────────── */
.reviews-section {
  padding: 80px 0;
  background: var(--page);
}
.reviews-header {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  margin-bottom: 48px;
}
.reviews-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.reviews-grid .col-offset { margin-top: 40px; }
.review-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.review-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.review-stars svg { width: 16px; height: 16px; color: #fbbf24; fill: #fbbf24; }
.review-text {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 16px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lead);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-name {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.review-location { font-size: 12px; color: var(--muted); }

/* ── FAQ SECTION ─────────────────────────────────────────────────────────────── */
.faq-section {
  padding: 80px 0;
  background: var(--canvas);
  border-top: 1px solid var(--border);
}
.faq-layout {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.faq-col {}
.faq-accord details {
  border-bottom: 1px solid var(--border);
}
.faq-accord details:first-child { border-top: 1px solid var(--border); }
.faq-accord summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
}
.faq-accord summary::-webkit-details-marker { display: none; }
.faq-q {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  flex: 1;
}
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lead-lt);
  color: var(--lead);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .25s;
}
.faq-icon svg { width: 12px; height: 12px; }
.faq-accord details[open] summary .faq-icon {
  background: var(--lead);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 0 18px 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Coverage panel (FAQ sticky sidebar) ─────────────────────────────────────── */
.coverage-panel {
  position: sticky;
  top: 90px;
  background: var(--page);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.coverage-head {
  background: var(--navy);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.coverage-head svg { width: 16px; height: 16px; color: var(--lead); flex-shrink: 0; }
.coverage-head-text {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.coverage-body { padding: 18px 20px; }
.coverage-intro {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.5;
}
.coverage-areas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 8px;
  list-style: none;
}
.coverage-areas li {
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 5px;
}
.coverage-areas li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lead);
  flex-shrink: 0;
}
.coverage-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* ── BIG CTA SECTION ─────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--navy);
  padding: 80px 0;
}
.cta-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.cta-p { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: 28px; max-width: 520px; }
.cta-btns { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.btn-cta-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lead);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 999px;
  transition: background .2s, transform .15s;
  text-decoration: none;
}
.btn-cta-solid:hover { background: var(--lead-dk); transform: translateY(-1px); }
.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,.3);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 999px;
  transition: border-color .2s, transform .15s;
  text-decoration: none;
}
.btn-cta-ghost:hover { border-color: #fff; transform: translateY(-1px); }

/* ── CONTACT FORM SECTION ────────────────────────────────────────────────────── */
.contact-section {
  padding: 80px 0;
  background: var(--page);
  border-top: 1px solid var(--border);
}
.contact-layout {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 580px;
  gap: 60px;
  align-items: start;
}
.contact-info { padding-top: 8px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.contact-detail svg { width: 18px; height: 18px; color: var(--lead); flex-shrink: 0; margin-top: 2px; }
.contact-detail-label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 2px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.contact-detail-val { font-size: 16px; color: var(--navy); font-weight: 500; }
.contact-detail-val a { color: inherit; text-decoration: none; }
.contact-detail-val a:hover { color: var(--lead); }

.contact-form-wrap {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--canvas);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--lead);
  box-shadow: 0 0 0 3px rgba(2,132,199,.1);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--lead);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover { background: var(--lead-dk); transform: translateY(-1px); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-msg {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
}
.form-msg.success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; display: block; }
.form-msg.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; display: block; }
.form-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── FOOTER ──────────────────────────────────────────────────────────────────── */
.site-ft {
  background: var(--navy);
  padding: 60px 0 0;
}
.ft-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.ft-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 260px;
}
.ft-col-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-links a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .15s;
}
.ft-links a:hover { color: #fff; }
.ft-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.ft-contact-item svg { width: 15px; height: 15px; color: var(--lead); flex-shrink: 0; margin-top: 2px; }
.ft-contact-item a, .ft-contact-item span {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .15s;
}
.ft-contact-item a:hover { color: #fff; }
.ft-socials { display: flex; gap: 8px; margin-top: 18px; }
.ft-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.ft-socials a:hover { background: var(--lead); color: #fff; }
.ft-socials svg { width: 14px; height: 14px; }

.ft-bar {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ft-copy { font-size: 13px; color: rgba(255,255,255,.35); }
.ft-legal-links { display: flex; gap: 20px; }
.ft-legal-links a { font-size: 13px; color: rgba(255,255,255,.35); transition: color .15s; }
.ft-legal-links a:hover { color: rgba(255,255,255,.7); }

/* ── STICKY CTA ──────────────────────────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lead);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 8px 28px -6px rgba(0,0,0,.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s;
  text-decoration: none;
  cursor: pointer;
}
.sticky-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.sticky-cta.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.sticky-cta:hover { background: var(--lead-dk); }

/* ── BREAKPOINTS ─────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .anchor-layout { grid-template-columns: 1fr; }
  .anchor-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .coverage-panel { position: static; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .checklist-card { max-width: 500px; }
  .svc-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid .col-offset { margin-top: 0; }
  .ft-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
}

@media (max-width: 760px) {
  .nav-phone { display: none; }
}

@media (max-width: 560px) {
  .hero-h1 { font-size: 36px; }
  .hero-section { padding: 50px 0 40px; }
  .anchor-sidebar { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; }
  .sticky-cta span { display: none; }
  .sticky-cta { padding: 14px; border-radius: 50%; }
  .hero-trust-row { gap: 12px; }
  .trust-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
}
