/* ==========================================================================
   AO MECHANICAL — Google Ads Landing Page
   Stylesheet by Altura Marketing Group
   --------------------------------------------------------------------------
   HOW TO REBRAND THIS PAGE:
   Every color, font and radius lives in the :root block below.
   Drop the real logo colors into --brand / --navy / --accent and the whole
   page updates. Nothing else needs to change.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS  (edit these to rebrand)
   -------------------------------------------------------------------------- */
:root {
  /* Brand — pull these from the client logo when it arrives */
  --ink:        #0A1B2E;   /* darkest navy — primary headings */
  --navy:       #0C2C52;   /* brand dark — hero, footer, headers */
  --navy-700:   #0A2444;   /* deeper navy — hero gradient base */
  --brand:      #0E63C4;   /* primary brand blue — links, secondary buttons */
  --brand-600:  #0A4E9E;   /* brand blue hover */
  --brand-050:  #EAF2FD;   /* pale blue tint — soft backgrounds */
  --brand-100:  #D6E6FB;

  /* Conversion accent — the color that gets clicked. High contrast on blue.
     Pulled from the Alpha Omega logo flame. */
  --accent:     #FF7105;   /* CTA orange — logo flame */
  --accent-600: #E85F00;   /* CTA orange hover */
  --accent-050: #FFF1E5;

  /* Droplet cyan — from the logo water drop. Highlights/flourishes only,
     not for text on white (too light). */
  --cyan:       #12B9FF;
  --cyan-600:   #0E93CC;

  --emergency:  #E5484D;   /* 24/7 emergency red */
  --emergency-050: #FDECEC;

  /* Neutrals */
  --surface:    #FFFFFF;
  --surface-2:  #F4F8FD;   /* alternating section background */
  --surface-3:  #EEF3F9;
  --line:       #E1E8F0;   /* hairline borders */
  --text:       #1C2B3A;   /* body text */
  --muted:      #57687C;   /* secondary text */
  --star:       #F5B01A;   /* review stars */

  /* Typography */
  --font-display: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Radius */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows — soft, layered */
  --shadow-sm: 0 1px 2px rgba(12,44,82,.06), 0 2px 6px rgba(12,44,82,.06);
  --shadow:    0 6px 18px rgba(12,44,82,.08), 0 2px 6px rgba(12,44,82,.05);
  --shadow-lg: 0 20px 50px rgba(12,44,82,.14), 0 6px 16px rgba(12,44,82,.08);
  --shadow-accent: 0 10px 24px rgba(255,113,5,.35);

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(18px, 4vw, 40px);
  --header-h: 72px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
}

/* Accessible focus states */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 6px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--accent); color: #fff; padding: 12px 18px;
  border-radius: var(--r-sm); font-weight: 600; z-index: 200;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* --------------------------------------------------------------------------
   3. LAYOUT HELPERS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tint { background: var(--surface-2); }
