/* ═══════════════════════════════════════════════════════
   Arctic Air Dallas — style.css
   Design system: Minimal · Structured · Confident · Calm
   Spec: SaaS/Apple-level clarity — 14-point rules applied
   ═══════════════════════════════════════════════════════ */

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

/* ── DESIGN TOKENS ──────────────────────────────────── */
:root {
  /* Core colors — max 3 per spec */
  --brand:      #0B1F3B;   /* Deep navy — primary */
  --accent:     #F97316;   /* Modern orange — accent */
  --accent-h:   #EA6C0A;   /* Accent hover (8% darker) */
  --dark-sec:   #0F172A;   /* Dark sections */

  /* Backgrounds */
  --bg:         #FFFFFF;
  --bg-light:   #F8FAFC;   /* Light section bg */

  /* Text — WCAG AA compliant */
  --t1:         #111827;   /* Primary   — 16.1:1 on white */
  --t2:         #4B5563;   /* Secondary — 7.6:1  on white */
  --t3:         #6B7280;   /* Muted     — use only 18px+  */

  /* Borders */
  --border:     #E5E7EB;
  --border-dk:  rgba(255,255,255,0.09);

  /* 8px spacing scale */
  --sp1:  8px;
  --sp2:  16px;
  --sp3:  24px;
  --sp4:  32px;
  --sp5:  48px;
  --sp6:  64px;
  --sp7:  80px;
  --sp8:  120px;

  /* Border radius — consistent everywhere */
  --r:   8px;    /* small: inputs, tags */
  --rm:  12px;   /* medium: cards, buttons */
  --rl:  16px;   /* large: hero card, modals */

  /* Shadows — soft, low opacity */
  --sh-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --sh-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --sh-lg: 0 12px 32px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.04);
  --sh-ac: 0 4px 18px rgba(249,115,22,0.22);

  /* Transitions — 150–300ms ease-in-out only */
  --tf: 150ms ease-in-out;
  --tb: 200ms ease-in-out;
  --ts: 300ms ease-in-out;

  /* Container */
  --max-w: 1160px;
}

/* ── BASE ────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 18px;            /* Body: 16–18px per spec */
  font-weight: 400;
  line-height: 1.65;          /* Body: 1.5–1.7 per spec */
  color: var(--t1);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── LAYOUT UTILITY ──────────────────────────────────── */
.container,
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp4);
}
section { padding: var(--sp7) 0; }  /* 80px desktop */

/* ── TYPOGRAPHY SYSTEM ───────────────────────────────── */
/* Headings: Manrope 600–700, tight tracking, 1.1 line-height */
h1, h2, h3, h4, h5 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--t1);
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
  margin-bottom: var(--sp2);
  display: block;
  text-align: center;
}

/* H2 — 40–48px desktop */
.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--t1);
  margin-bottom: var(--sp2);
  text-align: center;
}

.section-sub {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--t2);
  max-width: 640px;
  margin: 0 auto var(--sp6);
  text-align: center;
}

/* ── FOCUS STATES — WCAG 2.4.7 ──────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r);
}
/* White rings on dark backgrounds */
.nav-cta:focus-visible,
.btn-primary:focus-visible,
.hero-card-cta:focus-visible,
.btn-white:focus-visible,
.form-submit:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* ── BUTTON SYSTEM ───────────────────────────────────── */
/* Primary */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp1);
  background: var(--accent);
  color: #fff;
  padding: 15px 26px;        /* 14–20px vertical, 20–28px horizontal */
  border-radius: var(--rm);  /* 8–12px per spec */
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: var(--sh-ac);
  transition: background var(--tb), transform var(--tb), box-shadow var(--tb);
  white-space: nowrap;
  cursor: pointer;
  min-height: 48px;          /* 44px+ touch target */
}
.btn-primary:hover   { background: var(--accent-h); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(249,115,22,0.32); }
.btn-primary:active  { transform: scale(0.98); box-shadow: none; }
.btn-primary:disabled { opacity: 0.5; pointer-events: none; }

