/* =====================================================================
   Precision Restoration CT — High-Converting Landing Page
   Brand: deep navy + emergency red (from logo). Mobile-first.
   Fonts: Fraunces (display) + Inter (body)
   ===================================================================== */

/* ----------------------------- Tokens ----------------------------- */
:root {
  /* Brand */
  --navy-950: #081627;
  --navy-900: #0b1f3a;
  --navy-800: #10305c;
  --navy-700: #163e77;
  --navy-600: #1e4c8a;
  --blue-500: #2b6cb0;
  --blue-100: #e8f1fb;
  --blue-50:  #f2f7fd;

  --red-600: #c21f26;
  --red-700: #9e141b;
  --red-100: #fdecec;

  --ink:      #0e1826;
  --ink-soft: #35485f;
  --muted:    #64748b;
  --line:     #dbe6f0;
  --paper:    #f5f9fd;
  --white:    #ffffff;

  /* Semantic */
  --bg: var(--paper);
  --primary: var(--navy-700);
  --accent: var(--red-600);

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Shape */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(11,31,58,.06), 0 2px 8px rgba(11,31,58,.05);
  --shadow-md: 0 8px 28px rgba(11,31,58,.10);
  --shadow-lg: 0 24px 60px rgba(11,31,58,.18);
  --shadow-red: 0 10px 30px rgba(194,31,38,.30);

  --container: 1180px;
  --gutter: clamp(18px, 5vw, 40px);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ----------------------------- Reset ------------------------------ */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 2px; border-radius: 4px; }