.section--navy { background: var(--navy); color: #EAF1FA; }
.section--navy h2, .section--navy h3 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 700; font-size: .82rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px;
}
.section--navy .eyebrow { color: #7FB4F5; }

h2.section-title { font-size: clamp(1.9rem, 4.4vw, 3rem); }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-top: 14px; }
.section--navy .section-head p { color: #B9CBE0; }

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 1.02rem;
  padding: 15px 26px; border-radius: var(--r-pill);
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease;
  text-align: center; line-height: 1.1; white-space: nowrap;
  min-height: 52px;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--accent { background: var(--accent); color: #fff; box-shadow: var(--shadow-accent); }
.btn--accent:hover { background: var(--accent-600); }

.btn--call { background: #fff; color: var(--navy); box-shadow: var(--shadow); border: 1.5px solid var(--line); }
.btn--call:hover { border-color: var(--brand-100); background: var(--brand-050); }

.btn--brand { background: var(--brand); color: #fff; box-shadow: var(--shadow); }
.btn--brand:hover { background: var(--brand-600); }

.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.28); }
.btn--ghost:hover { background: rgba(255,255,255,.16); }

.btn--lg { padding: 18px 34px; font-size: 1.1rem; min-height: 60px; }
.btn--block { width: 100%; }

/* --------------------------------------------------------------------------
   5. HEADER (sticky)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow); border-bottom-color: var(--line); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; height: var(--header-h);
}

/* Logo — swap the .brand-mark markup with the client <img> logo when supplied */
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand), var(--navy));
  display: grid; place-items: center; color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
  letter-spacing: -.03em; box-shadow: var(--shadow-sm);
}
/* Emblem logo image (flame + omega mark cut from the client logo) */
.brand-mark-img {
  height: 46px; width: auto; flex-shrink: 0; display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.18));
}
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name b { font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; color: var(--ink); letter-spacing: -.02em; }
.brand-name span { font-size: .72rem; color: var(--muted); font-weight: 600; letter-spacing: .04em; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 800; color: var(--navy); font-size: 1.05rem;
  padding: 8px 6px;
}
.header-phone svg { width: 20px; height: 20px; color: var(--brand); }
.header-phone small { display: block; font-size: .66rem; font-weight: 600; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.header-phone .ph-num { line-height: 1; }

/* Hide the full phone label on small screens, keep the estimate button */
@media (max-width: 720px) {
  .header-phone .ph-text { display: none; }
  .header-actions .btn { padding: 12px 18px; font-size: .95rem; min-height: 46px; }
}
@media (max-width: 600px) {
  .brand-mark-img { height: 38px; }
  .brand-name b { font-size: .98rem; max-width: 8.5em; }
}
@media (max-width: 400px) {
  .brand-name span { display: none; }
  .brand-name b { font-size: .92rem; }
}

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(14,99,196,.28), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-700) 55%, #071A33 100%);
  color: #EAF1FA;
  overflow: hidden;
  padding-block: clamp(40px, 6vw, 76px);
}
/* subtle pipe-line texture */
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 40%, transparent 78%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

/* Hero background photo (desktop): full-bleed behind the content, with a
   navy scrim heaviest on the left so the white headline stays readable.
   On mobile it becomes a banner at the top instead — see the media query. */
.hero-photo { position: absolute; inset: 0; z-index: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; display: block; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(8,24,48,.95) 0%, rgba(8,24,48,.88) 28%, rgba(8,24,48,.60) 58%, rgba(8,24,48,.44) 100%),
    linear-gradient(0deg, rgba(7,20,40,.55), rgba(7,20,40,0) 42%);
}
.hero h1, .hero-sub { text-shadow: 0 2px 16px rgba(4,12,28,.5); }

.hero-grid {
  display: grid; gap: clamp(32px, 5vw, 56px);
  grid-template-columns: 1.05fr .95fr; align-items: center;
}
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }

/* Mobile: don't hide the photo behind the form. The photo becomes a 16:9
   banner at the top of the hero; headline + badges + form sit on the solid
   navy background below it (same pattern as the LeMaster hero). */