/* Secondary / ghost */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--brand);
  padding: 13px 24px;
  border-radius: var(--rm);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 2px solid var(--border);
  transition: border-color var(--tb), background var(--tb), color var(--tb);
  white-space: nowrap;
  min-height: 48px;
}
.btn-ghost:hover  { border-color: var(--brand); background: var(--bg-light); }
.btn-ghost:active { transform: scale(0.98); }

/* White (for dark/accent backgrounds) */
.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--accent);
  padding: 15px 32px;
  border-radius: var(--rm);
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 4px 14px rgba(0,0,0,0.14);
  transition: transform var(--tb), box-shadow var(--tb);
  min-height: 48px;
}
.btn-white:hover  { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.btn-white:active { transform: scale(0.98); }

/* ── NAVIGATION ──────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  background: var(--brand);
  display: flex;
  align-items: center;
  transition: box-shadow var(--tb);
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.25); }

.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp4);
}

.nav-logo {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: var(--sp4);
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: var(--sp1) 0;     /* tap zone height */
  transition: color var(--tf);
  white-space: nowrap;
}
.nav-link:hover { color: #fff; }

.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--r);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  flex-shrink: 0;
  transition: background var(--tf);
  min-height: 40px;
  display: flex; align-items: center;
}
.nav-cta:hover { background: var(--accent-h); }

/* Hamburger */
.nav-hamburger {
  display: none;
  background: transparent;
  border: none;
  padding: var(--sp1);
  gap: 5px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;  /* 44px min tap target */
  border-radius: var(--r);
  transition: background var(--tf);
}
.nav-hamburger:hover { background: rgba(255,255,255,0.08); }
.nav-hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--tb), opacity var(--tb);
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(300px, 88vw);
  height: 100vh;
  background: #FFFFFF;
  color: #111827;
  z-index: 300;
  transform: translateX(100%);
  transition: transform var(--ts);
  box-shadow: -4px 0 32px rgba(0,0,0,0.25);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-inner {
  display: flex;
  flex-direction: column;
  padding: var(--sp3);
  padding-top: 72px;
  height: 100%;
  background: #FFFFFF;
  overflow-y: auto;
}
.mobile-drawer-close {
  position: absolute;
  top: 12px; right: 12px;
  background: #F3F4F6;
  border: none;
  font-size: 1rem;
  color: #374151;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--tf);
  cursor: pointer;
  z-index: 1;
}
.mobile-drawer-close:hover { background: var(--bg-light); color: var(--t1); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  padding-top: var(--sp2);
}
.mobile-nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #111827 !important;
  text-decoration: none;
  padding: 18px var(--sp2);
  border-bottom: 1px solid #F3F4F6;
  min-height: 56px;
  display: flex;
  align-items: center;
  background: transparent;
  width: 100%;
  transition: color var(--tf), background var(--tf);
}
.mobile-nav-link:hover { background: #FFF7ED; color: #F97316 !important; }
.mobile-nav-cta {
  background: var(--accent);
  color: #fff;
  padding: var(--sp3) var(--sp3);
  border-radius: var(--rm);
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  min-height: 56px;
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp1);
  transition: background var(--tf);
  box-shadow: var(--sh-ac);
  margin-top: auto;
  margin-bottom: var(--sp3);
}
.mobile-nav-cta:hover { background: var(--accent-h); }

/* Overlay */
.mobile-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.75);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  padding-top: 64px;
  background: var(--bg-light);
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}
.hero-main {
  margin-bottom: 0;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--sp7);
  align-items: center;
  padding: var(--sp5) var(--sp4);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp1);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp3);
}
.hero-tag::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* H1 — 56–64px desktop */
.hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--t1);
  margin-bottom: var(--sp3);
}
.hero h1 .accent { color: var(--accent); }

