/* ============================================================
   WeFix Sliding Doors — Design System v3
   Palette: classic black & white, matching the real WeFix wordmark
   (no navy, no blue, no orange — pure monochrome with a single
   functional green "open" indicator as the only color accent).
   Type: Poppins (display) / Open Sans (body) / IBM Plex Mono (spec/utility)
   Signature: the sliding-track rail motif + scroll-scrubbed hero door
   ============================================================ */

:root{
  /* brand / surfaces */
  --navy:        #121212;
  --navy-2:      #1C1C1C;
  --navy-soft:   #2A2A2A;
  --blue:        #1A1A1A;
  --blue-dark:   #000000;
  --sky:         #D6D6D6;
  /* action / CTA — solid black on light sections, inverted to white on dark sections */
  --accent:      #121212;
  --accent-dark: #000000;
  --accent-soft: #E6E6E6;
  /* neutrals */
  --white:       #FFFFFF;
  --paper:       #F5F5F5;
  --paper-2:     #ECECEC;
  --line:        #DEDEDE;
  --ink:         #141414;
  --slate:       #4D4D4D;
  --slate-soft:  #828282;
  --amber:       #F2A33C; /* unused (reviews removed); kept for safety */
  --success:     #1A1A1A;

  /* type */
  --f-display: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --f-body: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  --f-mono: "IBM Plex Mono", "Courier New", monospace;

  /* scale */
  --container: 1180px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.06), 0 1px 1px rgba(0,0,0,.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 48px rgba(0,0,0,.18);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0;
  font-family:var(--f-body);
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  line-height:1.55;
}

img,video{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family:var(--f-display); color:var(--navy); margin:0 0 .5em; line-height:1.12; letter-spacing:-0.01em; }
p{ margin:0 0 1em; }

:focus-visible{
  outline:3px solid var(--blue);
  outline-offset:2px;
  border-radius:4px;
}

.container{ max-width:var(--container); margin:0 auto; padding:0 24px; }
.section{ padding:72px 0; }
.section--tight{ padding:48px 0; }
.section--navy{ background:var(--navy); color:#fff; }
.section--paper{ background:var(--paper); }
@media (max-width:760px){
  .section{ padding:48px 0; }
}

.eyebrow{
  font-family:var(--f-mono);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--blue);
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:14px;
  font-weight:500;
}
.eyebrow::before{
  content:"";
  width:18px; height:2px;
  background:var(--blue);
  display:inline-block;
}
.section--navy .eyebrow,.on-dark .eyebrow{ color:var(--sky); }
.section--navy .eyebrow::before,.on-dark .eyebrow::before{ background:var(--sky); }