@media (max-width: 760px) {
  .hero { padding-top: 0; }
  .hero-photo {
    position: relative; inset: auto; width: 100%;
    aspect-ratio: 16 / 9; z-index: 0;
    margin-bottom: clamp(22px, 6vw, 34px);
  }
  .hero-photo img { object-position: 50% 42%; }
  .hero-photo::after {
    background: linear-gradient(0deg, var(--navy) 1%, rgba(12,44,82,0) 34%);
  }
  .hero .container { padding-top: 0; }
  .hero h1, .hero-sub { text-shadow: none; }
}

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16);
  padding: 7px 13px; border-radius: var(--r-pill);
  font-size: .82rem; font-weight: 600; color: #DCE8F6;
}
.hero-badge svg { width: 15px; height: 15px; color: #6FE0A6; }
.hero-badge--emergency { background: rgba(229,72,77,.16); border-color: rgba(229,72,77,.4); color: #FFD3D4; }
.hero-badge--emergency svg { color: #FF8A8D; }

.hero h1 {
  color: #fff;
  font-size: clamp(2.15rem, 5.3vw, 3.6rem);
  font-weight: 800; letter-spacing: -.025em;
  margin-bottom: 18px;
}
.hero h1 .hl { color: #FFB877; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.22rem); color: #C6D6E8; max-width: 560px; margin-bottom: 26px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }

.hero-proof { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-stars { display: inline-flex; align-items: center; gap: 8px; }
.hero-stars .stars { display: inline-flex; gap: 2px; }
.hero-stars svg { width: 18px; height: 18px; color: var(--star); }
.hero-stars b { color: #fff; }
.hero-proof-text { font-size: .92rem; color: #B9CBE0; }
.hero-proof .divider { width: 1px; height: 26px; background: rgba(255,255,255,.18); }

/* Hero quote form card */
.quote-card {
  background: #fff; color: var(--text);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 30px);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.6);
}
.quote-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.quote-card__badge {
  background: var(--accent-050); color: var(--accent-600);
  font-weight: 700; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 11px; border-radius: var(--r-pill);
}
.quote-card h2 { font-size: 1.5rem; color: var(--ink); margin-bottom: 4px; }
.quote-card p.lede { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }
.quote-card .form-note { text-align: center; font-size: .8rem; color: var(--muted); margin-top: 12px; }
.quote-card .form-note svg { width: 14px; height: 14px; display: inline; vertical-align: -2px; color: #35B37E; }

/* --------------------------------------------------------------------------
   7. FORMS  (shared by hero + final CTA)
   -------------------------------------------------------------------------- */
.ao-form { display: grid; gap: 12px; }
.form-row { display: grid; gap: 12px; }
.form-row.cols-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 480px) { .form-row.cols-2 { grid-template-columns: 1fr; } }

.field { display: grid; gap: 6px; position: relative; }
.field > label { font-size: .82rem; font-weight: 600; color: var(--text); }
.field > label .req { color: var(--emergency); }

.ao-form input,
.ao-form select,
.ao-form textarea {
  width: 100%;
  font-family: inherit; font-size: 1rem; color: var(--text);
  padding: 13px 15px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.ao-form input::placeholder, .ao-form textarea::placeholder { color: #93A2B4; }
.ao-form input:focus, .ao-form select:focus, .ao-form textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(14,99,196,.14);
}
.ao-form select { appearance: none; -webkit-appearance: none; background-image:
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2357687C' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.ao-form textarea { resize: vertical; min-height: 96px; }

/* Validation states */
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: var(--emergency); box-shadow: 0 0 0 4px rgba(229,72,77,.12);
}
.field .error-msg { font-size: .78rem; color: var(--emergency); font-weight: 600; display: none; }
.field.has-error .error-msg { display: block; }

/* Form-level status message */
.form-status {
  display: none; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: var(--r-sm);
  font-size: .9rem; font-weight: 600;
}
.form-status.is-visible { display: flex; }
.form-status.is-error { background: var(--emergency-050); color: #B4262A; }
.form-status svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Loading spinner on submit button */
.btn.is-loading { pointer-events: none; opacity: .85; }
.btn .spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.4); border-top-color: #fff;
  animation: spin .7s linear infinite; display: none;
}
.btn.is-loading .spinner { display: inline-block; }
.btn.is-loading .btn-label { opacity: .9; }
@keyframes spin { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------------------
   8. TRUST STRIP + CARDS
   -------------------------------------------------------------------------- */
.trust-strip { background: var(--surface); border-bottom: 1px solid var(--line); }
.trust-strip .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(18px, 4vw, 48px); padding-block: 22px;
}
.trust-item { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: .94rem; color: var(--navy); }
.trust-item svg { width: 22px; height: 22px; color: var(--brand); flex-shrink: 0; }
.trust-item small { color: var(--muted); font-weight: 500; }

.trust-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 860px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .trust-grid { grid-template-columns: 1fr; } }

.trust-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: 26px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand-100); }
.trust-card .ic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--brand-050); color: var(--brand); margin-bottom: 16px;
}
.trust-card .ic svg { width: 26px; height: 26px; }
.trust-card h3 { font-size: 1.16rem; margin-bottom: 8px; }
.trust-card p { color: var(--muted); font-size: .96rem; }

/* --------------------------------------------------------------------------
   9. SERVICES
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1040px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px 24px;
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  overflow: hidden;
}
.service-card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }

.service-card .ic {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand-050), #fff);
  border: 1px solid var(--brand-100); color: var(--brand); margin-bottom: 16px;
}
.service-card .ic svg { width: 28px; height: 28px; }
.service-card.is-emergency .ic { background: var(--emergency-050); border-color: #F6C9CB; color: var(--emergency); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: .95rem; margin-bottom: 14px; }
.service-card .benefits { display: grid; gap: 7px; margin-bottom: 18px; }
.service-card .benefits li { display: flex; gap: 9px; align-items: flex-start; font-size: .9rem; color: var(--text); }
.service-card .benefits svg { width: 17px; height: 17px; color: #35B37E; flex-shrink: 0; margin-top: 2px; }
.service-card .svc-cta {
  margin-top: auto; display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; color: var(--brand); font-size: .94rem;
}
.service-card .svc-cta svg { width: 17px; height: 17px; transition: transform .2s ease; }
.service-card:hover .svc-cta svg { transform: translateX(4px); }
.service-card .emergency-tag {
  position: absolute; top: 18px; right: 18px;
  background: var(--emergency); color: #fff; font-size: .68rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; padding: 5px 10px; border-radius: var(--r-pill);
}

/* --------------------------------------------------------------------------
   10. WHY CHOOSE (split feature)
   -------------------------------------------------------------------------- */
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

.why-media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  min-height: 420px; box-shadow: var(--shadow-lg);
}
.why-list { display: grid; gap: 20px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item .ic {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center;
  background: var(--brand-050); color: var(--brand);
}
.why-item .ic svg { width: 23px; height: 23px; }
.why-item h3 { font-size: 1.1rem; margin-bottom: 4px; }
.why-item p { color: var(--muted); font-size: .95rem; }

/* --------------------------------------------------------------------------
   11. PROCESS TIMELINE
   -------------------------------------------------------------------------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
@media (max-width: 860px) { .process-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 22px; } }
@media (max-width: 460px) { .process-grid { grid-template-columns: 1fr; } }

.process-step { position: relative; text-align: center; }
.process-step .num {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px;
  display: grid; place-items: center;
  background: #fff; border: 2px solid var(--brand-100);
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--brand);
  position: relative; z-index: 2;
}
.section--navy .process-step .num { background: rgba(255,255,255,.06); border-color: rgba(127,180,245,.5); color: #9CCBFF; }
.process-step .ic { color: var(--accent); margin: 0 auto 12px; }
.process-step .ic svg { width: 26px; height: 26px; }
.process-step h3 { font-size: 1.08rem; margin-bottom: 6px; color: #fff; }
.process-step p { font-size: .9rem; color: #B9CBE0; }
/* connecting line */
.process-grid::before {
  content: ""; position: absolute; top: 32px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(127,180,245,.5) 0 10px, transparent 10px 20px);
  z-index: 1;
}
@media (max-width: 860px) { .process-grid::before { display: none; } }

/* --------------------------------------------------------------------------
   12. BEFORE / AFTER SLIDER
   -------------------------------------------------------------------------- */
.ba-wrap { max-width: 860px; margin-inline: auto; }
.ba-slider {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 16 / 10; box-shadow: var(--shadow-lg); user-select: none;
  touch-action: pan-y; cursor: ew-resize; background: var(--surface-3);
}
.ba-slider .ba-img { position: absolute; inset: 0; width: 100%; height: 100%; }
.ba-slider .ba-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-media .why-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.ba-slider .ba-after  { z-index: 1; }
.ba-slider .ba-before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-label {
  position: absolute; bottom: 16px; z-index: 3;
  background: rgba(10,27,46,.82); color: #fff; font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: 7px 13px; border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
}
.ba-label.before { left: 16px; }
.ba-label.after  { right: 16px; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; z-index: 4;
  background: #fff; transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(12,44,82,.1);
}
.ba-handle .grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 46px; height: 46px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow-lg); color: var(--brand);
}
.ba-handle .grip svg { width: 22px; height: 22px; }
.ba-range {
  position: absolute; inset: 0; z-index: 5; opacity: 0; cursor: ew-resize; width: 100%; margin: 0;
}
.ba-caption { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 16px; }