.hero-desc {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--t2);
  max-width: 500px;
  margin-bottom: var(--sp5);
}

.hero-actions {
  display: flex;
  gap: var(--sp2);
  flex-wrap: wrap;
  margin-bottom: var(--sp5);
}

.hero-badges {
  display: flex;
  gap: var(--sp3);
  align-items: center;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--t2);
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* HERO CARD */
.hero-card {
  background: var(--brand);
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.hero-card-head {
  padding: var(--sp2) var(--sp3);
  border-bottom: 1px solid var(--border-dk);
  display: flex;
  align-items: center;
  gap: var(--sp1);
}
.hero-card-head-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-left: var(--sp1);
}
.card-dot { width: 9px; height: 9px; border-radius: 50%; }
.dot-red    { background: #F87171; }
.dot-yellow { background: #FBBF24; }
.dot-green  { background: #4ADE80; }

.process-step {
  padding: var(--sp3);
  border-bottom: 1px solid var(--border-dk);
  display: flex;
  gap: var(--sp2);
  align-items: flex-start;
  transition: background var(--tf);
}
.process-step:hover { background: rgba(255,255,255,0.03); }
.process-step:last-of-type { border-bottom: none; }

.step-num {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  min-width: 30px;
  flex-shrink: 0;
}
.step-content strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
  line-height: 1.3;
}
.step-content span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.hero-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: var(--sp2) var(--sp3);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background var(--tf);
  min-height: 52px;
}
.hero-card-cta:hover { background: var(--accent-h); }

/* TRUST BAR */
.trust-bar {
  background: var(--brand);
  border-top: 1px solid var(--border-dk);
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp4);
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
}
.trust-item {
  padding: var(--sp2) var(--sp3);
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  border-right: 1px solid var(--border-dk);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-item:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.trust-item strong { color: #fff; font-weight: 600; }



/* ── MOBILE HERO CARD ── */
.hero-card-mobile {
  display: none;
  background: var(--brand);
  border-radius: var(--rm);
  overflow: hidden;
  margin-top: var(--sp3);
}
.mobile-steps {
  padding: var(--sp2) 0;
}
.mobile-step {
  display: flex;
  align-items: center;
  gap: var(--sp2);
  padding: 14px var(--sp3);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-step:last-child { border-bottom: none; }
.mobile-step-num {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent);
  min-width: 28px;
  flex-shrink: 0;
}
.mobile-step-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.mobile-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: var(--sp2) var(--sp3);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  min-height: 52px;
  transition: background var(--tf);
}
.mobile-card-cta:hover { background: var(--accent-h); }

/* ── PHOTO STRIP ─────────────────────────────────────── */
.photo-strip { overflow: hidden; }
.photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  height: 320px;
}
.photo-cell { overflow: hidden; }
.photo-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.85);
  transition: transform var(--ts);
}
.photo-cell:hover img { transform: scale(1.03); }
.photo-cell + .photo-cell { border-left: 3px solid #fff; }

/* ── HOW IT WORKS ────────────────────────────────────── */
.how { background: var(--bg); }
.how .section-inner { text-align: center; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp3);
}

/* Card system — white bg, r-md, soft shadow, hover lift */
.step-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--rm);   /* 12px per spec */
  padding: var(--sp4);        /* 24–32px per spec */
  position: relative;
  overflow: hidden;
  transition: transform var(--tb), box-shadow var(--tb), border-color var(--tb);
}
.step-card:hover {
  transform: translateY(-3px);  /* 2–4px per spec */
  box-shadow: var(--sh-md);
  border-color: transparent;
}
.step-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: var(--rm) var(--rm) 0 0;
}
.step-big-num {
  font-family: 'Manrope', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #D1DCE8;
  line-height: 1;
  margin-bottom: var(--sp2);
  user-select: none;
}
.step-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;          /* H3 range */
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--t1);
  margin-bottom: var(--sp1);
}
.step-card p {
  font-size: 0.93rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--t2);
}

