/* ============================================================
   TapFix Emergency Plumbing — design system
   Palette carried over from the original tapfixstansted.com
   ============================================================ */
:root{
  --blue:#2669FF;
  --blue-bright:#116DFF;
  --blue-deep:#1B4FD9;
  --navy:#0F172A;
  --navy-soft:#1E293B;
  --slate:#64748B;
  --slate-light:#94A3B8;
  --line:#E2E8F0;
  --bg:#F8FAFC;
  --white:#FFFFFF;
  --green:#10B981;
  --amber:#F59E0B;

  --radius-sm:12px;
  --radius:18px;
  --radius-lg:28px;
  --radius-xl:40px;

  --shadow-sm:0 1px 2px rgba(15,23,42,.05), 0 1px 3px rgba(15,23,42,.06);
  --shadow:0 4px 12px rgba(15,23,42,.06), 0 12px 32px rgba(15,23,42,.07);
  --shadow-lg:0 12px 28px rgba(15,23,42,.08), 0 32px 64px rgba(15,23,42,.10);
  --shadow-blue:0 8px 20px rgba(38,105,255,.26), 0 18px 44px rgba(38,105,255,.20);
  --brand-navy:#001848;

  --font:-apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --ease:cubic-bezier(.16,1,.3,1);
  --maxw:1180px;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%; scroll-behavior:smooth; scroll-padding-top:88px}