/* Placeholder art inside before/after + why media */
.ph-art {
  position: absolute; inset: 0; display: grid; place-items: center;
  background-size: cover; background-position: center;
}
.ph-art.before-art { background: linear-gradient(135deg, #8a95a3, #5c6773); }
.ph-art.after-art  { background: linear-gradient(135deg, #2E8BD6, #0E63C4); }
.ph-art .ph-note {
  color: rgba(255,255,255,.9); font-size: .8rem; font-weight: 600; text-align: center;
  background: rgba(0,0,0,.25); padding: 8px 14px; border-radius: var(--r-pill); backdrop-filter: blur(3px);
}
.why-media .ph-art { background: linear-gradient(140deg, #0E63C4, #0C2C52); }
.why-media .ph-inner { text-align: center; color: rgba(255,255,255,.9); padding: 24px; }
.why-media .ph-inner svg { width: 64px; height: 64px; margin: 0 auto 14px; opacity: .9; }
.why-media .ph-inner span { font-size: .85rem; font-weight: 600; }

/* small floating stat chip on the why image */
.why-media .stat-chip {
  position: absolute; left: 20px; bottom: 20px; z-index: 3;
  background: #fff; border-radius: var(--r); padding: 14px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
}
.why-media .stat-chip .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--accent-050); color: var(--accent); display: grid; place-items: center; }
.why-media .stat-chip .ic svg { width: 22px; height: 22px; }
.why-media .stat-chip b { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); display: block; line-height: 1; }
.why-media .stat-chip span { font-size: .78rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   13. REVIEWS
   -------------------------------------------------------------------------- */
.reviews-top {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 40px;
}
.google-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 14px 20px; box-shadow: var(--shadow-sm);
}
.google-badge .g-logo { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; }
.google-badge .g-logo .b { color:#4285F4; } .google-badge .g-logo .r{color:#EA4335;}
.google-badge .g-logo .y{color:#FBBC05;} .google-badge .g-logo .g{color:#34A853;}
.google-badge .g-meta b { font-size: 1.3rem; color: var(--ink); font-family: var(--font-display); }
.google-badge .g-stars { display: inline-flex; gap: 2px; }
.google-badge .g-stars svg { width: 16px; height: 16px; color: var(--star); }
.google-badge .g-meta span { display: block; font-size: .8rem; color: var(--muted); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px; box-shadow: var(--shadow-sm); position: relative;
}
.review-card .stars { display: inline-flex; gap: 2px; margin-bottom: 12px; }
.review-card .stars svg { width: 18px; height: 18px; color: var(--star); }
.review-card .quote { color: var(--text); font-size: .98rem; margin-bottom: 18px; }
.review-card .g-mark { position: absolute; top: 24px; right: 24px; width: 22px; height: 22px; }
.review-card .reviewer { display: flex; align-items: center; gap: 12px; }
.review-card .avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand), var(--navy)); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-family: var(--font-display);
}
.review-card .reviewer b { display: block; font-size: .96rem; color: var(--ink); }
.review-card .reviewer span { font-size: .82rem; color: var(--muted); }
.ph-tag {
  display: inline-block; margin-top: 6px; font-size: .68rem; font-weight: 700; letter-spacing: .04em;
  color: var(--accent-600); background: var(--accent-050); padding: 3px 8px; border-radius: 6px;
}

/* --------------------------------------------------------------------------
   14. SERVICE AREA
   -------------------------------------------------------------------------- */
.area-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 56px); align-items: center; }
@media (max-width: 880px) { .area-grid { grid-template-columns: 1fr; } }