/* ── FEAR / QUESTIONS ────────────────────────────────── */
.fear { background: var(--bg-light); }
.fear-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp3);
}
.fear-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--rm);
  padding: var(--sp4);
  transition: transform var(--tb), box-shadow var(--tb), border-color var(--tb);
}
.fear-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}
.fear-q {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp1);
}
.fear-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--t1);
  margin-bottom: var(--sp1);
}
.fear-card p {
  font-size: 0.93rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--t2);
}

/* ── REVIEWS ─────────────────────────────────────────── */
.reviews { background: var(--bg); }
.reviews-header {
  text-align: center;
  margin-bottom: var(--sp5);
}
.google-badge {
  display: flex;
  align-items: center;
  gap: var(--sp2);
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--rm);
  padding: var(--sp2) var(--sp3);
  text-decoration: none;
  transition: border-color var(--tf), box-shadow var(--tf);
}
.google-badge:hover { border-color: var(--brand); box-shadow: var(--sh-sm); }
.google-badge-rating {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--t1);
  line-height: 1;
}
.google-badge-stars { color: #F59E0B; font-size: 0.95rem; }
.google-badge-label { font-size: 0.82rem; color: var(--t2); line-height: 1.5; }
.google-badge-label strong { display: block; color: var(--t1); font-weight: 600; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp3);
  margin-bottom: var(--sp4);
}
.review-card {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--rm);
  padding: var(--sp4);
  transition: transform var(--tb), box-shadow var(--tb), border-color var(--tb);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}
.review-stars { color: #F59E0B; font-size: 0.9rem; margin-bottom: var(--sp2); }
.review-text {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--t1);
  font-style: italic;
  margin-bottom: var(--sp2);
}
.review-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.see-all-reviews {
  display: inline-flex;
  align-items: center;
  gap: var(--sp1);
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap var(--tf);
}
.see-all-reviews:hover { gap: var(--sp2); }
.see-all-reviews::after { content: '→'; }

/* ── PRICING ─────────────────────────────────────────── */
.pricing { background: var(--dark-sec); }
.pricing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp7);
  align-items: center;
}
.pricing .section-label { color: rgba(255,255,255,0.4); }
.pricing .section-title { color: #fff; }
.pricing .section-sub   { color: rgba(255,255,255,0.55); margin-bottom: 0; }

.pricing-list { list-style: none; }
.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp2);
  padding: var(--sp2) 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.97rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-check {
  width: 20px; height: 20px;
  flex-shrink: 0;
  border: 1.5px solid rgba(249,115,22,0.45);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  color: var(--accent);
  margin-top: 2px;
}
.pricing-quote {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--rl);
  padding: var(--sp5);
}
.pricing-quote-mark {
  font-family: 'Manrope', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.2;
  line-height: 0.8;
  margin-bottom: var(--sp2);
}
.pricing-quote blockquote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  font-style: italic;
  margin-bottom: var(--sp2);
}
.pricing-quote cite {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── GUARANTEE ───────────────────────────────────────── */
.guarantee {
  background: var(--bg-light);
  border-top: 3px solid var(--accent);
  padding: var(--sp7) 0;
}
.guarantee-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp4);
}
.guarantee-left { text-align: center; align-self: center; display: flex; flex-direction: column; align-items: center; }
.guarantee-icon { font-size: 2.8rem; display: block; margin-bottom: var(--sp2); }
.guarantee-badge {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
}
.guarantee-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--t1);
  margin-bottom: var(--sp4);
  text-align: center;
}
.guarantee-items { display: flex; flex-direction: column; gap: var(--sp2); width: 100%; max-width: 640px; }