/* ----------------------------- Layout ----------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 9vw, 104px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.center { text-align: center; }

/* ----------------------------- Type ------------------------------- */
h1,h2,h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -.01em; color: var(--navy-900); }
.h1 { font-size: clamp(2.1rem, 7.2vw, 4.15rem); font-weight: 600; }
.h2 { font-size: clamp(1.75rem, 5vw, 2.9rem); }
.h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 700; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red-600); display: inline-flex; align-items: center; gap: .55rem;
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--red-600); display:inline-block; }
.eyebrow--center::after { content:""; width: 26px; height: 2px; background: var(--red-600); display:inline-block; }
.lead { font-size: clamp(1.02rem, 2.4vw, 1.22rem); color: var(--ink-soft); }
.section-head { max-width: 720px; margin-inline: auto; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head p { margin-top: 14px; }
.text-red { color: var(--red-600); }

/* ----------------------------- Buttons ---------------------------- */
.btn {
  --btn-bg: var(--navy-700);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-sans); font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 1.05rem 1.6rem; min-height: 54px; border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
  box-shadow: var(--shadow-sm); text-align: center; white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--red { --btn-bg: var(--red-600); box-shadow: var(--shadow-red); }
.btn--red:hover { --btn-bg: var(--red-700); }
.btn--navy { --btn-bg: var(--navy-800); }
.btn--navy:hover { --btn-bg: var(--navy-900); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--navy-800); border: 2px solid var(--line); box-shadow: none; }
.btn--ghost:hover { --btn-bg: var(--white); border-color: var(--navy-600); }
.btn--light { --btn-bg: #fff; --btn-fg: var(--navy-800); }
.btn--block { width: 100%; }
.btn--lg { font-size: 1.06rem; padding: 1.2rem 2rem; min-height: 60px; }
.btn__pulse { position: relative; }
.btn__pulse::after {
  content:""; position:absolute; inset:0; border-radius:inherit; border:2px solid var(--red-600);
  animation: pulse-ring 2.4s var(--ease) infinite; pointer-events:none;
}
@keyframes pulse-ring { 0%{opacity:.7; transform:scale(1);} 70%{opacity:0; transform:scale(1.14);} 100%{opacity:0;} }

/* ----------------------------- Top bar ---------------------------- */
.topbar {
  background: linear-gradient(90deg, var(--navy-900), var(--navy-700));
  color: #dce8f6; font-size: .82rem; font-weight: 500;
}
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 1.4rem; padding: 8px var(--gutter); text-align:center; }
.topbar strong { color: #fff; }
.topbar .dot { width: 7px; height: 7px; border-radius: 50%; background: #45e08a; box-shadow: 0 0 0 rgba(69,224,138,.6); animation: live 2s infinite; flex:none; }
@keyframes live { 0%{box-shadow:0 0 0 0 rgba(69,224,138,.55);} 70%{box-shadow:0 0 0 8px rgba(69,224,138,0);} 100%{box-shadow:0 0 0 0 rgba(69,224,138,0);} }
.topbar__phone { display: inline-flex; align-items:center; gap:.4rem; color:#fff; font-weight:700; }
.topbar .hide-sm { display: none; }

/* ----------------------------- Header ----------------------------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease), padding .25s var(--ease);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 14px; transition: padding .25s var(--ease); }
.header.is-shrunk { box-shadow: var(--shadow-md); }
.header.is-shrunk .header__inner { padding-block: 8px; }
.brand { display: flex; align-items: center; }
.brand img { height: 42px; width: auto; transition: height .25s var(--ease); }
.header.is-shrunk .brand img { height: 34px; }
.nav { display: none; align-items: center; gap: 1.55rem; }
.nav a { font-weight: 600; font-size: .95rem; color: var(--ink-soft); position: relative; padding-block: 4px; }
.nav a::after { content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background: var(--red-600); transition: width .25s var(--ease); }
.nav a:hover { color: var(--navy-800); }
.nav a:hover::after { width: 100%; }
.header__cta { display: flex; align-items: center; gap: .6rem; }
.header__call { display:none; }
.header .btn { min-height: 46px; padding: .75rem 1.15rem; font-size: .92rem; }

/* ----------------------------- Hero ------------------------------- */
.hero { position: relative; background:
    radial-gradient(120% 90% at 100% 0%, #16305a 0%, transparent 55%),
    linear-gradient(180deg, var(--navy-950), var(--navy-800));
  color: #fff; overflow: hidden;
}
.hero::before { /* subtle grid texture */
  content:""; position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px; mask-image: radial-gradient(90% 70% at 60% 20%, #000 0%, transparent 75%); pointer-events:none;
}
.hero__inner { position: relative; display: grid; gap: clamp(30px, 5vw, 56px); padding-block: clamp(40px, 7vw, 76px); }
.hero__copy { max-width: 640px; }
.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(194,31,38,.16); border: 1px solid rgba(194,31,38,.45); color: #ffd9db;
  padding: .5rem .9rem; border-radius: var(--r-pill); font-size: .8rem; font-weight: 700; letter-spacing: .04em;
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #ff5a60; animation: live 1.8s infinite; }
.hero h1 { color: #fff; margin-top: 22px; }
.hero h1 .accent { color: #ff6b70; font-style: italic; font-weight: 500; }
.hero__sub { margin-top: 20px; font-size: clamp(1.02rem, 2.6vw, 1.24rem); color: #cdddf0; max-width: 560px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 30px; }
.hero__cta .btn { flex: 1 1 auto; }
.hero__micro { margin-top: 16px; font-size: .85rem; color: #a9c2de; display:flex; align-items:center; gap:.5rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.2rem 1.6rem; margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); }
.hero__trust li { display: flex; align-items: center; gap: .55rem; font-size: .9rem; font-weight: 600; color: #dfeaf7; }
.hero__trust svg { width: 20px; height: 20px; color: #6fe3a0; flex: none; }

/* Hero image mosaic */
.hero__media { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; gap: 12px; }
.hero__media figure { position: relative; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-lg); background:#0d2b4d; aspect-ratio: 1/1; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media .tall { grid-row: span 2; aspect-ratio: auto; }
.hero__media figure::after { content:""; position:absolute; inset:0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.10); border-radius: inherit; }
.hero__stat {
  position:absolute; left:12px; bottom:12px; right:12px;
  background: rgba(8,22,39,.78); backdrop-filter: blur(6px); border:1px solid rgba(255,255,255,.14);
  border-radius: var(--r-sm); padding:.7rem .85rem; display:flex; align-items:center; gap:.6rem;
}
.hero__stat b { color:#fff; font-family:var(--font-display); font-size:1.15rem; }
.hero__stat span { color:#bcd0e8; font-size:.76rem; line-height:1.25; }

/* ----------------------------- Hero video ------------------------- */
.hero__video { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__video video { width: 100%; height: 100%; object-fit: cover; }
.hero__video::after { /* navy overlay for text legibility */
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(8,22,39,.72) 0%, rgba(11,31,58,.68) 55%, rgba(8,22,39,.86) 100%),
    linear-gradient(90deg, rgba(8,22,39,.80) 0%, rgba(8,22,39,.30) 100%);
}
.hero--video .hero__inner { grid-template-columns: 1fr; position: relative; z-index: 2; }
.hero--video::before { opacity: .5; z-index: 1; }
.hero__proof { display:flex; flex-wrap:wrap; align-items:center; gap: 1rem 1.4rem; margin-top: 30px; }
.hero__rating { display:flex; align-items:center; gap:.55rem; font-size:.92rem; color:#dfeaf7; font-weight:600; }
.hero__rating b { color:#fff; }
.hero__stars { color:#ffc107; letter-spacing:1px; font-size:1rem; }
.hero__stat-inline { display:flex; align-items:center; gap:.6rem; background: rgba(8,22,39,.5); border:1px solid rgba(255,255,255,.15); border-radius: var(--r-pill); padding:.5rem .95rem; }
.hero__stat-inline b { font-family:var(--font-display); color:#ff6b70; font-size:1.15rem; line-height:1; }
.hero__stat-inline span { color:#cdddf0; font-size:.8rem; max-width: 260px; line-height:1.25; }
@media (min-width: 900px) {
  .hero--video .hero__copy { max-width: 720px; }
}

/* ----------------------------- Trust strip ------------------------ */
.trustbar { background: var(--navy-900); color:#cfe0f2; }
.trustbar__inner { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: rgba(255,255,255,.08); border-radius: var(--r-md); overflow: hidden; }
.trustbar__item { background: var(--navy-900); padding: 1.1rem 1rem; display:flex; align-items:center; gap:.7rem; font-weight:600; font-size:.9rem; }
.trustbar__item svg { width: 26px; height: 26px; color: #ff6b70; flex:none; }

/* ----------------------------- Problem cards ---------------------- */
.problems { background:
    linear-gradient(180deg, var(--white), var(--blue-50)); }
.pgrid { display: grid; gap: 14px; grid-template-columns: 1fr; }
.pcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.3rem; text-align: left; display: flex; flex-direction: column; gap: .5rem;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease); cursor: pointer; width: 100%;
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-500); }
.pcard__icon { width: 46px; height: 46px; border-radius: 12px; display:grid; place-items:center; background: var(--red-100); color: var(--red-600); }
.pcard__icon svg { width: 24px; height: 24px; }
.pcard h3 { font-family: var(--font-sans); font-weight: 700; font-size: 1.05rem; color: var(--navy-900); }
.pcard p { font-size: .92rem; color: var(--muted); flex: 1; }
.pcard__link { color: var(--red-600); font-weight: 700; font-size: .9rem; display:flex; align-items:center; gap:.35rem; }
.pcard__link svg { width:16px; height:16px; transition: transform .2s var(--ease); }
.pcard:hover .pcard__link svg { transform: translateX(4px); }

/* ----------------------------- Situation picker ------------------- */
.situation { max-width: 560px; margin-inline: auto; }
.situation__picker { position: relative; }
.situation__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: #fff; border: 2px solid var(--line); border-radius: var(--r-md);
  padding: 1.15rem 1.3rem; font-family: var(--font-sans); font-weight: 700; font-size: 1.02rem;
  color: var(--navy-900); box-shadow: var(--shadow-sm); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  min-height: 60px; text-align: left;
}
.situation__btn:hover { border-color: var(--blue-500); }
.situation__picker.is-open .situation__btn { border-color: var(--navy-700); box-shadow: 0 0 0 4px rgba(43,108,176,.14); }
.situation__label { color: var(--ink-soft); font-weight: 600; }
.situation__picker.is-chosen .situation__label { color: var(--navy-900); font-weight: 700; }
.situation__chev { width: 22px; height: 22px; color: var(--red-600); flex: none; transition: transform .25s var(--ease); }
.situation__picker.is-open .situation__chev { transform: rotate(180deg); }
.situation__menu {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 20;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  overflow: hidden; padding: 6px; animation: fade .2s var(--ease);
}
.situation__menu[hidden] { display: none; }
.situation__menu li {
  display: flex; align-items: center; gap: .8rem; padding: .95rem 1rem; border-radius: var(--r-sm);
  font-weight: 600; font-size: 1rem; color: var(--navy-900); cursor: pointer; transition: background .15s var(--ease);
}
.situation__menu li svg { width: 22px; height: 22px; color: var(--red-600); flex: none; }
.situation__menu li:hover, .situation__menu li.is-active { background: var(--blue-50); }
.situation__hint {
  display: flex; align-items: flex-start; gap: .55rem; justify-content: center; text-align: left;
  margin-top: 16px; font-size: .86rem; color: var(--muted); max-width: 480px; margin-inline: auto;
}
.situation__hint svg { width: 18px; height: 18px; color: var(--blue-500); flex: none; margin-top: 2px; }

/* ----------------------------- Meet the brothers ------------------ */
.team { background: linear-gradient(180deg, var(--blue-50), var(--white)); }
.team__grid { display: grid; gap: clamp(28px, 5vw, 48px); align-items: center; }
.team__copy .eyebrow { margin-bottom: 16px; }
.team__copy .lead { margin-top: 14px; }
.team__body { margin-top: 14px; color: var(--ink-soft); }
.team__points { margin-top: 22px; }
.team__media { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.team__media figure { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); background: #0d2b4d; }
.team__photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.team__media figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: .9rem 1rem .8rem;
  background: linear-gradient(180deg, transparent, rgba(8,22,39,.88));
  color: #fff; font-size: .82rem; font-weight: 600;
}
.team__video { display: flex; }
.team__video video { width: 100%; aspect-ratio: 3/4; object-fit: cover; background: #0d2b4d; display: block; }
.team__play-tag { display: inline-flex; align-items: center; gap: .25rem; color: #ff8f93; font-weight: 800; margin-right: .3rem; }

@media (min-width: 860px) {
  .team__grid { grid-template-columns: 1fr 1fr; }
}

/* ----------------------------- Services --------------------------- */
.sgrid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.scard {
  background: #fff; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line);
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.scard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.scard__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.scard__media img { width:100%; height:100%; object-fit: cover; transition: transform .5s var(--ease); }
.scard:hover .scard__media img { transform: scale(1.06); }
.scard__media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(8,22,39,.55)); }
.scard__tag { position:absolute; top:12px; left:12px; z-index:2; background: rgba(255,255,255,.94); color: var(--navy-800); font-weight:700; font-size:.72rem; letter-spacing:.05em; text-transform:uppercase; padding:.35rem .7rem; border-radius: var(--r-pill); }
.scard__body { padding: 1.4rem; display:flex; flex-direction:column; gap:.7rem; flex:1; }
.scard__body h3 { font-size: 1.28rem; }
.scard__body p { color: var(--muted); font-size: .95rem; flex:1; }
.scard__list { display:flex; flex-wrap:wrap; gap:.4rem; margin-top:.2rem; }
.scard__list span { font-size:.76rem; font-weight:600; color: var(--navy-700); background: var(--blue-100); padding:.28rem .6rem; border-radius: var(--r-pill); }
.scard__actions { display:flex; gap:.6rem; margin-top: .6rem; }
.scard__actions .btn { flex:1; min-height: 48px; padding: .8rem 1rem; font-size:.92rem; }

/* ----------------------------- Stats / authority ------------------ */
.authority { background: linear-gradient(160deg, var(--navy-900), var(--navy-700)); color:#fff; position:relative; overflow:hidden; }
.authority::before { content:""; position:absolute; right:-10%; top:-30%; width:60%; height:160%; background: radial-gradient(circle, rgba(194,31,38,.22), transparent 60%); }
.authority .section-head h2 { color:#fff; }
.authority .section-head p { color:#cdddf0; }
.statgrid { display:grid; grid-template-columns: repeat(2,1fr); gap: 14px; position:relative; }
.stat { background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-radius: var(--r-md); padding: 1.4rem 1.1rem; text-align:center; }
.stat b { display:block; font-family: var(--font-display); font-size: clamp(1.5rem, 6vw, 2.3rem); color:#fff; line-height:1; }
.stat span { display:block; margin-top:.5rem; font-size:.82rem; color:#bcd0e8; font-weight:600; }
.pillars { display:grid; gap:12px; margin-top: 30px; position:relative; }
.pillar { display:flex; gap:.9rem; align-items:flex-start; background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.10); border-radius: var(--r-md); padding: 1.1rem; }
.pillar svg { width:26px; height:26px; color:#6fe3a0; flex:none; margin-top:2px; }
.pillar h3 { font-family: var(--font-sans); font-size:1rem; color:#fff; font-weight:700; }
.pillar p { font-size:.88rem; color:#bcd0e8; margin-top:.2rem; }

/* ----------------------------- Process ---------------------------- */
.process { background: var(--white); }
.steps { display:grid; gap:16px; grid-template-columns: 1fr; counter-reset: step; }
.step { position:relative; background: var(--blue-50); border:1px solid var(--line); border-radius: var(--r-md); padding: 1.4rem 1.3rem 1.4rem 1.3rem; }
.step__n { font-family: var(--font-display); font-size: 1.6rem; color: var(--red-600); font-weight:600; line-height:1; }
.step h3 { font-family: var(--font-sans); font-size: 1.08rem; margin-top:.5rem; color: var(--navy-900); }
.step p { font-size:.92rem; color: var(--muted); margin-top:.35rem; }

/* ----------------------------- Insurance -------------------------- */
.insurance { background: linear-gradient(180deg, var(--blue-50), var(--white)); }
.insurance__wrap { display:grid; gap: 28px; align-items:center; }
.insurance__media { border-radius: var(--r-lg); overflow:hidden; box-shadow: var(--shadow-md); position:relative; }
.insurance__media img { width:100%; aspect-ratio: 4/3; object-fit: cover; }
.insurance__badge { position:absolute; left:16px; bottom:16px; background:#fff; border-radius: var(--r-md); padding:.8rem 1rem; box-shadow: var(--shadow-md); display:flex; align-items:center; gap:.6rem; }
.insurance__badge svg { width:30px; height:30px; color: var(--navy-700); }
.insurance__badge b { font-size:.95rem; color: var(--navy-900); } .insurance__badge span{ display:block; font-size:.75rem; color:var(--muted);}
.ilist { display:grid; gap:.7rem; margin-top: 22px; }
.ilist li { display:flex; align-items:flex-start; gap:.7rem; font-weight:500; color: var(--ink-soft); }
.ilist svg { width:22px; height:22px; color: var(--red-600); flex:none; margin-top:2px; }

/* ----------------------------- Areas ------------------------------ */
.areas { background: var(--navy-900); color:#fff; }
.areas .section-head h2 { color:#fff; } .areas .section-head p{ color:#cdddf0; }
.area-tags { display:flex; flex-wrap:wrap; gap:.5rem; justify-content:center; max-width: 900px; margin-inline:auto; }
.area-tags span { background: rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.13); color:#dbe8f6; padding:.5rem .85rem; border-radius: var(--r-pill); font-size:.85rem; font-weight:500; }
.area-tags span.is-hub { background: var(--red-600); border-color: var(--red-600); color:#fff; font-weight:700; }

/* ----------------------------- Form ------------------------------- */
.formsec { background: linear-gradient(180deg, var(--white), var(--blue-50)); }
.formwrap { display:grid; gap: 30px; align-items:start; }
.formwrap__aside h2 { margin-top: 14px; }
.formwrap__aside .lead { margin-top: 14px; }
.aside-points { display:grid; gap:.8rem; margin-top: 24px; }
.aside-points li { display:flex; gap:.7rem; align-items:flex-start; font-weight:600; color: var(--navy-800); }
.aside-points svg { width:22px; height:22px; color: var(--red-600); flex:none; }
.aside-call { margin-top: 26px; padding: 1.2rem 1.3rem; background: var(--navy-900); border-radius: var(--r-md); color:#fff; display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap; }
.aside-call span { font-size:.82rem; color:#bcd0e8; display:block; }
.aside-call b { font-family: var(--font-display); font-size:1.5rem; color:#fff; }

/* Form card + 2-step */
.formcard { background:#fff; border:1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: clamp(1.3rem, 4vw, 2rem); }
.form-progress { display:flex; align-items:center; gap:.6rem; margin-bottom: 1.4rem; }
.form-progress .fp { flex:1; height:6px; border-radius:999px; background: var(--line); overflow:hidden; }
.form-progress .fp i { display:block; height:100%; width:50%; background: var(--red-600); border-radius:999px; transition: width .35s var(--ease); }
.form-progress span { font-size:.78rem; font-weight:700; color: var(--muted); letter-spacing:.04em; white-space:nowrap; }
.fstep { display:none; animation: fade .35s var(--ease); }
.fstep.is-active { display:block; }
@keyframes fade { from{opacity:0; transform:translateY(8px);} to{opacity:1; transform:none;} }
.field { margin-bottom: 1rem; }
.field label { display:block; font-weight:700; font-size:.85rem; color: var(--navy-900); margin-bottom:.4rem; }
.field label .req { color: var(--red-600); }
.field input, .field select, .field textarea {
  width:100%; font-family:inherit; font-size:1rem; color:var(--ink);
  padding: .95rem 1rem; border:1.5px solid var(--line); border-radius: var(--r-sm); background:#fff; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(43,108,176,.14); }
.field-row { display:grid; gap: 1rem; grid-template-columns: 1fr; }
.chips { display:flex; flex-wrap:wrap; gap:.5rem; }
.chip { border:1.5px solid var(--line); border-radius: var(--r-pill); padding:.6rem .95rem; font-weight:600; font-size:.88rem; color: var(--ink-soft); background:#fff; transition: all .18s var(--ease); }
.chip:hover { border-color: var(--blue-500); }
.chip.is-on { background: var(--navy-800); border-color: var(--navy-800); color:#fff; }
.urgency-opts { display:grid; gap:.6rem; }
.uopt { display:flex; align-items:center; gap:.75rem; border:1.5px solid var(--line); border-radius: var(--r-sm); padding:.85rem 1rem; cursor:pointer; transition: all .18s var(--ease); font-weight:600; color:var(--ink-soft); }
.uopt:hover { border-color: var(--blue-500); }
.uopt input { width:auto; accent-color: var(--red-600); }
.uopt.is-on { border-color: var(--red-600); background: var(--red-100); color: var(--navy-900); }
.form-nav { display:flex; gap:.7rem; margin-top: 1.2rem; }
.form-nav .btn { flex:1; }
.form-fine { margin-top:.9rem; font-size:.76rem; color: var(--muted); text-align:center; }
.form-success { display:none; text-align:center; padding: 1rem .5rem; }
.form-success.is-shown { display:block; animation: fade .4s var(--ease); }
.form-success .tick { width:74px; height:74px; margin:0 auto 1rem; border-radius:50%; background: var(--red-100); display:grid; place-items:center; }
.form-success .tick svg { width:38px; height:38px; color: var(--red-600); }
.form-success h3 { font-size:1.5rem; }
.form-success p { color: var(--muted); margin-top:.5rem; }
.form-success p b { color: var(--navy-900); }
.success-email { display:inline-block; margin-top:1rem; font-weight:600; font-size:.9rem; color: var(--navy-700); text-decoration: underline; text-underline-offset: 3px; }
.success-email:hover { color: var(--red-600); }

/* optional-field tag + file upload */
.field-opt { font-weight:500; color: var(--muted); font-size:.78rem; }
.filedrop { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.5rem; text-align:center;
  border:1.5px dashed var(--line); border-radius: var(--r-sm); padding: 1.2rem 1rem; cursor:pointer; background: var(--blue-50);
  transition: border-color .2s var(--ease), background .2s var(--ease); position:relative; }
.filedrop:hover { border-color: var(--blue-500); background: var(--blue-100); }
.filedrop.has-files { border-color: var(--navy-700); border-style: solid; background:#fff; }
.filedrop input[type="file"] { position:absolute; inset:0; opacity:0; width:100%; height:100%; cursor:pointer; }
.filedrop svg { width:26px; height:26px; color: var(--navy-600); }
.filedrop__text { font-size:.86rem; font-weight:600; color: var(--ink-soft); }

/* ----------------------------- Showcase --------------------------- */
.showcase { background: var(--white); }
.showcase__grid { display:grid; gap: 16px; grid-template-columns: 1fr; }
.showcase figure { border-radius: var(--r-lg); overflow:hidden; box-shadow: var(--shadow-md); position:relative; }
.showcase figure img { width:100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .6s var(--ease); }
.showcase figure:hover img { transform: scale(1.04); }
@media (min-width: 700px) { .showcase__grid { grid-template-columns: 1fr 1fr; } }

/* ----------------------------- FAQ -------------------------------- */
.faq { background: var(--white); }
.faq__list { max-width: 820px; margin-inline:auto; display:grid; gap: 12px; }
.acc { border:1px solid var(--line); border-radius: var(--r-md); background:#fff; overflow:hidden; transition: border-color .2s, box-shadow .2s; }
.acc[open] { border-color: var(--blue-500); box-shadow: var(--shadow-sm); }
.acc summary { list-style:none; cursor:pointer; padding: 1.15rem 1.3rem; font-weight:700; color: var(--navy-900); display:flex; align-items:center; justify-content:space-between; gap:1rem; font-size: 1rem; }
.acc summary::-webkit-details-marker { display:none; }
.acc summary .ico { width:26px; height:26px; border-radius:50%; background: var(--blue-100); color: var(--navy-700); display:grid; place-items:center; flex:none; transition: transform .25s var(--ease), background .2s; }
.acc[open] summary .ico { transform: rotate(45deg); background: var(--red-600); color:#fff; }
.acc summary .ico svg { width:16px; height:16px; }
.acc__body { padding: 0 1.3rem 1.2rem; color: var(--muted); font-size:.95rem; }

/* ----------------------------- Final CTA -------------------------- */
.finalcta { position:relative; color:#fff; overflow:hidden; background: var(--navy-950); }
.finalcta__bg { position:absolute; inset:0; }
.finalcta__bg img { width:100%; height:100%; object-fit:cover; opacity:.28; }
.finalcta::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(8,22,39,.82), rgba(11,31,58,.92)); }
.finalcta__inner { position:relative; z-index:2; text-align:center; max-width: 720px; margin-inline:auto; }
.finalcta h2 { color:#fff; }
.finalcta p { color:#cdddf0; margin-top:16px; font-size: clamp(1rem,2.4vw,1.18rem); }
.finalcta__cta { display:flex; flex-wrap:wrap; gap:.8rem; justify-content:center; margin-top:30px; }
.finalcta__cta .btn { flex:1 1 240px; max-width: 340px; }

/* ----------------------------- Footer ----------------------------- */
.footer { background: var(--navy-950); color:#a9c2de; padding-block: 48px 120px; }
.footer__grid { display:grid; gap: 28px; grid-template-columns: 1fr; }
.footer__logo { background:#fff; padding:.7rem .9rem; border-radius: var(--r-sm); display:inline-block; }
.footer__logo img { height: 40px; }
.footer p { font-size:.9rem; margin-top:14px; max-width: 340px; }
.footer h4 { color:#fff; font-family: var(--font-sans); font-size:.82rem; letter-spacing:.12em; text-transform:uppercase; margin-bottom:14px; }
.footer a { display:inline-flex; align-items:center; gap:.5rem; padding:.28rem 0; font-size:.92rem; transition: color .2s; }
.footer a:hover { color:#fff; }
.footer__col li { margin-bottom:.2rem; }
.footer__contact svg { width:18px; height:18px; color:#ff6b70; flex:none; }
.footer__social { display:flex; gap:.6rem; margin-top: 6px; }
.footer__social a { width:42px; height:42px; border-radius:50%; background: rgba(255,255,255,.08); display:grid; place-items:center; padding:0; }
.footer__social a:hover { background: var(--red-600); }
.footer__social svg { width:18px; height:18px; color:#fff; }
.footer__bottom { border-top:1px solid rgba(255,255,255,.1); margin-top: 34px; padding-top: 22px; display:flex; flex-wrap:wrap; gap:.6rem 1.2rem; justify-content:space-between; font-size:.8rem; color:#7f9bbb; }

/* ----------------------------- Floating / sticky ------------------ */
.fabs { position: fixed; right: 16px; bottom: 84px; z-index: 55; display:none; flex-direction:column; gap:.7rem; }
.fab { width: 56px; height: 56px; border-radius:50%; display:grid; place-items:center; box-shadow: var(--shadow-lg); color:#fff; transition: transform .2s var(--ease); }
.fab svg { width:24px; height:24px; }
.fab:hover { transform: scale(1.08); }
.fab--call { background: var(--red-600); }
.fab--quote { background: var(--navy-700); }
.fab--call::after { content:""; position:absolute; inset:0; border-radius:50%; box-shadow:0 0 0 0 rgba(194,31,38,.5); animation: live 1.8s infinite; }

.mobilebar { position: fixed; left:0; right:0; bottom:0; z-index: 58; display:grid; grid-template-columns: 1fr 1fr; gap:1px; background: var(--line); box-shadow: 0 -6px 20px rgba(11,31,58,.14); }
.mobilebar a { display:flex; align-items:center; justify-content:center; gap:.5rem; padding: .95rem; font-weight:700; font-size:.95rem; background:#fff; color: var(--navy-800); }
.mobilebar a.is-call { background: var(--red-600); color:#fff; }
.mobilebar svg { width:20px; height:20px; }

/* ----------------------------- Modal ------------------------------ */
.modal { position: fixed; inset:0; z-index: 90; display:none; align-items:flex-start; justify-content:center; padding: 4vh 16px; overflow-y:auto; }
.modal.is-open { display:flex; }
.modal__overlay { position:fixed; inset:0; background: rgba(8,22,39,.62); backdrop-filter: blur(3px); animation: fade .25s var(--ease); }
.modal__dialog { position:relative; z-index:2; width:100%; max-width: 520px; background:#fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); animation: pop .3s var(--ease); margin: auto; }
@keyframes pop { from{opacity:0; transform: translateY(16px) scale(.98);} to{opacity:1; transform:none;} }
.modal__head { background: linear-gradient(120deg, var(--navy-900), var(--navy-700)); color:#fff; padding: 1.4rem 1.5rem; border-radius: var(--r-lg) var(--r-lg) 0 0; }
.modal__head .eyebrow { color:#ff9498; }
.modal__head .eyebrow::before { background:#ff6b70; }
.modal__head h3 { color:#fff; font-size:1.4rem; margin-top:.5rem; }
.modal__head p { color:#cdddf0; font-size:.9rem; margin-top:.35rem; }
.modal__close { position:absolute; top:14px; right:14px; width:38px; height:38px; border-radius:50%; background: rgba(255,255,255,.15); color:#fff; display:grid; place-items:center; }
.modal__close:hover { background: rgba(255,255,255,.28); }
.modal__close svg { width:20px; height:20px; }
.modal__body { padding: 1.5rem; }

/* ----------------------------- Reviews / testimonials ------------- */
.reviews { background: linear-gradient(180deg, var(--blue-50), var(--white)); }
.gr-head { display:flex; flex-direction:column; gap:1rem; align-items:flex-start; background:#fff; border:1px solid var(--line); border-radius: var(--r-md); padding: 1.2rem 1.3rem; margin-bottom: 22px; box-shadow: var(--shadow-sm); }
.gr-head__left { display:flex; align-items:center; gap:.9rem; }
.gr-logo { height: 24px; width:auto; }
.gr-head__left strong { display:block; font-size:1.05rem; color: var(--navy-900); }
.gr-rating { display:flex; align-items:center; gap:.4rem; font-size:.9rem; color: var(--muted); }
.gr-rating b { color: var(--ink); font-size:1.05rem; }
.gr-rating .stars, .grw__rating .stars, .rev-card .stars { color:#fbbc05; letter-spacing:1px; }
.gr-count { color: var(--muted); }
.gr-head .btn { min-height: 44px; padding:.7rem 1.1rem; font-size:.9rem; }

.review-track { display:grid; grid-auto-flow: column; grid-auto-columns: 86%; gap: 14px; overflow-x:auto; scroll-snap-type: x mandatory; padding-bottom: 6px; scrollbar-width: none; }
.review-track::-webkit-scrollbar { display:none; }
.rev-card { scroll-snap-align: start; background:#fff; border:1px solid var(--line); border-radius: var(--r-md); padding: 1.2rem; box-shadow: var(--shadow-sm); display:flex; flex-direction:column; gap:.6rem; }
.rev-card__top { display:flex; align-items:center; gap:.7rem; }
.rev-av { width:42px; height:42px; border-radius:50%; display:grid; place-items:center; color:#fff; font-weight:700; font-size:1rem; position:relative; flex:none; }
.rev-av::after { content:""; position:absolute; right:-2px; bottom:-2px; width:16px; height:16px; border-radius:50%; background:#fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234285F4' d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92a5.06 5.06 0 0 1-2.2 3.32v2.77h3.57c2.08-1.92 3.27-4.74 3.27-8.1z'/%3E%3Cpath fill='%2334A853' d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84A11 11 0 0 0 12 23z'/%3E%3Cpath fill='%23FBBC05' d='M5.84 14.1a6.6 6.6 0 0 1 0-4.2V7.06H2.18a11 11 0 0 0 0 9.88z'/%3E%3Cpath fill='%23EA4335' d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.06l3.66 2.84C6.71 7.3 9.14 5.38 12 5.38z'/%3E%3C/svg%3E") center/11px no-repeat; box-shadow:0 0 0 1.5px #fff; }
.rev-card__name { font-weight:700; font-size:.95rem; color: var(--navy-900); display:flex; align-items:center; gap:.35rem; }
.rev-card__name svg { width:14px; height:14px; color:#4285F4; }
.rev-card__date { font-size:.76rem; color: var(--muted); }
.rev-card .stars { font-size:.95rem; }
.rev-card__text { font-size:.92rem; color: var(--ink-soft); line-height:1.55; }
.review-dots { display:flex; justify-content:center; gap:.4rem; margin-top: 16px; }
.review-dots button { width:8px; height:8px; border-radius:50%; background: var(--line); transition: background .2s, width .2s; }
.review-dots button.is-on { background: var(--navy-700); width:22px; border-radius:999px; }

/* ----------------------------- Area map --------------------------- */
.area-map { height: 340px; border-radius: var(--r-lg); overflow:hidden; margin-bottom: 26px; border:1px solid rgba(255,255,255,.15); box-shadow: var(--shadow-md); background:#0d2b4d; }
.leaflet-container { font-family: var(--font-sans); background:#0d2b4d; }
.leaflet-popup-content-wrapper { border-radius: 10px; }
.leaflet-popup-content { margin: 10px 14px; font-weight:600; color: var(--navy-900); }
.map-pin { display:grid; place-items:center; }
.map-pin svg { filter: drop-shadow(0 3px 4px rgba(0,0,0,.35)); }

/* ----------------------------- Footer badges ---------------------- */
.footer__badges { display:flex; align-items:center; gap:.7rem; margin-top: 20px; }
.cbadge { background:#fff; border-radius: 10px; padding:6px; box-shadow: var(--shadow-sm); display:grid; place-items:center; }
.cbadge--iicrc svg { width: 64px; height: 64px; }
.cbadge--bbb svg { width: 104px; height: 66px; }

/* ----------------------------- Floating Google widget ------------- */
.grw { position: fixed; left: 20px; bottom: 24px; z-index: 56; width: 300px; background:#fff; border-radius: 14px; box-shadow: var(--shadow-lg); overflow:hidden; display:none; animation: grwIn .5s var(--ease); border:1px solid var(--line); }
@keyframes grwIn { from{opacity:0; transform: translateY(16px);} to{opacity:1; transform:none;} }
.grw.is-visible { display:block; }
.grw-reopen.is-visible { display:inline-flex; }
.grw__min { position:absolute; top:10px; right:10px; width:26px; height:26px; border-radius:50%; background:#f1f5f9; color: var(--muted); display:grid; place-items:center; }
.grw__min:hover { background:#e2e8f0; }
.grw__min svg { width:16px; height:16px; }
.grw__head { display:flex; align-items:center; gap:.6rem; padding: 14px 16px 10px; }
.grw__g { width: 26px; height: 26px; flex:none; }
.grw__meta strong { display:block; font-size:.95rem; color: var(--navy-900); }
.grw__rating { display:flex; align-items:center; gap:.35rem; font-size:.82rem; color: var(--muted); }
.grw__rating b { color: var(--ink); font-size:.95rem; }
.grw__body { padding: 4px 16px 12px; min-height: 118px; }
.grw__foot { display:block; text-align:center; background: var(--blue-50); color: var(--navy-700); font-weight:700; font-size:.85rem; padding: 11px; border-top:1px solid var(--line); }
.grw__foot:hover { background: var(--blue-100); }
.grw-card { animation: fade .5s var(--ease); }
.grw-card__top { display:flex; align-items:center; gap:.6rem; margin-bottom:.4rem; }
.grw-card .rev-av { width:36px; height:36px; font-size:.9rem; }
.grw-card__name { font-weight:700; font-size:.88rem; color: var(--navy-900); }
.grw-card__date { font-size:.72rem; color: var(--muted); }
.grw-card .stars { color:#fbbc05; font-size:.9rem; letter-spacing:1px; }
.grw-card__text { font-size:.82rem; color: var(--ink-soft); line-height:1.5; margin-top:.3rem;
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.grw-reopen { position: fixed; left: 20px; bottom: 24px; z-index: 56; display:none; align-items:center; gap:.5rem; background:#fff; border:1px solid var(--line); border-radius: var(--r-pill); padding:.55rem .9rem; box-shadow: var(--shadow-md); font-size:.82rem; color: var(--navy-800); font-weight:600; }
.grw-reopen .grw__g { width:20px; height:20px; }
.grw-reopen b { color: var(--ink); }
.grw-reopen:hover { box-shadow: var(--shadow-lg); }

/* ----------------------------- Reveal anim ------------------------ */
.reveal { opacity:0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity:1; transform:none; }
.reveal.d1{transition-delay:.08s;} .reveal.d2{transition-delay:.16s;} .reveal.d3{transition-delay:.24s;} .reveal.d4{transition-delay:.32s;}

/* ----------------------------- Responsive ------------------------- */
@media (min-width: 560px) {
  .topbar .hide-sm { display: inline; }
  .pgrid { grid-template-columns: repeat(2,1fr); }
  .field-row { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .scard__media { aspect-ratio: 16/9; }
  .review-track { grid-auto-columns: 46%; }
  .gr-head { flex-direction:row; align-items:center; justify-content:space-between; }
}

/* Floating Google widget: on mobile it sits above the sticky call/quote bar */
@media (max-width: 899px) {
  .grw { left: 12px; right: 12px; width: auto; max-width: 340px; bottom: 74px; }
  .grw-reopen { left: 12px; bottom: 74px; }
}
@media (min-width: 1024px) {
  .review-track { grid-auto-columns: 31.5%; }
  .area-map { height: 440px; }
}
@media (min-width: 768px) {
  .trustbar__inner { grid-template-columns: repeat(3,1fr); }
  .sgrid { grid-template-columns: repeat(2,1fr); }
  .pgrid { grid-template-columns: repeat(3,1fr); }
  .statgrid { grid-template-columns: repeat(4,1fr); }
  .pillars { grid-template-columns: repeat(3,1fr); }
  .steps { grid-template-columns: repeat(3,1fr); }
  .insurance__wrap { grid-template-columns: 1fr 1fr; }
  .formwrap { grid-template-columns: 1fr 1.1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
  .fabs { display:none; } /* replaced by inline CTAs on desktop-ish, keep mobile bar off */
}
@media (min-width: 900px) {
  .header__call { display: inline-flex; }
  .nav { display: flex; }
  .hero__inner { grid-template-columns: 1.05fr .95fr; align-items: center; }
  .mobilebar { display: none; }
  .fabs { display:flex; bottom: 24px; }
  .footer { padding-block: 56px; }
  .sgrid { grid-template-columns: repeat(3,1fr); }
}
@media (min-width: 1100px) {
  .hero__media { gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity:1 !important; transform:none !important; }
}