.area-cities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
@media (max-width: 520px) { .area-cities { grid-template-columns: repeat(2, 1fr); } }
.area-city {
  display: flex; align-items: center; gap: 9px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 12px 14px; font-weight: 600; font-size: .92rem; color: var(--navy);
  transition: border-color .2s ease, transform .2s ease;
}
.area-city:hover { border-color: var(--brand-100); transform: translateY(-2px); }
.area-city svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

.area-map {
  position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 380px;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(150deg, #0C2C52, #071A33);
  display: grid; place-items: center;
}
.area-map iframe {
  width: 100%; height: 100%; min-height: 380px; border: 0; display: block;
}
.area-map .map-inner { text-align: center; color: #DCE8F6; padding: 24px; }
.area-map .pin {
  width: 62px; height: 62px; margin: 0 auto 14px; border-radius: 50%;
  background: var(--accent); display: grid; place-items: center; color: #fff;
  box-shadow: 0 0 0 10px rgba(255,122,26,.2), 0 0 0 22px rgba(255,122,26,.1);
  animation: pulse 2.6s ease-in-out infinite;
}
.area-map .pin svg { width: 30px; height: 30px; }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 8px rgba(255,122,26,.22), 0 0 0 20px rgba(255,122,26,.08);} 50%{ box-shadow: 0 0 0 14px rgba(255,122,26,.14), 0 0 0 30px rgba(255,122,26,.04);} }
.area-map .map-inner b { font-family: var(--font-display); font-size: 1.2rem; color:#fff; display:block; }
.area-map .map-inner span { font-size: .85rem; opacity: .8; }

/* --------------------------------------------------------------------------
   15. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-wrap { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 4px; font-family: var(--font-display); font-weight: 600;
  font-size: 1.08rem; color: var(--ink);
}
.faq-q .chev {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  background: var(--brand-050); color: var(--brand); display: grid; place-items: center;
  transition: transform .3s ease, background-color .2s ease;
}
.faq-q .chev svg { width: 20px; height: 20px; }
.faq-item.is-open .faq-q .chev { transform: rotate(180deg); background: var(--brand); color: #fff; }
.faq-a { overflow: hidden; height: 0; transition: height .3s ease; }
.faq-a .faq-a-inner { padding: 0 4px 22px; color: var(--muted); font-size: .98rem; }

/* --------------------------------------------------------------------------
   16. FINAL CTA
   -------------------------------------------------------------------------- */
.final-cta { position: relative; overflow: hidden;
  background:
    radial-gradient(100% 100% at 90% 0%, rgba(255,122,26,.16), transparent 55%),
    linear-gradient(160deg, var(--navy), #071A33);
  color: #EAF1FA;
}
.final-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
@media (max-width: 900px) { .final-grid { grid-template-columns: 1fr; } }
.final-copy h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.1rem); margin-bottom: 18px; }
.final-copy > p { color: #C6D6E8; font-size: 1.1rem; margin-bottom: 26px; max-width: 520px; }
.final-points { display: grid; gap: 14px; margin-bottom: 30px; }
.final-points li { display: flex; gap: 12px; align-items: center; color: #DCE8F6; font-weight: 500; }
.final-points svg { width: 22px; height: 22px; color: #6FE0A6; flex-shrink: 0; }
.final-phone {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 6px;
  padding: 16px 22px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r);
}
.final-phone .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--accent); color:#fff; display: grid; place-items: center; flex-shrink: 0; }
.final-phone .ic svg { width: 24px; height: 24px; }
.final-phone small { display: block; font-size: .74rem; color: #9FB4CC; text-transform: uppercase; letter-spacing: .06em; }
.final-phone b { font-family: var(--font-display); font-size: 1.5rem; color: #fff; line-height: 1.1; }

.final-form-card {
  background: #fff; color: var(--text); border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 34px); box-shadow: var(--shadow-lg);
}
.final-form-card h3 { font-size: 1.4rem; color: var(--ink); margin-bottom: 4px; }
.final-form-card p.lede { color: var(--muted); font-size: .95rem; margin-bottom: 20px; }

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #A9BACE; padding-block: 46px 30px; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 28px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { max-width: 340px; }
.footer-brand .brand-name b { color: #fff; }
.footer-brand p { margin-top: 14px; font-size: .92rem; color: #93A6BD; }
.footer-contact { display: grid; gap: 12px; }
.footer-contact a, .footer-contact div { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: #C6D3E2; }
.footer-contact svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.footer-cert {
  font-size: .78rem; font-weight: 600; color: #C6D3E2;
  border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-pill); padding: 7px 13px;
}
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 22px; font-size: .84rem; color: #7E93AC; }
.footer-bottom .agency { color: #93A6BD; }
.footer-bottom .agency a { color: #B9CBE0; font-weight: 600; }

/* --------------------------------------------------------------------------
   18. MOBILE STICKY ACTION BAR
   -------------------------------------------------------------------------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  display: none; gap: 10px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(12,44,82,.1);
}
.mobile-bar .btn { flex: 1; padding: 14px 12px; font-size: 1rem; min-height: 54px; }
@media (max-width: 760px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 78px; }
}

/* --------------------------------------------------------------------------
   19. SCROLL REVEAL ANIMATION
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   20. THANK-YOU PAGE
   -------------------------------------------------------------------------- */
.ty-main {
  min-height: calc(100vh - var(--header-h));
  display: grid; place-items: center; padding: clamp(40px, 8vw, 90px) var(--gutter);
  background:
    radial-gradient(90% 70% at 50% -10%, rgba(14,99,196,.12), transparent 60%),
    var(--surface-2);
}
.ty-card {
  max-width: 620px; width: 100%; text-align: center;
  background: #fff; border-radius: var(--r-xl); padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.ty-check {
  width: 88px; height: 88px; margin: 0 auto 26px; border-radius: 50%;
  background: #E7F7EF; color: #1FA971; display: grid; place-items: center;
  animation: pop .5s cubic-bezier(.2,.9,.3,1.4) both;
}
.ty-check svg { width: 46px; height: 46px; }
@keyframes pop { 0%{ transform: scale(.4); opacity: 0;} 100%{ transform: scale(1); opacity: 1;} }
.ty-card h1 { font-size: clamp(1.9rem, 5vw, 2.7rem); margin-bottom: 14px; }
.ty-card .ty-lede { color: var(--muted); font-size: 1.1rem; margin-bottom: 28px; }
.ty-phone-box {
  background: var(--brand-050); border: 1px solid var(--brand-100); border-radius: var(--r);
  padding: 22px; margin-bottom: 24px;
}
.ty-phone-box small { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 8px; font-weight: 600; }
.ty-phone-box .ty-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 5vw, 2.1rem); color: var(--navy); }
.ty-actions { display: grid; gap: 12px; }
@media (min-width: 520px) { .ty-actions { grid-template-columns: 1fr 1fr; } }
.ty-steps { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); display: grid; gap: 14px; text-align: left; }
.ty-steps .ty-step { display: flex; gap: 12px; align-items: center; }
.ty-steps .n { width: 30px; height: 30px; border-radius: 50%; background: var(--navy); color:#fff; display: grid; place-items: center; font-weight: 700; font-size: .85rem; flex-shrink: 0; }
.ty-steps .ty-step span { font-size: .95rem; color: var(--text); }

/* ===== Offer strip — service-page promo banner (near hero + repeated at final CTA) ===== */
.offer-strip {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-700) 100%);
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  color: #EAF1FA;
}
.offer-inner {
  display: grid; grid-template-columns: minmax(220px,1fr) 1.4fr auto;
  gap: clamp(16px,3vw,36px); align-items: center;
  padding-block: clamp(18px,2.6vw,26px);
}
.offer-tag {
  display: inline-block; font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .14em; font-size: .72rem; font-weight: 800; color: var(--accent); margin-bottom: 6px;
}
.offer-head {
  font-family: var(--font-display); font-weight: 800; line-height: 1.15; color: #fff;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
}
.offer-head b { color: var(--accent); }
.offer-points { display: flex; flex-wrap: wrap; gap: 8px 20px; list-style: none; margin: 0; padding: 0; }
.offer-points li { display: flex; align-items: flex-start; gap: 8px; font-size: .92rem; color: #D6E3F2; flex: 1 1 240px; }
.offer-points li svg { width: 17px; height: 17px; color: #6FE0A6; flex-shrink: 0; margin-top: 2px; }
.offer-strip .btn { white-space: nowrap; }
@media (max-width: 900px) {
  .offer-inner { grid-template-columns: 1fr; }
  .offer-strip .btn { justify-self: start; }
}