.guarantee-item {
  display: flex;
  gap: var(--sp2);
  align-items: flex-start;
  padding: var(--sp3);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--rm);
  transition: transform var(--tb), box-shadow var(--tb);
}
.guarantee-item:hover { transform: translateY(-2px); box-shadow: var(--sh-sm); }
.guarantee-item-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.guarantee-item-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 4px;
}
.guarantee-item-text span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--t2);
  line-height: 1.6;
}
.guarantee-sub {
  display: block;
  width: 100%;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--sp3);
  opacity: 0.9;
  text-align: center;
}

/* ── CONTACT FORM ────────────────────────────────────── */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp7);
  align-items: start;
}
.contact-info p {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--t2);
  margin-bottom: var(--sp4);
}
.contact-detail {
  display: flex;
  gap: var(--sp2);
  align-items: flex-start;
  margin-bottom: var(--sp3);
}
.contact-detail-icon { font-size: 1.15rem; margin-top: 2px; flex-shrink: 0; }
.contact-detail-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 4px;
}
.contact-detail-text span { font-size: 1rem; font-weight: 400; color: var(--t2); }
.contact-detail-text a { color: var(--accent); text-decoration: none; }
.contact-detail-text a:hover { text-decoration: underline; }

.contact-form { display: flex; flex-direction: column; gap: var(--sp2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp2); }
.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 14px;          /* 14px minimum per spec */
  font-weight: 600;
  color: var(--t1);
}
.label-optional { font-weight: 400; color: var(--t3); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px var(--sp2);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--t1);
  background: var(--bg);
  transition: border-color var(--tf), box-shadow var(--tf);
  outline: none;
  -webkit-appearance: none;
  min-height: 48px;         /* 44px+ touch target */
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9CA3AF; }
.form-group textarea { resize: vertical; min-height: 120px; min-height: unset; }
.form-group.full { grid-column: 1 / -1; }

.form-submit {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--rm);
  padding: 16px var(--sp4);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--sh-ac);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp1);
  min-height: 52px;
  transition: background var(--tb), transform var(--tb), box-shadow var(--tb);
}
.form-submit:hover   { background: var(--accent-h); transform: translateY(-1px); }
.form-submit:active  { transform: scale(0.98); box-shadow: none; }
.form-submit:disabled { opacity: 0.5; pointer-events: none; }

.btn-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.form-submit.loading .btn-spinner { display: block; }
.form-submit.loading .btn-label   { opacity: 0.7; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  background: #F0FDF4;
  border: 1.5px solid #86EFAC;
  border-radius: var(--rm);
  padding: var(--sp3) var(--sp4);
  color: #15803D;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: var(--sp1);
  line-height: 1.5;
}
.form-error {
  background: #FFF7ED;
  border: 1.5px solid var(--accent);
  border-radius: var(--rm);
  padding: var(--sp3) var(--sp4);
  color: var(--accent-h);
  font-size: 0.93rem;
  line-height: 1.5;
}

/* ── FINAL CTA ───────────────────────────────────────── */
.final-cta {
  background: var(--accent);
  padding: var(--sp7) 0;
  text-align: center;
}
.final-cta h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--sp2);
}
.final-cta p {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto var(--sp5);
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--brand);
  border-top: 1px solid var(--border-dk);
  padding: var(--sp7) 0 var(--sp5);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp4); }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp7);
  padding-bottom: var(--sp5);
  border-bottom: 1px solid var(--border-dk);
  margin-bottom: var(--sp4);
}
.footer-brand-name {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: var(--sp2);
}
.footer-brand-name span { color: var(--accent); }
.footer-tagline {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: var(--sp3);
}
.footer-social { display: flex; gap: var(--sp1); margin-top: var(--sp1); }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  transition: border-color var(--tf), color var(--tf), background var(--tf);
}
.social-link:hover { border-color: var(--accent); color: var(--accent); background: rgba(249,115,22,0.08); }