h1{ font-size:clamp(32px,5vw,56px); font-weight:800; }
h2{ font-size:clamp(26px,3.4vw,38px); font-weight:800; }
h3{ font-size:20px; font-weight:700; }
.section--navy h1,.section--navy h2,.section--navy h3,.on-dark h1,.on-dark h2,.on-dark h3{ color:#fff; }
.lede{ font-size:18px; color:var(--slate); max-width:640px; }
.section--navy .lede,.on-dark .lede{ color:#C9C9C9; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--f-body); font-weight:700; font-size:15px;
  padding:13px 22px; border-radius:8px; border:1px solid transparent;
  transition:transform .15s ease, box-shadow .15s ease, background-color .15s ease;
  white-space:nowrap; cursor:pointer;
}
.btn:active{ transform:translateY(1px); }
.btn--primary{ background:var(--accent); color:#fff; box-shadow:0 6px 16px rgba(0,0,0,.22); }
.btn--primary:hover{ background:var(--accent-dark); box-shadow:0 8px 20px rgba(0,0,0,.3); }
.hero .btn--primary,
.section--navy .btn--primary,
.page-hero .btn--primary,
.video-cta .btn--primary,
.mobile-call-bar .btn--primary,
.banner-cta .btn--primary{ background:#fff; color:var(--ink); box-shadow:0 6px 16px rgba(0,0,0,.25); }
.hero .btn--primary:hover,
.section--navy .btn--primary:hover,
.page-hero .btn--primary:hover,
.video-cta .btn--primary:hover,
.mobile-call-bar .btn--primary:hover,
.banner-cta .btn--primary:hover{ background:#E0E0E0; }
.btn--ghost{ background:transparent; color:#fff; border-color:rgba(255,255,255,.4); }
.btn--ghost:hover{ border-color:#fff; background:rgba(255,255,255,.08); }
.btn--outline{ background:#fff; color:var(--navy); border-color:var(--line); }
.btn--outline:hover{ border-color:var(--blue); color:var(--blue); }
.btn--block{ width:100%; }
.btn--lg{ padding:16px 28px; font-size:16px; }
.btn--sm{ padding:9px 16px; font-size:13px; }

/* ---------- topbar + header ---------- */
.topbar{
  background:var(--navy); color:#cfcfcf;
  font-size:13px; font-family:var(--f-mono);
}
.topbar .container{ display:flex; align-items:center; justify-content:space-between; height:38px; gap:16px; }
.topbar__left{ display:flex; align-items:center; gap:18px; overflow:hidden; }
.topbar__item{ display:flex; align-items:center; gap:6px; white-space:nowrap; }
.topbar__dot{ width:7px; height:7px; border-radius:50%; background:#fff; box-shadow:0 0 0 3px rgba(255,255,255,.25); flex:0 0 auto; }
.topbar a.topbar__call{ color:#fff; font-weight:600; }
.topbar__social{ display:flex; gap:12px; }
.topbar__social a{ color:#a8a8a8; }
.topbar__social a:hover{ color:#fff; }
@media (max-width:680px){ .topbar__social{ display:none; } }
@media (max-width:580px){
  .topbar .container{ justify-content:center; }
  .topbar__left:first-child{ display:none; }
  .topbar__item{ font-size:12px; }
}

.site-header{
  position:sticky; top:0; z-index:50;
  background:#fff; border-bottom:1px solid var(--line);
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; height:78px; gap:24px; }

.logo{ display:flex; align-items:center; gap:10px; }
.logo__svg{ display:block; height:46px; width:auto; flex:0 0 auto; }
.logo__mark{ width:38px; height:38px; flex:0 0 auto; }
.logo__text{ display:flex; flex-direction:column; line-height:1; }
.logo__text strong{ font-family:var(--f-display); font-size:19px; font-weight:800; color:var(--navy); letter-spacing:-.01em; }
.logo__text span{ font-family:var(--f-mono); font-size:10px; letter-spacing:.16em; color:var(--blue); font-weight:600; }
@media (max-width:480px){ .logo__svg{ height:38px; } }

.nav{ display:flex; align-items:center; gap:28px; }
.nav__list{ display:flex; align-items:center; gap:26px; }
.nav__list > li{ position:relative; }
.nav__link{ font-weight:600; font-size:15px; color:var(--navy); padding:8px 0; display:inline-flex; align-items:center; gap:6px; }
.nav__link:hover{ color:var(--blue); }
.nav__caret{ width:9px; height:9px; border-right:2px solid currentColor; border-bottom:2px solid currentColor; transform:rotate(45deg) translateY(-2px); opacity:.6; }

.dropdown{
  position:absolute; top:100%; left:50%; transform:translateX(-50%);
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  box-shadow:var(--shadow-md); padding:10px; min-width:260px;
  opacity:0; visibility:hidden; translate:0 6px;
  transition:opacity .15s ease, translate .15s ease, visibility .15s;
  display:grid; gap:2px; z-index:60;
  max-height:min(560px, calc(100vh - 110px)); overflow-y:auto;
}
.nav__list > li:hover > .dropdown,
.nav__list > li:focus-within > .dropdown{ opacity:1; visibility:visible; translate:0 0; }
.dropdown a{ display:flex; align-items:center; justify-content:space-between; gap:10px; padding:9px 12px; border-radius:7px; font-size:14px; color:var(--slate); font-weight:500; }
.dropdown a:hover{ background:var(--paper); color:var(--blue); }
.dropdown a small{ font-family:var(--f-mono); font-size:11.5px; color:var(--slate-soft); font-weight:400; flex:0 0 auto; }
.dropdown a:hover small{ color:var(--blue); }
.dropdown--wide{ min-width:560px; display:grid; grid-template-columns:1fr 1fr; gap:2px 18px; }
#nav-locations-dropdown{ min-width:760px; grid-template-columns:repeat(3,1fr); }
.dropdown__group-label{ font-family:var(--f-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--slate-soft); padding:8px 12px 2px; grid-column:1/-1; }

.header__cta{ display:flex; align-items:center; gap:12px; }
.header__phone{ display:none; }
@media (min-width:900px){
  .header__phone{ display:flex; flex-direction:column; line-height:1.15; text-align:right; }
  .header__phone small{ font-family:var(--f-mono); font-size:11px; color:var(--slate-soft); letter-spacing:.04em; }
  .header__phone a{ font-weight:800; color:var(--navy); font-size:16px; }
}

.nav-toggle{ display:none; background:none; border:0; padding:8px; }
.nav-toggle span{ display:block; width:24px; height:2px; background:var(--navy); margin:5px 0; border-radius:2px; }
@media (max-width:900px){
  .nav{ display:none; }
  .nav-toggle{ display:block; }
  .nav.is-open{
    display:flex; position:absolute; top:78px; left:0; right:0; background:#fff;
    border-bottom:1px solid var(--line); flex-direction:column; align-items:stretch;
    padding:10px 24px 18px; box-shadow:var(--shadow-md);
  }
  .nav.is-open .nav__list{ flex-direction:column; align-items:stretch; gap:0; }
  .nav.is-open .dropdown{ position:static; transform:none; opacity:1; visibility:visible; box-shadow:none; border:0; padding:0 0 0 14px; display:none; max-height:none; overflow:visible; }
  .nav.is-open li.is-expanded .dropdown{ display:grid; }
  .nav.is-open .dropdown--wide,
  .nav.is-open #nav-locations-dropdown{ grid-template-columns:1fr; min-width:0; }
  .nav.is-open .nav__link{ width:100%; justify-content:space-between; border-bottom:1px solid var(--line); padding:13px 0; }
}

/* ---------- scroll progress rail (signature) ---------- */
.track-rail{
  position:fixed; top:0; left:0; height:4px; width:100%; z-index:200;
  background:repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 6px);
}
.track-rail__roller{
  position:absolute; top:50%; left:0; translate:-50% -50%;
  width:10px; height:10px; border-radius:50%;
  background:var(--blue); box-shadow:0 0 0 3px rgba(24,87,255,.18);
  transition:left .08s linear;
}

/* ---------- hero ---------- */
.hero{
  position:relative; isolation:isolate; overflow:hidden;
  min-height:88vh; min-height:88dvh;
  display:flex; align-items:flex-end;
  background:var(--navy);
}
@media (max-width:600px){
  .hero{ display:block; min-height:0; background:var(--navy); }
  .hero__media{ position:relative; inset:auto; aspect-ratio:1920/1236; width:100%; overflow:hidden; }
  .hero__media video, .hero__media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
  .hero__scrim{ display:none; }
  .hero__content{ position:relative; background:var(--navy); padding-top:28px; }
  .hero__content::before{
    content:""; position:absolute; top:-28px; left:0; right:0; height:28px;
    background:linear-gradient(180deg, rgba(0,0,0,.35), var(--navy));
  }
  .hero__brand,.hero__eyebrow,.hero__title,.hero__sub{ text-shadow:none; } /* solid bg now, no shadow needed */
}
.hero__media{ position:absolute; inset:0; z-index:0; }
.hero__media video, .hero__media img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
}
.hero__scrim{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.08) 38%, rgba(0,0,0,.65) 100%);
}
.hero__content{ position:relative; z-index:2; width:100%; padding:120px 0 56px; color:#fff; }
.hero__brand{ display:flex; align-items:center; gap:14px; margin-bottom:26px; }
.hero__brand img{ width:56px; height:56px; border-radius:13px; flex:0 0 auto; box-shadow:0 4px 16px rgba(0,0,0,.35); }
.hero__brand-name{ font-family:var(--f-display); font-weight:800; font-size:clamp(22px,3vw,30px); letter-spacing:-.01em; color:#fff; text-shadow:0 2px 10px rgba(0,0,0,.6); line-height:1.1; }
.hero__brand-name em{ font-style:normal; font-weight:600; opacity:.85; display:block; font-size:0.62em; letter-spacing:.04em; margin-top:1px; }
.hero__eyebrow{ font-family:var(--f-mono); font-size:13px; letter-spacing:.16em; text-transform:uppercase; color:#E8E8E8; margin-bottom:18px; display:flex; align-items:center; gap:10px; text-shadow:0 1px 3px rgba(0,0,0,.6); }
.hero__eyebrow .dot{ width:7px; height:7px; border-radius:50%; background:#FFFFFF; box-shadow:0 0 0 3px rgba(255,255,255,.3); }

.hero__title{ color:#FFFFFF; font-size:clamp(32px,5.5vw,66px); max-width:900px; margin-bottom:20px; text-shadow:0 2px 12px rgba(0,0,0,.55), 0 1px 3px rgba(0,0,0,.8); line-height:1.08; }
.hero__title .panel{ display:inline-block; overflow:hidden; }
.hero__title .panel span{ display:inline-block; }
.hero__sub{ color:#FFFFFF; font-size:clamp(15px,1.8vw,19px); max-width:600px; margin-bottom:34px; text-shadow:0 1px 6px rgba(0,0,0,.7); }

.hero__actions{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:38px; }

/* trust badges row */
.trust-row{ display:flex; flex-wrap:wrap; gap:10px; margin-top:24px; }
.trust-chip{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.22);
  border-radius:999px; padding:8px 16px; font-size:13px; font-weight:600; color:#EDEDED;
}
.trust-chip svg{ flex:0 0 auto; color:#FFFFFF; }
.section .trust-row{ margin-top:0; }
.section .trust-chip{ background:var(--paper); border-color:var(--line); color:var(--navy); }
.section .trust-chip svg{ color:var(--success); }

/* before / after proof pairs */
.proof-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:34px; }
@media (max-width:900px){ .proof-grid{ grid-template-columns:1fr; } }
.proof-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-sm); }
.proof-card__imgs{ display:grid; grid-template-columns:1fr 1fr; }
.proof-card__imgs figure{ margin:0; position:relative; aspect-ratio:1/1; overflow:hidden; }
.proof-card__imgs img{ width:100%; height:100%; object-fit:cover; }
.proof-card__imgs figcaption{
  position:absolute; left:8px; bottom:8px; font-family:var(--f-mono); font-size:10.5px;
  letter-spacing:.06em; text-transform:uppercase; padding:3px 9px; border-radius:5px; color:#fff;
}
.proof-card__imgs figure:first-child figcaption{ background:rgba(220,38,38,.88); }
.proof-card__imgs figure:last-child figcaption{ background:rgba(5,150,105,.9); }
.proof-card__body{ padding:18px 20px; }
.proof-card__body h3{ font-size:16px; margin-bottom:6px; }
.proof-card__body p{ font-size:14px; color:var(--slate); margin-bottom:0; }

/* search card */
.search-card{
  background:#fff; border-radius:var(--radius-lg); box-shadow:var(--shadow-lg);
  padding:18px; max-width:760px;
}
.search-card form{ display:flex; gap:10px; flex-wrap:wrap; }
.search-card input{
  flex:1 1 260px; border:1px solid var(--line); border-radius:8px;
  padding:14px 16px; font-size:15px; font-family:var(--f-body); color:var(--ink);
  background:var(--paper);
}
.search-card input:focus{ outline:none; border-color:var(--blue); background:#fff; }
.search-card button{ flex:0 0 auto; }
.search-card__hint{ font-size:12px; color:var(--slate-soft); margin:10px 2px 0; font-family:var(--f-mono); }
.search-results{ margin-top:10px; border-top:1px solid var(--line); }
.search-results:empty{ border-top:0; }
.search-results a{ display:block; padding:10px 4px; border-bottom:1px dashed var(--line); font-size:14px; color:var(--navy); font-weight:600; }
.search-results a small{ display:block; font-family:var(--f-mono); font-weight:400; color:var(--slate-soft); font-size:11px; margin-top:2px; }
.search-results a:hover{ color:var(--blue); }
.search-results__empty{ padding:10px 4px; font-size:13px; color:var(--slate-soft); }

/* ---------- track divider ---------- */
.track-divider{ position:relative; height:34px; background:var(--paper); overflow:hidden; }
.track-divider::before{
  content:""; position:absolute; left:0; right:0; top:50%; translate:0 -50%;
  height:14px;
  background:
    repeating-linear-gradient(90deg, transparent 0 2px, rgba(10,31,61,.10) 2px 3px),
    linear-gradient(180deg, #E6E6E6, #D2D2D2);
  border-top:1px solid #fff; border-bottom:1px solid #C2C2C2;
}
.track-divider::after{
  content:""; position:absolute; top:50%; left:8%; translate:-50% -50%;
  width:18px; height:18px; border-radius:50%;
  background:radial-gradient(circle at 35% 30%, #fff, var(--blue) 70%);
  box-shadow:0 2px 6px rgba(10,31,61,.3);
}
.track-divider--navy{ background:var(--navy); }
.track-divider--navy::before{ background:repeating-linear-gradient(90deg, transparent 0 2px, rgba(255,255,255,.10) 2px 3px), linear-gradient(180deg,#1C1C1C,#0A0A0A); border-top-color:#2E2E2E; border-bottom-color:#000000; }

/* ---------- cards: services as door panels ---------- */
.grid{ display:grid; gap:20px; align-items:start; }
.grid--3{ grid-template-columns:repeat(3,1fr); }
.grid--4{ grid-template-columns:repeat(4,1fr); }
.grid--2{ grid-template-columns:repeat(2,1fr); }
@media (max-width:980px){ .grid--4{ grid-template-columns:repeat(2,1fr); } .grid--3{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:620px){ .grid--4,.grid--3,.grid--2{ grid-template-columns:1fr; } }

.panel-card{
  position:relative; display:block; background:#fff; border:1px solid var(--line);
  border-radius:12px; padding:24px 22px 22px 26px; box-shadow:var(--shadow-sm);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.panel-card::before{
  content:""; position:absolute; left:0; top:14px; bottom:14px; width:4px;
  background:var(--line); border-radius:3px; transition:background .18s ease, height .18s ease;
}
.panel-card:hover{ transform:translateX(4px); box-shadow:var(--shadow-md); border-color:#D6D6D6; }
.panel-card:hover::before{ background:var(--blue); }
.panel-card h3{ font-size:17px; margin-bottom:8px; }
.panel-card p{ color:var(--slate); font-size:14px; margin-bottom:14px; }
.panel-card__go{ font-size:13px; font-weight:700; color:var(--blue); display:inline-flex; align-items:center; gap:6px; }
.panel-card__go svg{ transition:translate .18s ease; }
.panel-card:hover .panel-card__go svg{ translate:4px 0; }
.panel-card__icon{ width:40px; height:40px; border-radius:9px; background:var(--paper); display:flex; align-items:center; justify-content:center; margin-bottom:14px; color:var(--blue); }

/* location chips */
.chip-grid{ display:flex; flex-wrap:wrap; gap:10px; }
.chip{
  font-family:var(--f-mono); font-size:13px; font-weight:500; color:var(--navy);
  background:var(--paper); border:1px solid var(--line); border-radius:999px; padding:9px 16px;
  transition:background .15s, border-color .15s, color .15s;
}
.chip:hover{ background:var(--navy); color:#fff; border-color:var(--navy); }

/* process steps (legit sequence) */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; counter-reset:step; position:relative; }
@media (max-width:900px){ .steps{ grid-template-columns:1fr; } }
.step{ position:relative; padding:0 20px 0 0; }
.step__num{ font-family:var(--f-mono); font-size:13px; color:var(--blue); font-weight:700; margin-bottom:10px; display:block; }
.step h4{ font-family:var(--f-display); font-size:16px; color:var(--navy); margin:0 0 6px; }
.step p{ font-size:13.5px; color:var(--slate); margin:0; }
.section--navy .step h4,.on-dark .step h4{ color:#fff; }
.section--navy .step p,.on-dark .step p{ color:#C9C9C9; }
.section--navy .step__num,.on-dark .step__num{ color:var(--sky); }
.section--navy .steps .step:not(:last-child),.on-dark .steps .step:not(:last-child){ border-right-color:rgba(255,255,255,.18); }
.steps .step:not(:last-child){ border-right:1px dashed var(--line); }
@media (max-width:900px){ .steps .step:not(:last-child){ border-right:0; border-bottom:1px dashed var(--line); padding:0 0 20px 0; margin-bottom:20px; } }

/* video CTA */
.video-cta{
  display:flex; align-items:center; gap:28px; background:var(--navy-2);
  border-radius:var(--radius-lg); padding:30px; color:#fff; flex-wrap:wrap;
  background-image:radial-gradient(circle at 85% 20%, rgba(255,255,255,.10), transparent 60%);
}
.video-cta__play{
  flex:0 0 auto; width:64px; height:64px; border-radius:50%; background:#fff;
  display:flex; align-items:center; justify-content:center; box-shadow:0 8px 22px rgba(0,0,0,.35);
}
.video-cta__play svg path{ fill:#121212; }
.video-cta__body{ flex:1 1 280px; }
.video-cta h3{ color:#fff; margin-bottom:6px; }
.video-cta p{ color:#C9C9C9; margin-bottom:0; font-size:14.5px; }

/* reviews */
.review-card{ background:#fff; border:1px solid var(--line); border-radius:12px; padding:22px; box-shadow:var(--shadow-sm); }
.review-card__stars{ color:var(--amber); font-size:15px; letter-spacing:2px; margin-bottom:10px; }
.review-card p{ color:var(--ink); font-size:14.5px; margin-bottom:14px; }
.review-card__meta{ display:flex; justify-content:space-between; align-items:center; font-size:12.5px; color:var(--slate-soft); border-top:1px solid var(--line); padding-top:12px; }
.review-card__meta strong{ color:var(--navy); font-size:13px; }
.badge-placeholder{ display:inline-block; font-family:var(--f-mono); font-size:10px; letter-spacing:.06em; text-transform:uppercase; background:#FFF3E0; color:#A35A00; padding:3px 8px; border-radius:5px; margin-bottom:10px; }

/* FAQ */
.faq{ border-top:1px solid var(--line); }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-item summary{
  list-style:none; cursor:pointer; padding:18px 4px; display:flex; justify-content:space-between;
  align-items:center; font-weight:700; font-size:15.5px; color:var(--navy); gap:16px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:""; width:10px; height:10px; flex:0 0 auto;
  border-right:2px solid var(--blue); border-bottom:2px solid var(--blue);
  transform:rotate(45deg); transition:transform .2s ease;
}
.faq-item[open] summary::after{ transform:rotate(225deg); }
.faq-item p{ padding:0 4px 18px; color:var(--slate); font-size:14.5px; max-width:760px; }

/* forms */
.form-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:30px; box-shadow:var(--shadow-md); }
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:620px){ .form-grid{ grid-template-columns:1fr; } }
.field{ display:flex; flex-direction:column; gap:6px; }
.field--full{ grid-column:1/-1; }
.field label{ font-size:13px; font-weight:700; color:var(--navy); }
.field label .req{ color:var(--blue); }
.field input,.field select,.field textarea{
  border:1px solid var(--line); border-radius:8px; padding:12px 14px; font-size:15px;
  font-family:var(--f-body); color:var(--ink); background:var(--paper);
}
.field input:focus,.field select:focus,.field textarea:focus{ outline:none; border-color:var(--blue); background:#fff; }
.field textarea{ resize:vertical; min-height:96px; }
.form-note{ font-size:12px; color:var(--slate-soft); margin-top:14px; }

/* breadcrumbs */
.breadcrumbs{ font-family:var(--f-mono); font-size:12.5px; color:var(--slate-soft); display:flex; gap:8px; flex-wrap:wrap; padding:18px 0; }
.breadcrumbs a{ color:var(--slate-soft); }
.breadcrumbs a:hover{ color:var(--blue); }
.breadcrumbs span.sep{ color:#BFBFBF; }

/* page hero (non-home pages) */
.page-hero{ background:var(--navy); color:#fff; padding:38px 0 50px; position:relative; overflow:hidden; }
.page-hero::after{ content:""; position:absolute; right:-80px; top:-80px; width:320px; height:320px; border-radius:50%; background:radial-gradient(circle, rgba(95,168,255,.18), transparent 70%); }
.page-hero h1{ color:#fff; margin-bottom:10px; }
.page-hero p{ color:#C9C9C9; max-width:680px; font-size:16px; margin-bottom:22px; }
.page-hero__cta{ display:flex; gap:12px; flex-wrap:wrap; }
.zip-pills{ display:flex; gap:7px; flex-wrap:wrap; margin-top:20px; max-width:700px; }
.zip-pill{ font-family:var(--f-mono); font-size:11.5px; background:rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.22); color:#EFEFEF; padding:4px 11px; border-radius:999px; white-space:nowrap; text-shadow:none; }
@media (max-width:600px){ .zip-pills{ display:none; } /* hidden on small screens - shown in body section instead */ }

/* ZIP code section (body of location page) */
.zip-section{ display:flex; flex-wrap:wrap; gap:8px; }
.zip-tag{ font-family:var(--f-mono); font-size:12.5px; background:var(--paper); border:1px solid var(--line); color:var(--ink); padding:6px 14px; border-radius:6px; font-weight:500; white-space:nowrap; }

/* Nearby area grid - clean cards, ZIP and phone never crammed together */
.nearby-grid{ display:grid; grid-template-columns:repeat(auto-fill, minmax(180px, 1fr)); gap:12px; }
.nearby-item{ background:#fff; border:1px solid var(--line); border-radius:10px; padding:14px 16px; display:flex; flex-direction:column; gap:0; box-shadow:var(--shadow-sm); transition:border-color .15s, box-shadow .15s; }
a.nearby-item:hover{ border-color:var(--navy); box-shadow:var(--shadow-md); text-decoration:none; }
.nearby-item strong{ font-size:14.5px; color:var(--ink); margin-bottom:6px; display:block; }
.nearby-zip{ font-family:var(--f-mono); font-size:12px; color:var(--slate-soft); display:block; margin-bottom:4px; }
.nearby-phone{ font-family:var(--f-mono); font-size:11.5px; color:var(--slate); display:block; padding-top:6px; border-top:1px solid var(--line); margin-top:6px; }
@media (max-width:600px){
  .nearby-grid{ grid-template-columns:1fr 1fr; }
  .zip-tag{ font-size:11.5px; padding:5px 10px; }
}

/* two-col content layout used on service/location pages */
.content-layout{ display:grid; grid-template-columns:2fr 1fr; gap:48px; align-items:start; }
@media (max-width:900px){ .content-layout{ grid-template-columns:1fr; } }
.signs-list li{ display:flex; gap:10px; padding:10px 0; border-bottom:1px solid var(--line); font-size:14.5px; color:var(--ink); }
.signs-list li::before{ content:"—"; color:var(--blue); font-weight:700; flex:0 0 auto; }
.svc-photo{ margin:0 0 28px; border-radius:14px; overflow:hidden; border:1px solid var(--line); background:var(--paper); }
.svc-photo img{ display:block; width:100%; height:auto; max-height:360px; object-fit:cover; }
.svc-photo figcaption{ font-family:var(--f-mono); font-size:11.5px; letter-spacing:.02em; color:var(--slate); padding:10px 14px; border-top:1px solid var(--line); }
.sidebar-card{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-lg); padding:24px; }
.sidebar-card + .sidebar-card{ margin-top:18px; }
.sidebar-card h4{ font-family:var(--f-display); font-size:15px; color:var(--navy); margin-bottom:12px; }
.sidebar-card ul li{ padding:7px 0; border-bottom:1px solid var(--line); font-size:13.5px; }
.sidebar-card ul li:last-child{ border-bottom:0; }
.sidebar-card ul a{ color:var(--slate); font-weight:500; }
.sidebar-card ul a:hover{ color:var(--blue); }
.sidebar-card .phone-cta{ display:block; text-align:center; background:var(--navy); color:#fff; border-radius:8px; padding:14px; font-weight:800; font-size:18px; margin-top:4px; }
.sidebar-card .phone-cta small{ display:block; font-family:var(--f-mono); font-size:11px; color:#A8A8A8; font-weight:400; margin-top:3px; }

/* footer */
.site-footer{ background:var(--navy); color:#A9B7D4; padding:64px 0 28px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:48px; }
@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-grid h4{ font-family:var(--f-mono); font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:#8A8A8A; margin-bottom:16px; font-weight:600; }
.footer-grid ul li{ margin-bottom:10px; font-size:14px; }
.footer-grid ul a{ color:#C9C9C9; }
.footer-grid ul a:hover{ color:#fff; }
.footer-brand p{ color:#A8A8A8; font-size:14px; max-width:280px; }
.footer-social{ display:flex; gap:12px; margin-top:16px; }
.footer-social a{ width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.07); display:flex; align-items:center; justify-content:center; color:#C9C9C9; }
.footer-social a:hover{ background:#fff; color:#121212; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.1); padding-top:24px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:12.5px; color:#9A9A9A; }
.footer-bottom a:hover{ color:#fff; }

/* sticky mobile call bar */
.mobile-call-bar{
  position:fixed; bottom:0; left:0; right:0; z-index:90; display:none;
  background:var(--navy); padding:10px 16px; box-shadow:0 -6px 20px rgba(0,0,0,.2);
}
@media (max-width:760px){ .mobile-call-bar{ display:flex; gap:10px; } }
.mobile-call-bar a{ flex:1; }

/* misc */
.text-center{ text-align:center; }
.mx-auto{ margin-left:auto; margin-right:auto; }
.mt-0{ margin-top:0; }
.stack{ display:flex; flex-direction:column; gap:10px; }
.inline-list{ display:flex; flex-wrap:wrap; gap:8px 18px; }
.kicker-card{ background:#fff; border:1px solid var(--line); border-radius:14px; padding:26px; }
.banner-cta{ background:linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%); border-radius:var(--radius-lg); padding:44px; color:#fff; display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.banner-cta h3{ color:#fff; margin-bottom:6px; font-size:24px; }
.banner-cta p{ color:#C9C9C9; margin:0; }

/* placeholder note used in reviews */
.placeholder-note{ background:#FFF8EC; border:1px solid #F2DDB4; color:#7A5400; font-size:13px; padding:12px 16px; border-radius:8px; margin-bottom:28px; }

/* utility for noindex banner on internal pages (visual only, dev aid) */
.noindex-tag{ font-family:var(--f-mono); font-size:11px; color:#fff; background:#B23B3B; padding:3px 8px; border-radius:5px; display:inline-block; margin-bottom:10px; }

/* ================================================================
   MOBILE-FIRST FIXES — full responsive overhaul for ≤ 480px
   ================================================================ */

/* --- Hero section mobile --- */
@media (max-width:600px){
  .hero__content{ padding:24px 0 36px; }
  .hero__brand{ margin-bottom:16px; gap:10px; }
  .hero__brand-name{ font-size:18px; }
  .hero__brand img{ width:42px; height:42px; border-radius:10px; }
  .hero__eyebrow{ font-size:11px; letter-spacing:.10em; margin-bottom:14px; flex-wrap:wrap; }
  .hero__title{ font-size:clamp(28px, 8vw, 42px); margin-bottom:14px; line-height:1.08; }
  .hero__sub{ font-size:15px; margin-bottom:22px; }
  .hero__actions{ flex-direction:column; gap:10px; margin-bottom:20px; }
  .hero__actions .btn--lg{ width:100%; font-size:15px; padding:16px 20px; }
  .trust-row{ gap:8px; margin-top:16px; }
  .trust-chip{ font-size:12px; padding:7px 12px; }
}

/* --- Search card mobile --- */
@media (max-width:600px){
  .search-card{ padding:18px 16px; border-radius:14px; }
  .search-card form{ flex-direction:column; gap:8px; }
  .search-card input{ padding:14px 14px; font-size:15px; }
  .search-card button.btn{ width:100%; }
  .search-card__hint{ font-size:11.5px; }
}

/* --- Before/After proof grid mobile --- */
@media (max-width:600px){
  .proof-grid{ grid-template-columns:1fr; gap:16px; }
}

/* --- Services grid mobile --- */
@media (max-width:540px){
  .grid--4{ grid-template-columns:1fr 1fr; gap:10px; }
  .grid--3{ grid-template-columns:1fr; }
  .grid--2{ grid-template-columns:1fr; }
  .panel-card{ padding:16px 14px; }
  .panel-card h3{ font-size:14px; }
}
@media (max-width:360px){
  .grid--4{ grid-template-columns:1fr; }
}

/* --- ZIP codes mobile — body section (not hero) --- */
@media (max-width:600px){
  .zip-section{ gap:6px; }
  .zip-tag{
    font-size:12px;
    padding:6px 11px;
    min-width:72px;
    text-align:center;
    flex:0 0 calc(25% - 6px);  /* 4 per row on most phones */
  }
}
@media (max-width:380px){
  .zip-tag{ flex:0 0 calc(33.33% - 6px); font-size:11px; padding:5px 8px; }
}

/* --- Nearby grid mobile --- */
@media (max-width:600px){
  .nearby-grid{ grid-template-columns:1fr 1fr; gap:10px; }
  .nearby-item{ padding:12px 12px; }
  .nearby-item strong{ font-size:13.5px; }
  .nearby-zip{ font-size:11.5px; }
  .nearby-phone{ font-size:11px; }
}
@media (max-width:360px){
  .nearby-grid{ grid-template-columns:1fr; }
}

/* --- Topbar mobile --- */
@media (max-width:480px){
  .topbar{ font-size:11px; padding:6px 0; }
  .topbar .container{ justify-content:space-between; }
}

/* --- Header mobile --- */
@media (max-width:480px){
  .site-header .container{ padding:0 16px; }
  .header__phone{ display:none; } /* only show in mobile call bar */
}

/* --- Mobile call bar --- */
@media (max-width:760px){
  .mobile-call-bar{ display:flex; gap:10px; }
  .mobile-call-bar a.btn{ font-size:14.5px; flex:1; padding:14px 10px; text-align:center; justify-content:center; }
}

/* --- Content layout (sidebar) on mobile --- */
@media (max-width:900px){
  .content-layout{ grid-template-columns:1fr; }
  .content-layout aside{ margin-top:0; }
  .sidebar-card{ padding:18px 16px; }
}

/* --- Page hero mobile --- */
@media (max-width:600px){
  .page-hero{ padding:28px 0 36px; }
  .page-hero h1{ font-size:clamp(24px,7vw,36px); margin-bottom:10px; }
  .page-hero p{ font-size:14.5px; margin-bottom:16px; }
  .page-hero .container{ padding:0 16px; }
  .page-hero__cta{ flex-direction:column; gap:10px; }
  .page-hero__cta .btn{ width:100%; justify-content:center; }
}

/* --- Service/location page images mobile --- */
@media (max-width:600px){
  .svc-photo img{ max-height:240px; object-fit:cover; }
}

/* --- Contact form mobile --- */
@media (max-width:480px){
  .form-card{ padding:20px 16px; }
  .field input,.field select,.field textarea{ font-size:16px; } /* prevents iOS zoom on focus */
  .field label{ font-size:13px; }
}

/* --- Breadcrumbs mobile --- */
@media (max-width:600px){
  .breadcrumbs{ font-size:12px; white-space:nowrap; overflow-x:auto; padding-bottom:4px; }
  .breadcrumbs .sep{ margin:0 3px; }
}

/* --- Steps section mobile --- */
@media (max-width:600px){
  .step{ padding:20px 16px; }
  .step__num{ font-size:12px; }
  .step h4{ font-size:16px; }
}

/* --- Video CTA mobile --- */
@media (max-width:600px){
  .video-cta{ gap:16px; padding:22px 18px; flex-direction:column; }
  .video-cta__play{ width:52px; height:52px; flex:0 0 52px; }
  .video-cta h3{ font-size:17px; }
}

/* --- Banner CTA mobile --- */
@media (max-width:600px){
  .banner-cta{ padding:28px 20px; flex-direction:column; gap:16px; }
  .banner-cta h3{ font-size:20px; }
  .banner-cta .btn{ width:100%; justify-content:center; }
}

/* --- Reviews / kicker cards mobile --- */
@media (max-width:600px){
  .kicker-card{ padding:18px 16px; }
  .kicker-card img{ width:100%; height:160px; object-fit:cover; }
  .review-card{ padding:18px 16px; }
}

/* --- Footer mobile --- */
@media (max-width:560px){
  .footer-grid{ grid-template-columns:1fr; gap:28px; }
  .site-footer{ padding:40px 0 20px; }
  .footer-bottom{ flex-direction:column; gap:8px; font-size:12px; }
  .footer-bottom__legal{ order:2; }
}

/* --- Locations hub mobile (chip grid) --- */
@media (max-width:600px){
  .chip-grid{ gap:8px; }
  .chip{ font-size:13px; padding:9px 14px; }
}

/* --- Paragraph / body text global mobile tightening --- */
@media (max-width:480px){
  .section{ padding:38px 0; }
  .section .container{ padding:0 16px; }
  h2{ font-size:clamp(22px,6vw,30px); }
  h3{ font-size:18px; }
  .lede{ font-size:16px; }
  p{ font-size:15px; }
}

/* --- Prevent horizontal scroll globally --- */
html, body{ overflow-x:hidden; max-width:100vw; }
img, video, iframe{ max-width:100%; }

/* ================================================================
   MOBILE HERO VIDEO FIX — re-asserted at end of file to win cascade
   (base .hero__media rule appears after the original mobile block
   above, so it was overriding position:relative back to absolute)
   ================================================================ */
@media (max-width:600px){
  .hero__media{ position:relative !important; inset:auto !important; aspect-ratio:1920/1236; width:100%; height:auto !important; overflow:hidden; }
  .hero__media video, .hero__media img{ position:absolute !important; inset:0; width:100%; height:100%; object-fit:cover; }
}