body{
  margin:0; background:var(--white); color:var(--navy);
  font-family:var(--font); font-size:17px; line-height:1.6;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
button{font-family:inherit}

h1,h2,h3,h4{margin:0; font-weight:700; letter-spacing:-.03em; line-height:1.08; text-wrap:balance}
h1{font-size:clamp(2.6rem,6.4vw,4.6rem); letter-spacing:-.04em}
h2{font-size:clamp(2rem,4.4vw,3.2rem)}
h3{font-size:clamp(1.15rem,2vw,1.35rem); letter-spacing:-.02em; line-height:1.25}
p{margin:0}

.wrap{width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:24px}
.section{padding:clamp(72px,10vw,132px) 0}
.center{text-align:center}
.lede{font-size:clamp(1.05rem,1.7vw,1.25rem); color:var(--slate); line-height:1.62; max-width:64ch}
/* Descendant case (<div class="center"><p class="lede">) AND compound case
   (<p class="lede center">, used by final_cta) both need centering — a
   single element carrying both classes never matches a descendant selector,
   which was silently leaving the final-CTA paragraph's max-width box
   flush-left even though the text inside it looked centered. */
.center .lede, .lede.center{margin-inline:auto}

/* ---------- eyebrow ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:.78rem; font-weight:650; letter-spacing:.1em; text-transform:uppercase;
  color:var(--blue); margin-bottom:20px;
}
.eyebrow::before{content:""; width:22px; height:2px; background:var(--blue); border-radius:2px}
.center .eyebrow::after{content:""; width:22px; height:2px; background:var(--blue); border-radius:2px}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:16px 28px; border-radius:999px; border:1px solid transparent;
  font-size:1.02rem; font-weight:600; letter-spacing:-.01em; cursor:pointer;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
  white-space:nowrap;
}
.btn svg{width:19px; height:19px; flex:none}
.btn-primary{background:var(--blue); color:#fff; box-shadow:var(--shadow-blue)}
.btn-primary:hover{background:var(--blue-deep); transform:translateY(-2px); box-shadow:0 12px 28px rgba(37,99,235,.32), 0 24px 56px rgba(37,99,235,.24)}
.btn-ghost{background:rgba(255,255,255,.08); color:#fff; border-color:rgba(255,255,255,.24); backdrop-filter:blur(12px)}
.btn-ghost:hover{background:rgba(255,255,255,.16); transform:translateY(-2px)}
.btn-light{background:var(--white); color:var(--navy); border-color:var(--line); box-shadow:var(--shadow-sm)}
.btn-light:hover{transform:translateY(-2px); box-shadow:var(--shadow); border-color:#CBD5E1}
.btn-lg{padding:19px 34px; font-size:1.08rem}

/* ---------- header ---------- */
.header{
  position:fixed; inset:0 0 auto 0; z-index:100;
  transition:background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom:1px solid transparent;
}
.header.scrolled{
  background:rgba(255,255,255,.78);
  backdrop-filter:saturate(180%) blur(20px); -webkit-backdrop-filter:saturate(180%) blur(20px);
  border-bottom-color:var(--line);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; gap:24px; height:76px}
.logo{display:flex; align-items:center; flex:none}
.logo svg{height:32px; width:auto}
.logo .t-tap{fill:var(--blue)}
.logo .t-fix{fill:var(--navy)}
.header:not(.scrolled) .logo .t-fix{fill:#fff}
.header:not(.scrolled) .logo .t-tap{fill:#60A5FA}
.header:not(.scrolled) .logo .t-line{fill:#60A5FA}
.logo .t-line{fill:var(--blue)}

.nav{display:flex; align-items:center; gap:34px}
.nav a{
  font-size:.96rem; font-weight:500; color:var(--slate); position:relative; padding:6px 0;
  transition:color .25s ease;
}
.header:not(.scrolled) .nav a{color:rgba(255,255,255,.78)}
.nav a::after{
  content:""; position:absolute; left:0; bottom:0; height:2px; width:0; background:var(--blue);
  border-radius:2px; transition:width .35s var(--ease);
}
.nav a:hover{color:var(--navy)}
.header:not(.scrolled) .nav a:hover{color:#fff}
.nav a:hover::after{width:100%}

.header-cta{display:flex; align-items:center; gap:14px; flex:none}
.header-phone{
  display:flex; align-items:center; gap:9px; font-weight:650; font-size:1rem; color:var(--navy);
  letter-spacing:-.01em;
}
.header:not(.scrolled) .header-phone{color:#fff}
.header-phone svg{width:17px;height:17px;color:var(--blue)}
.header:not(.scrolled) .header-phone svg{color:#60A5FA}
.header .btn{padding:12px 22px; font-size:.94rem}

.burger{display:none; width:44px; height:44px; align-items:center; justify-content:center;
  background:none; border:0; cursor:pointer; padding:0}
.burger span{display:block; width:22px; height:2px; background:var(--navy); border-radius:2px; position:relative;
  transition:transform .35s var(--ease), background .3s ease}
.header:not(.scrolled) .burger span{background:#fff}
.burger span::before,.burger span::after{content:""; position:absolute; left:0; width:22px; height:2px;
  background:inherit; border-radius:2px; transition:transform .35s var(--ease), opacity .2s ease}
.burger span::before{top:-7px} .burger span::after{top:7px}
.burger.open span{background:transparent}
.burger.open span::before{transform:translateY(7px) rotate(45deg); background:var(--navy)}
.burger.open span::after{transform:translateY(-7px) rotate(-45deg); background:var(--navy)}

.mobile-menu{
  position:fixed; inset:76px 0 auto 0; z-index:99; background:rgba(255,255,255,.97);
  backdrop-filter:blur(20px); border-bottom:1px solid var(--line);
  padding:12px 24px 28px; display:none; flex-direction:column;
  animation:slideDown .4s var(--ease);
}
.mobile-menu.open{display:flex}
@keyframes slideDown{from{opacity:0; transform:translateY(-12px)} to{opacity:1; transform:none}}
.mobile-menu a{padding:16px 0; font-size:1.15rem; font-weight:550; border-bottom:1px solid var(--line)}
.mobile-menu .btn{margin-top:22px}

/* ---------- hero ---------- */
.hero{
  position:relative; padding:150px 0 clamp(80px,10vw,120px); overflow:hidden;
  background:var(--brand-navy);
  color:#fff;
}
.hero-bg{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  object-position:center 34%; z-index:0;
}
.hero::before{
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:
    linear-gradient(to bottom, rgba(2,9,24,.78) 0%, rgba(2,9,24,.10) 190px, rgba(2,9,24,0) 300px),
    linear-gradient(100deg, rgba(2,9,24,.96) 0%, rgba(2,9,24,.88) 32%, rgba(1,17,48,.68) 58%, rgba(0,24,72,.42) 100%),
    radial-gradient(900px 560px at 82% 10%, rgba(38,105,255,.30), transparent 60%);
}
.hero::after{
  content:""; position:absolute; inset:0; pointer-events:none; z-index:1;
  background-image:linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
                   linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(900px 560px at 70% 24%, #000, transparent 74%);
  -webkit-mask-image:radial-gradient(900px 560px at 70% 24%, #000, transparent 74%);
}
.hero .wrap{position:relative; z-index:2}
.hero-grid{display:grid; grid-template-columns:1.06fr .94fr; gap:64px; align-items:center}

.live-badge{
  display:inline-flex; align-items:center; gap:11px; padding:9px 18px 9px 14px;
  background:rgba(16,185,129,.13); border:1px solid rgba(16,185,129,.34);
  border-radius:999px; font-size:.87rem; font-weight:600; color:#6EE7B7; margin-bottom:26px;
  letter-spacing:-.01em;
}
.pulse{position:relative; width:9px; height:9px; border-radius:50%; background:var(--green); flex:none}
.pulse::after{content:""; position:absolute; inset:-5px; border-radius:50%; border:2px solid var(--green);
  animation:pulse 2.2s var(--ease) infinite}
@keyframes pulse{0%{transform:scale(.6); opacity:.9} 100%{transform:scale(1.5); opacity:0}}

.hero h1{color:#fff; margin-bottom:24px}
.hero h1 em{font-style:normal; background:linear-gradient(100deg,#60A5FA,#3B82F6 46%,#93C5FD);
  -webkit-background-clip:text; background-clip:text; color:transparent}
.hero-sub{font-size:clamp(1.08rem,1.8vw,1.28rem); color:rgba(226,232,240,.82); line-height:1.6; max-width:35ch; margin-bottom:36px}
.hero-actions{display:flex; flex-wrap:wrap; gap:14px; margin-bottom:40px}

.hero-proof{display:flex; align-items:center; gap:22px; flex-wrap:wrap;
  padding-top:32px; border-top:1px solid rgba(255,255,255,.11)}
.proof-item{display:flex; align-items:center; gap:11px; font-size:.92rem; color:rgba(226,232,240,.72)}
.proof-item svg{width:19px; height:19px; color:#60A5FA; flex:none}
.proof-item strong{color:#fff; font-weight:650}

/* google review card in hero */
.google-card{
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius-lg); padding:34px; backdrop-filter:blur(22px);
  box-shadow:0 24px 70px rgba(0,0,0,.34);
}
.gc-head{display:flex; align-items:center; gap:14px; padding-bottom:22px; margin-bottom:22px;
  border-bottom:1px solid rgba(255,255,255,.11)}
.g-logo{width:38px; height:38px; flex:none}
.gc-head-txt{flex:1; min-width:0}
.gc-score{display:flex; align-items:baseline; gap:9px}
.gc-score b{font-size:1.9rem; font-weight:700; letter-spacing:-.03em; color:#fff; line-height:1}
.gc-head small{display:block; font-size:.82rem; color:rgba(226,232,240,.6); margin-top:5px}
.stars{display:inline-flex; gap:2px}
.stars svg{width:15px; height:15px; color:#FBBF24}

.gc-quote{font-size:1.02rem; line-height:1.62; color:rgba(241,245,249,.94); margin-bottom:18px}
.gc-author{display:flex; align-items:center; gap:12px}
.avatar{width:38px; height:38px; border-radius:50%; flex:none; display:grid; place-items:center;
  font-size:.9rem; font-weight:650; color:#fff; background:linear-gradient(140deg,var(--blue),#60A5FA)}
.gc-author b{display:block; font-size:.93rem; font-weight:620; color:#fff}
.gc-author span{font-size:.8rem; color:rgba(226,232,240,.55)}

/* ---------- trust strip ---------- */
.trust{background:var(--navy-soft); padding:0}
.trust-inner{display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(255,255,255,.08)}
.trust-cell{background:var(--navy-soft); padding:34px 24px; text-align:center}
.trust-cell b{display:block; font-size:clamp(1.6rem,3vw,2.2rem); font-weight:700; letter-spacing:-.035em;
  color:#fff; line-height:1; margin-bottom:9px}
.trust-cell span{font-size:.86rem; color:var(--slate-light); letter-spacing:.01em}

/* ---------- services ---------- */
.services{background:var(--bg)}
.head-flex{display:flex; align-items:flex-end; justify-content:space-between; gap:40px; margin-bottom:56px}
.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:22px}

.card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:34px 30px 32px; position:relative; overflow:hidden;
  transition:transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s ease;
}
.card::before{
  content:""; position:absolute; inset:0; border-radius:inherit; opacity:0;
  background:linear-gradient(160deg, rgba(37,99,235,.05), transparent 56%);
  transition:opacity .5s var(--ease); pointer-events:none;
}
.card:hover{transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:rgba(37,99,235,.28)}
.card:hover::before{opacity:1}
.card-icon{
  width:54px; height:54px; border-radius:16px; display:grid; place-items:center; margin-bottom:22px;
  background:linear-gradient(150deg, rgba(37,99,235,.12), rgba(37,99,235,.05));
  border:1px solid rgba(37,99,235,.16); color:var(--blue);
  transition:transform .5s var(--ease), background .4s ease, color .4s ease;
}
.card-icon svg{width:25px; height:25px}
.card:hover .card-icon{transform:scale(1.06) rotate(-4deg); background:var(--blue); color:#fff; border-color:var(--blue)}
.card h3{margin-bottom:11px}
.card p{font-size:.97rem; color:var(--slate); line-height:1.6}
.card .tag{
  display:inline-flex; align-items:center; gap:6px; margin-top:18px; font-size:.8rem; font-weight:600;
  color:var(--blue); letter-spacing:-.01em;
}
.card .tag svg{width:14px;height:14px; transition:transform .4s var(--ease)}
.card:hover .tag svg{transform:translateX(4px)}
.card.featured{background:linear-gradient(158deg,var(--navy),#1B2A47); border-color:transparent; color:#fff}
.card.featured h3{color:#fff}
.card.featured p{color:rgba(226,232,240,.74)}
.card.featured .card-icon{background:rgba(96,165,250,.16); border-color:rgba(96,165,250,.3); color:#93C5FD}
.card.featured:hover .card-icon{background:var(--blue); color:#fff}
.card.featured .tag{color:#93C5FD}
.badge-urgent{
  position:absolute; top:20px; right:20px; padding:6px 12px; border-radius:999px;
  background:rgba(239,68,68,.16); border:1px solid rgba(248,113,113,.34);
  font-size:.7rem; font-weight:650; letter-spacing:.06em; text-transform:uppercase; color:#FCA5A5;
}

/* ---------- how it works ---------- */
.steps{display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:60px; position:relative}
.step{position:relative; padding-top:34px}
.step::before{
  content:""; position:absolute; top:11px; left:0; right:0; height:2px;
  background:linear-gradient(90deg,var(--line),var(--line));
}
.step:first-child::before{left:50%}
.step:last-child::before{right:50%}
.step-dot{
  position:absolute; top:0; left:calc(50% - 12px); width:24px; height:24px; border-radius:50%;
  background:var(--white); border:2px solid var(--blue); display:grid; place-items:center;
  font-size:.68rem; font-weight:700; color:var(--blue); z-index:2;
}
.step.done .step-dot{background:var(--blue); color:#fff}
.step h3{margin-bottom:10px; font-size:1.12rem}
.step p{font-size:.95rem; color:var(--slate); line-height:1.58}
.step-body{text-align:center; padding-inline:12px}

/* ---------- reviews ---------- */
.reviews{background:linear-gradient(178deg,var(--white),var(--bg))}
.rev-summary{
  display:flex; align-items:center; justify-content:center; gap:clamp(24px,5vw,64px);
  flex-wrap:wrap; padding:34px 40px; margin:0 auto 56px; max-width:760px;
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
}
.rev-summary-score{text-align:center}
.rev-summary-score b{display:block; font-size:3.4rem; font-weight:700; letter-spacing:-.045em; line-height:1}
.rev-summary-score .stars svg{width:19px; height:19px}
.rev-summary-score small{display:block; font-size:.85rem; color:var(--slate); margin-top:8px}
.rev-divider{width:1px; align-self:stretch; background:var(--line)}
.rev-summary-txt{max-width:34ch}
.rev-summary-txt b{display:flex; align-items:center; gap:10px; font-size:1.05rem; margin-bottom:7px}
.rev-summary-txt b svg{width:22px; height:22px}
.rev-summary-txt p{font-size:.93rem; color:var(--slate); line-height:1.55}

.rev-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:22px}
.review{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:30px; display:flex; flex-direction:column; gap:16px;
  transition:transform .5s var(--ease), box-shadow .5s var(--ease);
}
.review:hover{transform:translateY(-4px); box-shadow:var(--shadow)}
.review-top{display:flex; align-items:center; justify-content:space-between; gap:12px}
.review p{font-size:1rem; line-height:1.62; color:var(--navy-soft); flex:1}
.review-author{display:flex; align-items:center; gap:12px; padding-top:16px; border-top:1px solid var(--line)}
.review-author b{display:block; font-size:.94rem; font-weight:620}
.review-author span{font-size:.79rem; color:var(--slate)}
.g-mark{width:19px; height:19px; flex:none; opacity:.9}

/* ---------- about / adam ---------- */
.about{background:var(--navy); color:#fff; position:relative; overflow:hidden}
.about::before{
  content:""; position:absolute; width:760px; height:760px; right:-220px; top:-260px; border-radius:50%;
  background:radial-gradient(circle, rgba(37,99,235,.30), transparent 68%);
}
.about .wrap{position:relative; z-index:2}
.about-grid{display:grid; grid-template-columns:1fr 1fr; gap:clamp(40px,6vw,80px); align-items:center}
.about h2{color:#fff; margin-bottom:22px}
.about .lede{color:rgba(226,232,240,.76)}
.about-list{list-style:none; padding:0; margin:34px 0 0; display:grid; gap:16px}
.about-list li{display:flex; gap:14px; align-items:flex-start; font-size:1rem; color:rgba(226,232,240,.86)}
.tick{width:24px; height:24px; border-radius:50%; background:rgba(16,185,129,.16);
  border:1px solid rgba(16,185,129,.34); display:grid; place-items:center; flex:none; margin-top:2px}
.tick svg{width:13px; height:13px; color:#6EE7B7}
.about-panel{
  background:rgba(255,255,255,.055); border:1px solid rgba(255,255,255,.13);
  border-radius:var(--radius-xl); padding:40px; backdrop-filter:blur(18px);
}
.panel-row{display:flex; align-items:center; gap:16px; padding:20px 0; border-bottom:1px solid rgba(255,255,255,.1)}
.panel-row:last-child{border-bottom:0; padding-bottom:0}
.panel-row:first-child{padding-top:0}
.panel-icon{width:44px; height:44px; border-radius:13px; display:grid; place-items:center; flex:none;
  background:rgba(96,165,250,.14); border:1px solid rgba(96,165,250,.26); color:#93C5FD}
.panel-icon svg{width:20px; height:20px}
.panel-row b{display:block; font-size:1rem; font-weight:620; color:#fff}
.panel-row span{font-size:.88rem; color:rgba(226,232,240,.62)}

/* ---------- areas ---------- */
.areas{background:var(--bg)}
/* Always renders exactly 6 location cards (home, locations hub, all 6
   service pages) — 3 columns gives a clean 3+3 split with no orphan row. */
.area-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:32px}
.area{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:28px 26px; transition:transform .5s var(--ease), box-shadow .5s var(--ease), border-color .35s ease;
}
.area:hover{transform:translateY(-4px); box-shadow:var(--shadow); border-color:rgba(37,99,235,.28)}
.area-pin{width:40px; height:40px; border-radius:12px; background:rgba(37,99,235,.09); color:var(--blue);
  display:grid; place-items:center; margin-bottom:16px}
.area-pin svg{width:19px; height:19px}
.area b{display:block; font-size:1.06rem; font-weight:650; letter-spacing:-.02em; margin-bottom:7px}
.area p{font-size:.9rem; color:var(--slate); line-height:1.55}
.village-box{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg); padding:32px 34px;
}
.village-box h3{font-size:1rem; margin-bottom:16px; letter-spacing:-.02em}
.chips{display:flex; flex-wrap:wrap; gap:9px}
.chip{
  padding:8px 15px; border-radius:999px; background:var(--bg); border:1px solid var(--line);
  font-size:.86rem; color:var(--slate); font-weight:500;
  transition:background .3s ease, color .3s ease, border-color .3s ease;
}
.chip:hover{background:rgba(37,99,235,.07); color:var(--blue); border-color:rgba(37,99,235,.24)}

/* ---------- faq ---------- */
.faq-list{max-width:840px; margin:52px auto 0; display:grid; gap:12px}
details.faq{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:0 28px; transition:border-color .35s ease, box-shadow .35s ease;
}
details.faq[open]{border-color:rgba(37,99,235,.3); box-shadow:var(--shadow)}
details.faq summary{
  list-style:none; cursor:pointer; padding:24px 0; display:flex; align-items:center;
  justify-content:space-between; gap:20px; font-size:1.06rem; font-weight:620; letter-spacing:-.02em;
}
details.faq summary::-webkit-details-marker{display:none}
.faq-plus{width:26px; height:26px; border-radius:50%; background:var(--bg); flex:none;
  display:grid; place-items:center; transition:transform .4s var(--ease), background .3s ease, color .3s ease}
.faq-plus svg{width:13px; height:13px; color:var(--slate)}
details.faq[open] .faq-plus{transform:rotate(45deg); background:var(--blue)}
details.faq[open] .faq-plus svg{color:#fff}
.faq-body{padding:0 0 26px; font-size:1rem; color:var(--slate); line-height:1.68; max-width:70ch}

/* ---------- contact ---------- */
.contact{background:var(--white)}
.contact-grid{display:grid; grid-template-columns:.92fr 1.08fr; gap:clamp(32px,5vw,64px); align-items:start}
.contact-side h2{margin-bottom:20px}
.contact-methods{display:grid; gap:14px; margin-top:36px}
.cm{
  display:flex; align-items:center; gap:16px; padding:20px 22px; border-radius:var(--radius);
  border:1px solid var(--line); background:var(--bg);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s ease, background .3s ease;
}
.cm:hover{transform:translateX(4px); background:var(--white); box-shadow:var(--shadow-sm); border-color:rgba(37,99,235,.3)}
.cm-icon{width:46px; height:46px; border-radius:13px; display:grid; place-items:center; flex:none;
  background:var(--blue); color:#fff; box-shadow:0 6px 16px rgba(37,99,235,.28)}
.cm-icon svg{width:20px; height:20px}
.cm small{display:block; font-size:.79rem; color:var(--slate); letter-spacing:.02em; margin-bottom:3px}
.cm b{font-size:1.06rem; font-weight:650; letter-spacing:-.02em}

.form-card{
  background:var(--bg); border:1px solid var(--line); border-radius:var(--radius-xl);
  padding:clamp(28px,4vw,44px); box-shadow:var(--shadow);
}
.form-card h3{font-size:1.45rem; margin-bottom:8px}
.form-card > p{font-size:.95rem; color:var(--slate); margin-bottom:28px}
.field{margin-bottom:18px}
.field label{display:block; font-size:.83rem; font-weight:600; color:var(--navy); margin-bottom:8px; letter-spacing:-.01em}
.field input,.field select,.field textarea{
  width:100%; padding:15px 17px; border-radius:14px; border:1px solid var(--line);
  background:var(--white); font-family:inherit; font-size:1rem; color:var(--navy);
  transition:border-color .3s ease, box-shadow .3s ease;
  -webkit-appearance:none; appearance:none;
}
.field select{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 16px center; background-size:17px; padding-right:46px;
}
.field textarea{resize:vertical; min-height:104px}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none; border-color:var(--blue); box-shadow:0 0 0 4px rgba(37,99,235,.12)
}
.field-row{display:grid; grid-template-columns:1fr 1fr; gap:14px}
.form-card .btn{width:100%; margin-top:8px}
.form-note{display:flex; align-items:center; gap:9px; justify-content:center; margin-top:18px;
  font-size:.83rem; color:var(--slate)}
.form-note svg{width:15px; height:15px; color:var(--green)}
.form-hp{position:absolute; left:-10000px; width:1px; height:1px; overflow:hidden}
.form-status{margin:4px 0 14px; padding:12px 14px; border-radius:12px; font-size:.92rem; line-height:1.5;
  background:#FEF2F2; border:1px solid #FECACA; color:#991B1B}
.form-status a{color:#991B1B; font-weight:650; text-decoration:underline}
.field [aria-invalid="true"]{border-color:#DC2626}
.js-quote-form button[disabled]{opacity:.7; cursor:progress; transform:none}
.form-success{
  display:none; text-align:center; padding:40px 20px;
}
.form-success.show{display:block}
.form-success .tick-lg{width:64px; height:64px; margin:0 auto 20px; border-radius:50%;
  background:rgba(16,185,129,.12); border:1px solid rgba(16,185,129,.32); display:grid; place-items:center}
.form-success .tick-lg svg{width:28px; height:28px; color:var(--green)}
.form-success h3{margin-bottom:10px}
.form-success:focus{outline:none}
.form-success p{color:var(--slate); font-size:.98rem}

/* ---------- final cta ---------- */
.final{
  background:
    radial-gradient(860px 480px at 50% 0%, rgba(37,99,235,.42), transparent 66%),
    linear-gradient(170deg,#0B1220,var(--navy));
  color:#fff; text-align:center; position:relative; overflow:hidden;
}
.final h2{color:#fff; margin-bottom:20px; font-size:clamp(2.1rem,5vw,3.6rem)}
.final .lede{color:rgba(226,232,240,.76); margin-bottom:38px}
.final-actions{display:flex; gap:14px; justify-content:center; flex-wrap:wrap}
.final-meta{margin-top:34px; font-size:.9rem; color:rgba(226,232,240,.55)}

/* ---------- footer ---------- */
.footer{background:#080D18; color:rgba(226,232,240,.62); padding:64px 0 0; font-size:.93rem}
.footer .logo .t-fix{fill:#fff}
.footer .logo .t-tap{fill:#60A5FA}
.footer .logo .t-line{fill:#60A5FA}
.footer-grid{display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:52px}
.footer p{line-height:1.65; margin-top:18px; max-width:34ch}
.footer h3{font-size:.79rem; font-weight:650; letter-spacing:.11em; text-transform:uppercase;
  color:#fff; margin:0 0 18px}
.footer ul{list-style:none; padding:0; margin:0; display:grid; gap:11px}
.footer a{transition:color .25s ease}
.footer a:hover{color:#fff}
.footer-bottom{border-top:1px solid rgba(255,255,255,.09); padding:24px 0 34px;
  display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap; font-size:.85rem}

/* ---------- mobile sticky call bar ---------- */
.callbar{
  position:fixed; left:0; right:0; bottom:0; z-index:98; display:none;
  padding:12px 16px calc(12px + env(safe-area-inset-bottom));
  background:rgba(255,255,255,.9); backdrop-filter:saturate(180%) blur(20px);
  border-top:1px solid var(--line); gap:10px;
}
.callbar .btn{flex:1; padding:15px 12px; font-size:.98rem}

/* ---------- reveal ---------- */
.reveal{opacity:0; transform:translateY(26px); transition:opacity .8s var(--ease), transform .8s var(--ease)}
.reveal.in{opacity:1; transform:none}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1; transform:none; transition:none}
  *{animation-duration:.01ms !important; transition-duration:.01ms !important}
  html{scroll-behavior:auto}
}

/* ---------- responsive ---------- */
@media (max-width:1024px){
  .hero-grid{grid-template-columns:1fr; gap:48px}
  .hero-sub{max-width:52ch}
  .grid-3{grid-template-columns:repeat(2,1fr)}
  .area-grid{grid-template-columns:repeat(2,1fr)}
  .about-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr; gap:36px}
  .steps{grid-template-columns:repeat(2,1fr); gap:34px 20px}
  .step::before{display:none}
}
@media (max-width:860px){
  .nav,.header-cta .header-phone{display:none}
  .burger{display:flex}
  .header-cta .btn{display:none}
  .header.scrolled + .mobile-menu, .mobile-menu{background:rgba(255,255,255,.98)}
  .callbar{display:flex}
  body{padding-bottom:76px}
  .trust-inner{grid-template-columns:repeat(2,1fr)}
  .rev-grid{grid-template-columns:1fr}
  .rev-divider{display:none}
  .header:not(.scrolled) .burger span{background:#fff}
}
@media (max-width:620px){
  .grid-3{grid-template-columns:1fr}
  .area-grid{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .head-flex{flex-direction:column; align-items:flex-start; gap:22px}
  .field-row{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .hero{padding-top:126px}
  .rev-summary{padding:28px 24px; gap:22px}
  .about-panel{padding:28px}
  .btn{width:100%}
  .hero-actions .btn, .final-actions .btn{width:100%}
  .callbar .btn{width:auto}
}

/* ---------- brand logo (real wordmark) ---------- */
.logo{position:relative; display:block; line-height:0; flex:none}
.logo img{height:30px; width:auto; display:block}
.logo .logo-light{position:absolute; left:0; top:0; opacity:1; transition:opacity .4s var(--ease)}
.logo .logo-dark{opacity:0; transition:opacity .4s var(--ease)}
.header.scrolled .logo .logo-light{opacity:0}
.header.scrolled .logo .logo-dark{opacity:1}
.footer .logo img{height:28px}
.footer .logo .logo-light{opacity:1}
.footer .logo .logo-dark{opacity:0}
.mobile-menu .logo .logo-dark{opacity:1}
.mobile-menu .logo .logo-light{opacity:0}

/* ---------- photography ---------- */
.shot{
  position:relative; overflow:hidden; border-radius:var(--radius-lg);
  background:var(--bg); box-shadow:var(--shadow-lg);
}
.shot::after{
  content:""; position:absolute; inset:0; pointer-events:none; border-radius:inherit;
  box-shadow:inset 0 0 0 1px rgba(15,23,42,.08);
}
.shot img{width:100%; height:100%; object-fit:cover; display:block; aspect-ratio:3/2}
.shot-tall img{aspect-ratio:4/5}

/* image + copy band used on service and about pages */
.band{display:grid; grid-template-columns:1fr 1fr; gap:clamp(32px,5vw,68px); align-items:center}
.band-rev .shot{order:2}
.band h2{margin-bottom:20px}

.shot-caption{
  position:absolute; left:0; right:0; bottom:0; padding:34px 28px 22px;
  background:linear-gradient(to top, rgba(2,9,24,.86), transparent);
  color:#fff; font-size:.86rem; font-weight:550; letter-spacing:-.01em;
}

@media (max-width:1024px){
  .band{grid-template-columns:1fr; gap:32px}
  .band-rev .shot{order:0}
}

/* ---------- keyboard focus ---------- */
:where(a, button, input, select, textarea, summary):focus-visible{
  outline:3px solid var(--blue);
  outline-offset:3px;
  border-radius:6px;
}
.hero :focus-visible, .page-hero :focus-visible, .about :focus-visible, .final :focus-visible,
.footer :focus-visible{ outline-color:#93C5FD }

.skip-link{
  position:absolute; left:16px; top:-70px; z-index:200;
  padding:13px 22px; border-radius:0 0 12px 12px;
  background:var(--blue); color:#fff; font-weight:600; font-size:.95rem;
  transition:top .25s var(--ease);
}
.skip-link:focus{ top:0 }

/* ---------- trust strip with icons ---------- */
.trust-cell{display:flex; flex-direction:column; align-items:center; gap:2px}
.trust-ico{
  width:34px; height:34px; border-radius:10px; display:grid; place-items:center;
  background:rgba(96,165,250,.14); border:1px solid rgba(96,165,250,.24);
  color:#93C5FD; margin-bottom:12px;
}
.trust-ico svg{width:16px; height:16px}

/* On a narrow viewport the 100deg overlay puts the whole width in its darkest
   band, so the photograph disappears. Switch to a vertical ramp: dark behind
   the copy at the top, easing off lower down where the image can show. */
@media (max-width:860px){
  .hero::before, .page-hero::before{
    background:
      linear-gradient(to bottom, rgba(2,9,24,.94) 0%, rgba(2,9,24,.90) 52%,
                      rgba(1,17,48,.72) 80%, rgba(0,24,72,.50) 100%),
      radial-gradient(600px 380px at 80% 6%, rgba(38,105,255,.22), transparent 62%);
  }
}

/* ---------- hero focal point on narrow screens ----------
   'cover' at phone width shows only the middle ~29% of a 16:9 image, which
   would crop out a right-weighted subject entirely. Shift the focal point. */
@media (max-width:860px){
  .hero-bg, .page-hero-bg{ object-position:68% 40% }
}
@media (max-width:520px){
  .hero-bg, .page-hero-bg{ object-position:72% 42% }
}

/* ---------- proof bar under inner-page heroes ---------- */
.proof-bar .trust-cell{padding:28px 20px}
.proof-bar .trust-cell b{font-size:1.02rem; letter-spacing:-.02em; margin-bottom:5px}
.proof-bar .trust-cell span{font-size:.83rem; line-height:1.4}
.proof-bar .trust-ico{margin-bottom:14px}

/* ---------- pricing / promise band ---------- */
.promise-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:52px}
.promise{
  position:relative; padding:32px 30px; border-radius:var(--radius-lg);
  background:var(--white); border:1px solid var(--line);
  transition:transform .5s var(--ease), box-shadow .5s var(--ease);
}
.promise:hover{transform:translateY(-5px); box-shadow:var(--shadow-lg)}
.promise-num{
  font-size:.76rem; font-weight:700; letter-spacing:.12em; color:var(--blue);
  display:block; margin-bottom:14px;
}
.promise h3{margin-bottom:10px}
.promise p{font-size:.96rem; color:var(--slate); line-height:1.6}
@media (max-width:860px){ .promise-grid{grid-template-columns:1fr} }


/* ============================================================
   Multi-page additions
   ============================================================ */

.nav a.active{color:var(--navy)}
.header:not(.scrolled) .nav a.active{color:#fff}
.nav a.active::after{width:100%}

/* ---------- compact inner-page hero ---------- */
.page-hero{
  position:relative; padding:150px 0 clamp(64px,8vw,96px); overflow:hidden;
  background:var(--brand-navy);
  color:#fff;
}
.page-hero-bg{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  object-position:center 40%; z-index:0;
}
.page-hero::before{
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:
    linear-gradient(to bottom, rgba(2,9,24,.80) 0%, rgba(2,9,24,.10) 190px, rgba(2,9,24,0) 300px),
    linear-gradient(100deg, rgba(2,9,24,.94) 0%, rgba(2,9,24,.85) 36%, rgba(1,17,48,.70) 64%, rgba(0,24,72,.52) 100%),
    radial-gradient(820px 500px at 84% 8%, rgba(38,105,255,.26), transparent 60%);
}
/* One-off: the locations hero is a warm sunset photo meant to stay vivid,
   not dark and moody like every other hero. Lighter overlay, same shape. */
.page-hero.bright::before{
  background:
    linear-gradient(to bottom, rgba(2,9,24,.62) 0%, rgba(2,9,24,.06) 190px, rgba(2,9,24,0) 300px),
    linear-gradient(100deg, rgba(2,9,24,.88) 0%, rgba(2,9,24,.62) 36%, rgba(1,17,48,.38) 64%, rgba(0,24,72,.18) 100%);
}
.page-hero::after{
  content:""; position:absolute; inset:0; pointer-events:none; z-index:1;
  background-image:linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
                   linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(800px 500px at 60% 20%, #000, transparent 74%);
  -webkit-mask-image:radial-gradient(800px 500px at 60% 20%, #000, transparent 74%);
}
.page-hero .wrap{position:relative; z-index:2}
.page-hero h1{color:#fff; margin-bottom:22px; font-size:clamp(2.3rem,5.4vw,4rem); max-width:18ch}
.page-hero h1 em{font-style:normal; background:linear-gradient(100deg,#60A5FA,#3B82F6 46%,#93C5FD);
  -webkit-background-clip:text; background-clip:text; color:transparent}
.page-hero-sub{font-size:clamp(1.02rem,1.6vw,1.2rem); color:rgba(226,232,240,.82);
  line-height:1.62; max-width:56ch; margin-bottom:36px}

/* ---------- breadcrumb ---------- */
.breadcrumb{display:flex; align-items:center; gap:8px; flex-wrap:wrap; margin-bottom:26px;
  font-size:.85rem; color:rgba(226,232,240,.55)}
.breadcrumb a{color:rgba(226,232,240,.72); transition:color .25s ease}
.breadcrumb a:hover{color:#fff}
.breadcrumb svg{width:13px; height:13px; opacity:.5; flex:none}
.breadcrumb [aria-current]{color:#93C5FD; font-weight:550}

/* ---------- cards as links ---------- */
a.card,a.area{display:block; color:inherit}
a.card .tag,a.area .tag{display:inline-flex; align-items:center; gap:6px; margin-top:16px;
  font-size:.8rem; font-weight:600; color:var(--blue); letter-spacing:-.01em}
a.area .tag svg{width:14px;height:14px; transition:transform .4s var(--ease)}
a.area:hover .tag svg{transform:translateX(4px)}

/* ---------- split intro ---------- */
.split{display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(32px,6vw,72px); align-items:start}
.split h2{font-size:clamp(1.9rem,3.6vw,2.7rem)}

.mini-stats{display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:36px;
  padding-top:32px; border-top:1px solid var(--line)}
.mini-stats b{display:block; font-size:1.8rem; font-weight:700; letter-spacing:-.035em;
  line-height:1; margin-bottom:7px; color:var(--navy)}
.mini-stats span{font-size:.85rem; color:var(--slate); line-height:1.45}

/* ---------- symptoms ---------- */
.symptom-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin-top:56px}
.symptom{
  display:flex; gap:16px; align-items:flex-start; padding:26px 28px;
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  transition:transform .5s var(--ease), box-shadow .5s var(--ease), border-color .35s ease;
}
.symptom:hover{transform:translateY(-4px); box-shadow:var(--shadow); border-color:rgba(37,99,235,.28)}
.symptom-icon{width:30px; height:30px; border-radius:50%; flex:none; display:grid; place-items:center;
  background:rgba(37,99,235,.10); color:var(--blue); margin-top:2px}
.symptom-icon svg{width:15px; height:15px}
.symptom b{display:block; font-size:1.04rem; font-weight:650; letter-spacing:-.02em; margin-bottom:6px}
.symptom p{font-size:.94rem; color:var(--slate); line-height:1.58}

/* ---------- values ---------- */
.value-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:22px; margin-top:56px}
.value{background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:34px 32px; transition:transform .5s var(--ease), box-shadow .5s var(--ease)}
.value:hover{transform:translateY(-5px); box-shadow:var(--shadow-lg)}
.value-icon{width:48px; height:48px; border-radius:14px; display:grid; place-items:center;
  margin-bottom:20px; background:linear-gradient(150deg, rgba(37,99,235,.12), rgba(37,99,235,.05));
  border:1px solid rgba(37,99,235,.16); color:var(--blue)}
.value-icon svg{width:21px; height:21px}
.value h3{margin-bottom:10px}
.value p{font-size:.97rem; color:var(--slate); line-height:1.6}

/* ---------- google card inside dark panel ---------- */
.about-panel .gc-head{display:flex; align-items:center; gap:14px; padding-bottom:22px;
  margin-bottom:6px; border-bottom:1px solid rgba(255,255,255,.11)}

.legal{max-width:760px; margin-inline:auto; display:grid; gap:40px}
.legal-block h2{font-size:clamp(1.3rem,2.4vw,1.65rem); margin-bottom:12px}
.legal-block p{color:var(--slate); line-height:1.72}

.symptom-stack{display:grid; gap:14px}
.symptom-stack .symptom{padding:22px 24px}
.band .shot{position:sticky; top:104px}

/* ---------- responsive ---------- */
@media (max-width:1024px){
  .band .shot{position:static}
  .split{grid-template-columns:1fr; gap:28px}
  .symptom-grid{grid-template-columns:1fr}
  .value-grid{grid-template-columns:1fr}
}
@media (max-width:620px){
  .mini-stats{grid-template-columns:1fr; gap:14px}
  .page-hero{padding-top:124px}
}

/* ============================================================
   Pricing
   ============================================================ */
.section-tight{padding:clamp(40px,6vw,72px) 0}

.price-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:52px}
.price-card{
  position:relative; display:flex; flex-direction:column; padding:34px 30px 30px;
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg);
  transition:transform .5s var(--ease), box-shadow .5s var(--ease), border-color .35s ease;
}
.price-card:hover{transform:translateY(-5px); box-shadow:var(--shadow-lg); border-color:rgba(38,105,255,.28)}
.price-kicker{font-size:.74rem; font-weight:700; letter-spacing:.11em; text-transform:uppercase;
  color:var(--blue); margin-bottom:12px}
.price-card h3{font-size:1.2rem}
.price-figure{display:flex; align-items:baseline; gap:9px; margin:20px 0 14px}
.price-from{font-size:.95rem; font-weight:600; color:var(--slate)}
.price-amount{font-size:clamp(2.7rem,4.2vw,3.5rem); font-weight:700; letter-spacing:-.045em; line-height:1;
  font-variant-numeric:tabular-nums}
.nb{white-space:nowrap}
.price-windows{display:flex; flex-direction:column; align-items:flex-start; gap:8px}
.price-window{display:inline-flex; align-self:flex-start; align-items:center; gap:8px; padding:7px 14px;
  border-radius:18px; background:rgba(38,105,255,.08); color:var(--blue-deep); font-size:.88rem; font-weight:600;
  line-height:1.35}
.price-window svg{width:15px; height:15px; flex:none}
.price-fit{margin-top:18px; font-size:.96rem; color:var(--slate); line-height:1.6}
.price-includes{list-style:none; padding:20px 0 0; margin:24px 0 0; border-top:1px solid var(--line);
  display:grid; gap:11px; font-size:.95rem; margin-top:auto}
.price-fit + .price-includes{margin-top:24px}
.price-includes li{display:flex; align-items:center; gap:11px}
.price-tick{width:22px; height:22px; border-radius:50%; flex:none; display:grid; place-items:center;
  background:rgba(16,185,129,.12); border:1px solid rgba(16,185,129,.3); color:#059669}
.price-tick svg{width:12px; height:12px}

.price-card.featured{background:linear-gradient(158deg,var(--navy),#1B2A47); border-color:transparent; color:#fff}
.price-card.featured .price-kicker{color:#93C5FD}
.price-card.featured .price-from,.price-card.featured .price-fit{color:rgba(226,232,240,.76)}
.price-card.featured .price-window{background:rgba(96,165,250,.16); color:#BFDBFE}
.price-card.featured .price-includes{border-top-color:rgba(255,255,255,.14)}
.price-card.featured .price-tick{background:rgba(16,185,129,.16); border-color:rgba(16,185,129,.34); color:#6EE7B7}

.price-periods{margin-top:26px; padding:22px 28px; border-radius:var(--radius);
  background:var(--bg); border:1px solid var(--line); display:grid; gap:8px}
.price-periods p{font-size:.94rem; color:#475569; line-height:1.6}
.price-guide{margin-top:20px; font-size:.92rem; color:#475569; line-height:1.6}
.trust-cell b.stat-phrase,.mini-stats b.stat-phrase{font-size:clamp(1.2rem,2vw,1.5rem); line-height:1.15;
  letter-spacing:-.025em}
.mini-stats b.stat-phrase{margin-bottom:9px}
.rate-head{font-size:clamp(1.15rem,2vw,1.4rem); margin:52px 0 18px}
.rate-list{list-style:none; padding:0; margin:0; background:var(--white); border:1px solid var(--line);
  border-radius:var(--radius-lg); overflow:hidden}
.rate-row{display:grid; grid-template-columns:1fr auto; gap:28px; align-items:center; padding:22px 30px;
  border-bottom:1px solid var(--line)}
.rate-row:last-child{border-bottom:0}
.rate-row b{display:block; font-size:1.02rem; font-weight:650; letter-spacing:-.015em}
.rate-row span{display:block; margin-top:3px; font-size:.9rem; color:var(--slate)}
.rate-val{font-size:1.05rem; font-weight:700; letter-spacing:-.02em; text-align:right;
  font-variant-numeric:tabular-nums; white-space:nowrap}
.price-grid + .rate-list{margin-top:22px}

.price-factors{margin-top:56px}
.price-factors h3{font-size:clamp(1.15rem,2vw,1.4rem); margin-bottom:20px}
.factor-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
.factor{padding:24px 26px; border-radius:var(--radius); background:var(--bg); border:1px solid var(--line)}
.factor b{display:block; font-size:1rem; font-weight:650; letter-spacing:-.015em; margin-bottom:7px}
.factor p{font-size:.93rem; color:var(--slate); line-height:1.6}

.price-assure{display:flex; align-items:center; justify-content:space-between; gap:28px; flex-wrap:wrap;
  margin-top:34px; padding:26px 32px; border-radius:var(--radius-lg);
  background:rgba(38,105,255,.06); border:1px solid rgba(38,105,255,.2)}
.price-assure-copy{display:flex; align-items:flex-start; gap:16px; flex:1 1 380px}
.price-assure-ico{width:44px; height:44px; border-radius:13px; flex:none; display:grid; place-items:center;
  background:var(--blue); color:#fff; box-shadow:0 6px 16px rgba(38,105,255,.28)}
.price-assure-ico svg{width:20px; height:20px}
.price-assure-copy p{font-size:.95rem; color:#475569; line-height:1.55}
.price-assure-copy p:first-child{font-size:1.06rem; color:var(--navy); margin-bottom:4px}
.price-assure-actions{display:flex; gap:12px; flex-wrap:wrap}

.price-fine{margin:34px auto 0; max-width:72ch; text-align:center; font-size:.98rem; color:var(--slate); line-height:1.6}
.price-fine strong{color:var(--navy)}
.price-fine a,.text-link,.panel-link,.form-price a,.final-meta a{color:var(--blue); font-weight:600;
  text-decoration:underline; text-underline-offset:3px}
.about .panel-link,.final-meta a,.form-price a{color:#93C5FD}
.form-price a{color:var(--blue-deep)}
.final-meta a{font-weight:550}

.price-cue{display:grid; grid-template-columns:1.15fr .85fr; gap:clamp(28px,5vw,64px); align-items:center;
  padding:clamp(30px,4.5vw,52px); border-radius:var(--radius-xl); color:#fff;
  background:radial-gradient(700px 320px at 90% 0%, rgba(38,105,255,.4), transparent 65%),
             linear-gradient(160deg,#0B1220,var(--navy)); box-shadow:var(--shadow-lg)}
.price-cue .eyebrow{color:#93C5FD}
.price-cue .eyebrow::before{background:#93C5FD}
.price-cue h2{color:#fff; font-size:clamp(1.7rem,3.2vw,2.5rem); margin-bottom:14px}
.price-cue-copy p{font-size:.96rem; color:rgba(226,232,240,.78); line-height:1.6; max-width:52ch}
.price-cue-side{display:grid; gap:20px}
.price-cue-figs{list-style:none; padding:0; margin:0; display:grid; gap:0;
  border:1px solid rgba(255,255,255,.14); border-radius:var(--radius); overflow:hidden}
.price-cue-figs li{display:grid; grid-template-columns:5.5ch 1fr; align-items:baseline; gap:16px;
  padding:14px 20px; border-bottom:1px solid rgba(255,255,255,.1)}
.price-cue-figs li:last-child{border-bottom:0}
.price-cue-figs b{font-size:1.45rem; font-weight:700; letter-spacing:-.03em; font-variant-numeric:tabular-nums}
.price-cue-figs span{font-size:.86rem; color:rgba(226,232,240,.72)}
.price-cue .btn{width:100%}

/* Five nav items no longer fit beside the phone number and quote button below ~960px (measured:
   the button was clipped by ~32px at 900px), so the compact header, burger menu and sticky call bar
   now start at 960px instead of 860px. */
@media (max-width:960px){
  .nav,.header-cta .header-phone{display:none}
  .burger{display:flex}
  .header-cta .btn{display:none}
  .callbar{display:flex}
  body{padding-bottom:76px}
}

.form-price{margin:-6px 0 22px; padding:14px 16px; border-radius:14px; background:rgba(38,105,255,.06);
  border:1px solid rgba(38,105,255,.16); font-size:.88rem; color:#475569; line-height:1.55}
.form-price strong{color:var(--navy)}
.price-cm{margin-top:14px}

@media (max-width:1024px){
  .price-cue{grid-template-columns:1fr}
  .factor-grid{grid-template-columns:1fr}
}
/* three columns squeeze the longer titles onto two lines here; keep the prices aligned */
@media (min-width:901px) and (max-width:1120px){
  .price-card h3{min-height:2.5em}
}
@media (max-width:900px){
  .price-grid{grid-template-columns:1fr}
}
/* tablet: full-width cards, price and window on the left, description and inclusions on the right */
@media (min-width:621px) and (max-width:900px){
  .price-card{display:grid; grid-template-columns:1fr 1fr; column-gap:40px; align-items:start; padding:32px 36px}
  .price-card > .price-kicker,.price-card > h3,.price-card > .price-figure,
  .price-card > .price-windows{grid-column:1}
  .price-card > .price-fit{grid-column:2; grid-row:1 / span 2; margin-top:0; margin-bottom:14px; align-self:center}
  .price-card > .price-includes{grid-column:2; grid-row:3 / span 2; margin-top:0}
}
@media (max-width:620px){
  .rate-row{grid-template-columns:1fr; gap:8px; padding:20px 22px}
  .rate-val{text-align:left; white-space:normal}
  .price-assure{padding:24px 22px}
  .price-assure-actions,.price-assure-actions .btn{width:100%}
  .price-cue{border-radius:var(--radius-lg)}
  .price-cue-figs li{grid-template-columns:5ch 1fr; padding:13px 16px}
}