.footer-col-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--sp2);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 2px; }
.footer-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding: 6px 0;             /* spacing between clickable elements */
  display: block;
  transition: color var(--tf);
}
.footer-links a:hover { color: #fff; }

.footer-contact-item {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  padding: 5px 0;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--tf);
}
.footer-contact-item a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp2);
}
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-google {
  display: flex;
  align-items: center;
  gap: var(--sp1);
  text-decoration: none;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--tf);
}
.footer-google:hover { color: rgba(255,255,255,0.7); }
.footer-google-stars { color: #F59E0B; }

/* ── STICKY CALL (MOBILE ONLY) ───────────────────────── */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 24px; right: 20px; z-index: 50;
  background: var(--accent);
  color: #fff;
  width: 56px; height: 56px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.4rem;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-ac);
  transition: transform var(--tf);
}
/* Expand tap area without visual change */
.sticky-call::after { content: ''; position: absolute; inset: -8px; border-radius: 50%; }
.sticky-call:hover { transform: scale(1.05); }
.sticky-call.pulse {
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 4px 16px rgba(249,115,22,0.35); }
  50%      { box-shadow: 0 4px 28px rgba(249,115,22,0.65); }
}

/* ── ANIMATIONS — max 300ms ease-in-out ─────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-1 { animation: fadeUp 0.3s 0.00s ease-in-out both; }
.anim-2 { animation: fadeUp 0.3s 0.07s ease-in-out both; }
.anim-3 { animation: fadeUp 0.3s 0.14s ease-in-out both; }
.anim-4 { animation: fadeUp 0.3s 0.21s ease-in-out both; }
.anim-5 { animation: fadeUp 0.3s 0.28s ease-in-out both; }
.anim-6 { animation: fadeUp 0.3s 0.10s ease-in-out both; }

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
   Mobile: 48–64px section padding
   Single column, large tap targets, no cramped text
   ═══════════════════════════════════════════════════════ */

@media (max-width: 960px) {
  .hero-main           { grid-template-columns: 1fr; gap: var(--sp5); }
  .hero-card           { display: none; }
  .steps-grid          { grid-template-columns: 1fr; }
  .fear-grid           { grid-template-columns: 1fr; }
  .reviews-grid        { grid-template-columns: 1fr; }
  .pricing-inner       { grid-template-columns: 1fr; gap: var(--sp5); }
  .footer-top          { grid-template-columns: 1fr; gap: var(--sp4); }
  .trust-bar-inner     { flex-direction: column; gap: 0; padding: var(--sp3) var(--sp4); align-items: flex-start; }
  .trust-item          { border-right: none; padding-right: 0; margin-right: 0; padding: 8px 0; font-size: 1rem; }
  .photo-grid          { grid-template-columns: 1fr; height: 240px; }
  .photo-cell + .photo-cell { display: none; }
  .sticky-call         { display: flex; }
  .reviews-header      { flex-direction: column; align-items: flex-start; }
  .guarantee-inner     { grid-template-columns: 1fr; gap: var(--sp4); }
  .guarantee-left      { display: flex; align-items: center; gap: var(--sp2); text-align: left; }
  .contact-grid        { grid-template-columns: 1fr; gap: var(--sp5); }
  .form-row            { grid-template-columns: 1fr; }
  .hero-card-mobile    { display: block; }
  .nav-links           { display: none; }
  .nav-hamburger       { display: flex; }
  .nav-cta             { display: none; }  /* phone # in drawer on mobile */
}

@media (max-width: 600px) {
  body             { font-size: 16px; }
  .trust-bar        { margin-bottom: 0; }
  .photo-strip      { margin-top: 0; }
  section          { padding: var(--sp6) 0; }  /* 64px mobile */
  .container,
  .section-inner   { padding: 0 var(--sp3); }
  .hero h1         { font-size: 2.1rem; }
  .hero-actions    { flex-direction: column; }
  .btn-primary,
  .btn-ghost       { justify-content: center; }
  .btn-ghost       { display: none; }  /* single primary CTA on mobile */
  .hero-badges     { gap: var(--sp2); }
  .hero-main       { padding: var(--sp4) var(--sp3); }
  .nav-inner       { padding: 0 var(--sp3); }
  .footer-inner    { padding: 0 var(--sp3); }
}

/* When drawer open, dim nav too */
body.drawer-open nav {
  z-index: 50;
}

/* ── REVIEWS UPGRADE ─────────────────────────────────── */

/* Google summary bar */
.google-summary {
  display: flex;
  align-items: center;
  gap: var(--sp5);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--rm);
  padding: var(--sp4);
  margin-bottom: var(--sp5);
  flex-wrap: wrap;
}
.google-summary-left {
  display: flex;
  align-items: center;
  gap: var(--sp3);
  flex-shrink: 0;
}
.google-summary-score { display: flex; flex-direction: column; gap: 3px; }
.google-big-rating {
  font-family: 'Manrope', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--t1);
  line-height: 1;
}
.google-stars-row { color: #F59E0B; font-size: 1rem; letter-spacing: 1px; }
.google-review-count { font-size: 0.82rem; color: var(--t2); font-weight: 500; }

.google-summary-divider {
  width: 1px; height: 56px;
  background: var(--border);
  flex-shrink: 0;
}
.google-summary-right { flex: 1; min-width: 200px; }
.google-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #16A34A;
  margin-bottom: var(--sp1);
}
.google-summary-text {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--t2);
  line-height: 1.5;
  margin: 0;
}

/* Review cards — upgraded */
.review-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--rm);
  padding: var(--sp4);
  display: flex;
  flex-direction: column;
  gap: var(--sp2);
  transition: transform var(--tb), box-shadow var(--tb), border-color var(--tb);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}
.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reviewer-info {
  display: flex;
  align-items: center;
  gap: var(--sp2);
}
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reviewer-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--t1);
  line-height: 1.2;
}
.reviewer-location {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--t3);
}
.review-card-g { flex-shrink: 0; }
.review-stars { color: #F59E0B; font-size: 0.95rem; letter-spacing: 1px; }
.review-text {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--t1);
  flex: 1;
  margin: 0;
}
.review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp2);
  border-top: 1px solid var(--border);
}
.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #16A34A;
}
.review-date {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--t3);
}

/* Two action buttons */
.review-actions {
  display: flex;
  gap: var(--sp2);
  align-items: center;
  flex-wrap: wrap;
  margin-top: var(--sp4);
  justify-content: center;
}
.btn-google-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #4285F4;
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--tf), transform var(--tb);
  min-height: 48px;
}
.btn-google-view:hover { background: #2b6fd4; transform: translateY(-1px); }

.btn-write-review {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FBBF24;
  color: #111827;
  padding: 14px 24px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--tf), transform var(--tb);
  min-height: 48px;
}
.btn-write-review:hover { background: #F59E0B; transform: translateY(-1px); }

/* Mobile */
@media (max-width: 600px) {
  .google-summary        { flex-direction: column; align-items: flex-start; gap: var(--sp3); }
  .google-summary-divider { width: 100%; height: 1px; }
  .review-actions        { flex-direction: column; }
  .btn-google-view,
  .btn-write-review      { width: 100%; justify-content: center; }
}

/* ── CENTER ALL SECTION HEADERS ─────────────────────── */
.section-inner { text-align: center; }

/* Restore left-align for card/grid content — only headers center */
.step-card,
.fear-card,
.review-card,
.guarantee-item,
.contact-info,
.contact-form,
.pricing-inner,
.footer-inner { text-align: left; }

/* Contact info left */
.contact-info .section-title,
.contact-info .section-label { text-align: left; }

/* Pricing section left */
.pricing .section-title,
.pricing .section-label,
.pricing .section-sub { text-align: left; margin-left: 0; }