/* ==========================================================================
   PRO MAX RESTORATION LLC — Core Stylesheet
   Brand: Orange (#F35D00, sampled from the company logo) + Black (#0C0C0D) + White / Light Neutral
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root{
  --orange:#f35d00;
  --orange-dark:#d44f00;
  --orange-darker:#ad4000;
  --orange-tint:#fff3ec;
  --orange-tint-2:#ffdfcb;

  --black:#0c0c0d;
  --black-soft:#161618;
  --black-line:#26262a;
  --ink:#1a1a1d;
  --body:#4a4a52;
  --muted:#6f6f7a;

  --white:#ffffff;
  --paper:#f7f7f8;
  --paper-2:#eeeef0;
  --line:#e2e2e6;

  --radius-sm:6px;
  --radius:10px;
  --radius-lg:16px;
  --radius-xl:24px;

  --shadow-sm:0 1px 2px rgba(12,12,13,.06),0 1px 3px rgba(12,12,13,.08);
  --shadow:0 4px 12px rgba(12,12,13,.08),0 2px 4px rgba(12,12,13,.04);
  --shadow-md:0 12px 28px rgba(12,12,13,.10),0 4px 10px rgba(12,12,13,.06);
  --shadow-lg:0 24px 60px rgba(12,12,13,.16),0 8px 20px rgba(12,12,13,.08);
  --shadow-orange:0 10px 26px rgba(243,93,0,.32);

  --font-display:"Barlow Condensed","Arial Narrow",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --font-body:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;

  --wrap:1200px;
  --wrap-narrow:840px;
  --gutter:20px;

  --topbar-h:40px;
  --header-h:90px;
}

/* ---------- 2. Reset ---------- */
*,*::before,*::after{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;scroll-padding-top:120px;}
body{
  margin:0;
  font-family:var(--font-body);
  font-size:17px;
  line-height:1.65;
  color:var(--body);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
img,video{max-width:100%;height:auto;display:block;}
/* Inline icons carry only a viewBox — no width/height attributes. Without a
   size somewhere they stretch to fill their container (a full-width warning
   triangle, etc.). This is the backstop: every component rule below overrides
   it, but an icon dropped into new markup can never blow up again. */
svg{width:1.15em;height:1.15em;flex:none;}
a{color:var(--orange-dark);text-decoration:none;}
a:hover{color:var(--orange-darker);}
button{font-family:inherit;}
ul,ol{margin:0 0 1em;padding-left:1.25em;}
li{margin-bottom:.4em;}
h1,h2,h3,h4,h5{
  font-family:var(--font-display);
  color:var(--ink);
  font-weight:700;
  line-height:1.08;
  margin:0 0 .5em;
  letter-spacing:-.01em;
}
h1{font-size:clamp(2.4rem,5.4vw,4.1rem);text-transform:uppercase;letter-spacing:-.015em;}
h2{font-size:clamp(1.95rem,3.8vw,3rem);text-transform:uppercase;}
h3{font-size:clamp(1.3rem,2.2vw,1.75rem);}
h4{font-size:1.15rem;font-family:var(--font-body);font-weight:700;letter-spacing:0;}
p{margin:0 0 1.1em;}
p:last-child{margin-bottom:0;}
strong{color:var(--ink);font-weight:650;}
hr{border:0;border-top:1px solid var(--line);margin:2.5rem 0;}
:focus-visible{outline:3px solid var(--orange);outline-offset:2px;border-radius:4px;}

.skip-link{
  position:absolute;left:-9999px;top:0;z-index:1000;
  background:var(--orange);color:#fff;padding:12px 20px;font-weight:700;border-radius:0 0 8px 0;
}
.skip-link:focus{left:0;color:#fff;}

/* ---------- 3. Layout ---------- */
.wrap{width:100%;max-width:var(--wrap);margin:0 auto;padding:0 var(--gutter);}
.wrap-narrow{max-width:var(--wrap-narrow);}
.section{padding:clamp(56px,7vw,96px) 0;}
.section-sm{padding:clamp(40px,5vw,64px) 0;}
.section-paper{background:var(--paper);}
.section-dark{background:var(--black);color:#c8c8d0;}
/* Two sections sharing a background read as one block, so their touching
   padding doubles into a dead gap. The first section's bottom padding is
   already the separation. */
.section-dark + .section-dark,
.section-paper + .section-paper{padding-top:0;}
.section-dark h2,.section-dark h3,.section-dark h4{color:#fff;}
.section-dark strong{color:#fff;}
.grid{display:grid;gap:24px;}
.g-2{grid-template-columns:repeat(2,1fr);}
.g-3{grid-template-columns:repeat(3,1fr);}
.g-4{grid-template-columns:repeat(4,1fr);}
.center{text-align:center;}
.mb-0{margin-bottom:0;}

/* ---------- 4. Section headers ---------- */
.eyebrow{
  display:inline-flex;align-items:center;gap:9px;
  font-family:var(--font-body);
  font-size:.75rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  color:var(--orange-dark);margin:0 0 14px;
}
.eyebrow::before{content:"";width:26px;height:3px;background:var(--orange);border-radius:2px;}
.section-dark .eyebrow{color:var(--orange);}
.section-head{max-width:760px;margin-bottom:44px;}
.section-head.center{margin-left:auto;margin-right:auto;}
.section-head.center .eyebrow::before{display:none;}
.section-head p{font-size:1.08rem;}
.lede{font-size:1.15rem;line-height:1.6;color:var(--body);}

/* ---------- 5. Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-family:var(--font-body);font-weight:700;font-size:1rem;line-height:1;
  padding:17px 30px;border-radius:var(--radius);border:2px solid transparent;
  cursor:pointer;text-align:center;
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease,color .18s ease,border-color .18s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-2px);}
.btn:active{transform:translateY(0);}
.btn svg{width:19px;height:19px;flex:none;}
.btn-primary{background:var(--orange);color:#fff;box-shadow:var(--shadow-orange);}
.btn-primary:hover{background:var(--orange-dark);color:#fff;box-shadow:0 14px 32px rgba(243,93,0,.42);}
.btn-dark{background:var(--black);color:#fff;}
.btn-dark:hover{background:var(--black-soft);color:#fff;}
.btn-outline{background:transparent;color:var(--ink);border-color:var(--line);}
.btn-outline:hover{border-color:var(--orange);color:var(--orange-dark);background:var(--orange-tint);}
.btn-ghost-light{background:rgba(255,255,255,.08);color:#fff;border-color:rgba(255,255,255,.28);}
.btn-ghost-light:hover{background:rgba(255,255,255,.16);border-color:#fff;color:#fff;}
.btn-lg{padding:20px 36px;font-size:1.08rem;}
.btn-block{width:100%;}
.btn-row{display:flex;flex-wrap:wrap;gap:14px;align-items:center;}
.btn-row.center{justify-content:center;}

/* ---------- 6. Top bar ---------- */
.topbar{background:var(--black);color:#b8b8c2;font-size:.83rem;height:var(--topbar-h);display:flex;align-items:center;}
.topbar .wrap{display:flex;align-items:center;justify-content:space-between;gap:16px;width:100%;}
.topbar-left{display:flex;align-items:center;gap:20px;min-width:0;}
.topbar-item{display:inline-flex;align-items:center;gap:7px;white-space:nowrap;}
.topbar-item svg{width:14px;height:14px;flex:none;color:var(--orange);}
.topbar a{color:#e6e6ea;font-weight:600;}
.topbar a:hover{color:var(--orange);}
.live-dot{width:8px;height:8px;border-radius:50%;background:var(--orange);flex:none;position:relative;}
.live-dot::after{content:"";position:absolute;inset:-4px;border-radius:50%;border:1px solid var(--orange);opacity:.55;animation:ping 2.4s ease-out infinite;}
@keyframes ping{0%{transform:scale(.7);opacity:.7}70%{transform:scale(1.5);opacity:0}100%{opacity:0}}
.topbar-right{display:flex;align-items:center;gap:14px;}
.lang-switch{display:inline-flex;align-items:center;border:1px solid var(--black-line);border-radius:99px;overflow:hidden;}
.lang-switch a{padding:4px 12px;font-size:.75rem;font-weight:700;letter-spacing:.05em;color:#9a9aa4;line-height:1.5;}
.lang-switch a.is-active{background:var(--orange);color:#fff;}
.lang-switch a:not(.is-active):hover{background:var(--black-line);color:#fff;}

/* ---------- 7. Header / Nav ---------- */
.site-header{
  position:sticky;top:0;z-index:900;background:#fff;
  border-bottom:1px solid var(--line);transition:box-shadow .25s ease;
}
.site-header.is-stuck{box-shadow:0 6px 22px rgba(12,12,13,.10);}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;height:var(--header-h);}
.brand{display:flex;align-items:center;gap:12px;flex:none;}
/* The supplied logo is a ~1.9:1 lockup whose "RESTORATION" line is small, so it
   is sized by height and given room rather than squeezed into a short header. */
.brand img{height:66px;width:auto;}
.mobile-head .brand img{height:54px;}
.footer-brand .brand img{height:80px;}
.brand-mark{
  width:46px;height:46px;border-radius:11px;flex:none;
  background:linear-gradient(140deg,var(--orange) 0%,var(--orange-dark) 100%);
  display:grid;place-items:center;box-shadow:var(--shadow-orange);
}
.brand-mark svg{width:26px;height:26px;color:#fff;}
.brand-text{display:flex;flex-direction:column;line-height:1;min-width:0;}
.brand-name{
  font-family:var(--font-display);font-weight:700;font-size:1.42rem;color:var(--ink);
  text-transform:uppercase;letter-spacing:-.005em;white-space:nowrap;
}
.brand-name em{font-style:normal;color:var(--orange);}
.brand-tag{
  font-size:.62rem;font-weight:700;letter-spacing:.19em;text-transform:uppercase;
  color:var(--muted);margin-top:4px;white-space:nowrap;
}

.nav{margin-left:auto;}
.nav-list{display:flex;align-items:center;gap:2px;list-style:none;margin:0;padding:0;}
.nav-list > li{margin:0;position:relative;}
.nav-link{
  display:flex;align-items:center;gap:6px;position:relative;
  padding:10px 14px;border-radius:8px;
  font-size:.95rem;font-weight:600;color:var(--ink);
  transition:background .18s ease,color .18s ease;
}
.nav-link:hover{background:var(--paper);color:var(--orange-dark);}
.nav-link.is-current{color:var(--orange-dark);}
.nav-link.is-current::after{
  content:"";position:absolute;left:14px;right:14px;bottom:2px;height:2px;background:var(--orange);border-radius:2px;
}
.nav-link .chev{width:11px;height:11px;transition:transform .2s ease;opacity:.6;}
.has-drop:hover .chev,.has-drop:focus-within .chev{transform:rotate(180deg);}
.drop{
  position:absolute;top:calc(100% + 8px);left:0;min-width:290px;
  background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);padding:8px;list-style:none;margin:0;
  opacity:0;visibility:hidden;transform:translateY(8px);
  transition:opacity .2s ease,transform .2s ease,visibility .2s;
}
.has-drop:hover .drop,.has-drop:focus-within .drop{opacity:1;visibility:visible;transform:translateY(0);}
.drop::before{content:"";position:absolute;top:-10px;left:0;right:0;height:10px;}
.drop li{margin:0;}
.drop a{
  display:flex;align-items:center;gap:11px;padding:11px 12px;border-radius:9px;
  font-size:.93rem;font-weight:600;color:var(--ink);line-height:1.3;
}
.drop a:hover{background:var(--orange-tint);color:var(--orange-darker);}
.drop-ico{width:30px;height:30px;border-radius:8px;background:var(--orange-tint);display:grid;place-items:center;flex:none;color:var(--orange-dark);}
.drop-ico svg{width:17px;height:17px;}
.drop a:hover .drop-ico{background:var(--orange);color:#fff;}
/* 14 locations in one column would run off the screen — split into two and
   anchor to the item's right edge so the panel opens inward, not off-canvas. */
.drop-2col{
  min-width:500px;max-width:calc(100vw - 40px);left:auto;right:0;
  display:grid;grid-template-columns:1fr 1fr;gap:0 4px;
}
.drop-2col .drop-all{grid-column:1 / -1;margin-top:6px;padding-top:8px;border-top:1px solid var(--line);}
.drop-2col .drop-all a{justify-content:center;background:var(--paper);font-weight:700;color:var(--orange-dark);}
.drop-2col .drop-all a:hover{background:var(--orange);color:#fff;}
.drop-2col .drop-all a svg{color:inherit;}
.header-cta{display:flex;align-items:center;gap:12px;flex:none;}
.header-phone{display:flex;flex-direction:column;line-height:1.15;text-align:right;}
.header-phone .lbl{font-size:.66rem;font-weight:700;letter-spacing:.13em;text-transform:uppercase;color:var(--muted);}
.header-phone .num{font-family:var(--font-display);font-size:1.4rem;font-weight:700;color:var(--ink);letter-spacing:0;}
.header-phone .num:hover{color:var(--orange-dark);}

.burger{
  display:none;width:46px;height:46px;border-radius:10px;border:1px solid var(--line);
  background:#fff;cursor:pointer;padding:0;place-items:center;
  transition:background .2s ease,border-color .2s ease;
}
.burger:hover{background:var(--orange-tint);border-color:var(--orange);}
.burger span{display:block;width:20px;height:2px;background:var(--ink);border-radius:2px;position:relative;transition:background .2s;}
.burger span::before,.burger span::after{content:"";position:absolute;left:0;width:20px;height:2px;background:var(--ink);border-radius:2px;transition:transform .25s ease;}
.burger span::before{top:-6px;}
.burger span::after{top:6px;}
.burger[aria-expanded="true"] span{background:transparent;}
.burger[aria-expanded="true"] span::before{transform:translateY(6px) rotate(45deg);}
.burger[aria-expanded="true"] span::after{transform:translateY(-6px) rotate(-45deg);}

/* Mobile drawer */
.mobile-nav{
  position:fixed;inset:0;z-index:950;background:rgba(12,12,13,.55);
  opacity:0;visibility:hidden;transition:opacity .28s ease,visibility .28s;
}
.mobile-nav.is-open{opacity:1;visibility:visible;}
.mobile-panel{
  position:absolute;top:0;right:0;bottom:0;width:min(400px,88vw);background:#fff;
  transform:translateX(100%);transition:transform .32s cubic-bezier(.4,0,.2,1);
  display:flex;flex-direction:column;overflow-y:auto;
}
.mobile-nav.is-open .mobile-panel{transform:translateX(0);}
.mobile-head{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;border-bottom:1px solid var(--line);}
.mobile-close{
  width:42px;height:42px;border-radius:10px;border:1px solid var(--line);background:#fff;
  font-size:24px;line-height:1;color:var(--ink);cursor:pointer;
  transition:background .2s ease,border-color .2s ease,color .2s ease;
}
.mobile-close:hover{background:var(--orange);border-color:var(--orange);color:#fff;}
.mobile-links{list-style:none;margin:0;padding:12px;flex:1;}
.mobile-links li{margin:0;}
.mobile-links > li > a{display:block;padding:14px 12px;font-weight:650;font-size:1.05rem;color:var(--ink);border-radius:9px;}
.mobile-links > li > a:hover{background:var(--paper);}
.mobile-sub{list-style:none;margin:0 0 8px;padding:0 0 0 12px;border-left:2px solid var(--orange-tint-2);}
.mobile-sub a{display:block;padding:10px 12px;font-size:.95rem;font-weight:550;color:var(--body);border-radius:8px;}
.mobile-sub a:hover{background:var(--orange-tint);color:var(--orange-darker);}
.mobile-foot{padding:16px 20px 28px;border-top:1px solid var(--line);display:grid;gap:10px;}
.mobile-lang{display:flex;gap:8px;justify-content:center;padding-top:4px;}
.mobile-lang a{padding:8px 18px;border:1px solid var(--line);border-radius:99px;font-size:.85rem;font-weight:700;color:var(--body);}
.mobile-lang a.is-active{background:var(--orange);border-color:var(--orange);color:#fff;}

/* ---------- 8. Hero ---------- */
.hero{
  position:relative;background:var(--black);color:#fff;overflow:hidden;
  padding:clamp(48px,6vw,84px) 0 clamp(56px,7vw,88px);
}
.hero-bg{position:absolute;inset:0;z-index:0;}
.hero-bg img{width:100%;height:100%;object-fit:cover;opacity:.42;}
.hero-bg::after{
  content:"";position:absolute;inset:0;
  background:
    linear-gradient(100deg,rgba(12,12,13,.96) 0%,rgba(12,12,13,.88) 38%,rgba(12,12,13,.55) 70%,rgba(12,12,13,.72) 100%),
    radial-gradient(1000px 520px at 88% 8%,rgba(243,93,0,.30),transparent 62%);
}
.hero-grid-lines{
  position:absolute;inset:0;z-index:1;opacity:.28;pointer-events:none;
  background-image:linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);
  background-size:64px 64px;
  mask-image:linear-gradient(to bottom,#000,transparent 78%);
  -webkit-mask-image:linear-gradient(to bottom,#000,transparent 78%);
}
.hero .wrap{position:relative;z-index:2;}
/* The form panel is tall, so the columns align to the top rather than centring
   a short copy block against a ~900px form. */
.hero-inner{display:grid;grid-template-columns:1.05fr .95fr;gap:48px;align-items:start;}
.hero-copy{max-width:680px;}
.badge-247{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--orange);color:#fff;
  padding:9px 18px 9px 14px;border-radius:99px;
  font-size:.78rem;font-weight:800;letter-spacing:.13em;text-transform:uppercase;
  box-shadow:var(--shadow-orange);margin-bottom:22px;
}
.badge-247 .dot{width:8px;height:8px;border-radius:50%;background:#fff;position:relative;}
.badge-247 .dot::after{content:"";position:absolute;inset:-4px;border-radius:50%;border:1.5px solid rgba(255,255,255,.85);animation:ping 2s ease-out infinite;}
.hero h1{color:#fff;margin-bottom:20px;text-shadow:0 2px 24px rgba(0,0,0,.35);}
.hero h1 .hl{color:var(--orange);}
.hero-sub{font-size:clamp(1.05rem,1.5vw,1.22rem);color:#d4d4dc;max-width:600px;margin-bottom:30px;line-height:1.6;}
.hero-cta{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:34px;}
.hero-phone-btn{
  display:inline-flex;align-items:center;gap:14px;
  background:var(--orange);color:#fff;border-radius:var(--radius);
  padding:14px 30px 14px 20px;box-shadow:var(--shadow-orange);
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}
.hero-phone-btn:hover{background:var(--orange-dark);color:#fff;transform:translateY(-2px);box-shadow:0 16px 36px rgba(243,93,0,.45);}
.hero-phone-btn .ico{width:44px;height:44px;border-radius:50%;background:rgba(255,255,255,.18);display:grid;place-items:center;flex:none;}
.hero-phone-btn .ico svg{width:21px;height:21px;color:#fff;}
.hero-phone-btn .txt{display:flex;flex-direction:column;line-height:1.2;text-align:left;}
.hero-phone-btn .txt .a{font-size:.7rem;font-weight:700;letter-spacing:.13em;text-transform:uppercase;opacity:.92;}
.hero-phone-btn .txt .b{font-family:var(--font-display);font-size:1.62rem;font-weight:700;}
.hero-trust{display:flex;flex-wrap:wrap;gap:10px;padding-top:26px;border-top:1px solid rgba(255,255,255,.14);}
.hero-trust ul{display:contents;}
.hero-trust li{
  display:flex;align-items:center;gap:9px;margin:0;list-style:none;
  font-size:.92rem;font-weight:600;color:#e4e4ea;
  padding:9px 16px;border-radius:99px;
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.15);
  transition:background .22s ease,border-color .22s ease,transform .22s ease,color .22s ease;
}
.hero-trust li:hover{
  background:rgba(243,93,0,.16);border-color:rgba(243,93,0,.55);
  color:#fff;transform:translateY(-2px);
}
.hero-trust svg{width:19px;height:19px;color:var(--orange);flex:none;transition:transform .22s ease;}
.hero-trust li:hover svg{transform:scale(1.15);}

/* Hero form panel — the primary conversion element on the home page, so it
   loads eagerly rather than lazily like the modal's copy. */
.hero-form{
  background:#fff;border-radius:var(--radius-xl);overflow:hidden;
  box-shadow:0 30px 70px rgba(0,0,0,.42),0 10px 24px rgba(0,0,0,.24);
}
.hero-form-head{padding:24px 26px 18px;border-bottom:1px solid var(--line);}
.hero-form-head .hf-badge{
  display:inline-flex;align-items:center;gap:7px;
  background:var(--orange-tint);color:var(--orange-darker);
  padding:6px 13px;border-radius:99px;
  font-size:.68rem;font-weight:800;letter-spacing:.13em;text-transform:uppercase;
  margin-bottom:12px;
}
.hero-form-head .hf-badge svg{width:14px;height:14px;}
.hero-form-head h2{font-size:1.72rem;margin-bottom:7px;color:var(--ink);}
.hero-form-head p{font-size:.93rem;color:var(--muted);margin:0;line-height:1.5;}
.hero-form-body{padding:6px 14px 0;}
.hero-form-body iframe{width:100%;min-height:848px;border:none;display:block;}
.hero-form-note{
  display:flex;align-items:center;justify-content:center;gap:8px;
  margin:0;padding:14px 20px 18px;
  font-size:.85rem;font-weight:600;color:var(--muted);text-align:center;line-height:1.45;
}
.hero-form-note svg{width:15px;height:15px;color:var(--orange);}

/* Hero side card */
.hero-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius-xl);padding:28px;
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  box-shadow:var(--shadow-lg);
}
.hero-card h3{color:#fff;font-size:1.5rem;margin-bottom:6px;}
.hero-card .card-sub{font-size:.94rem;color:#c0c0ca;margin-bottom:20px;}
.hero-card-list{list-style:none;padding:0;margin:0 0 22px;display:grid;gap:11px;}
.hero-card-list li{display:flex;gap:11px;align-items:flex-start;font-size:.95rem;color:#dedee6;margin:0;line-height:1.45;}
.hero-card-list svg{width:20px;height:20px;color:var(--orange);flex:none;margin-top:1px;}
.hero-card .btn{width:100%;}
.hero-card-note{font-size:.8rem;color:#9a9aa6;text-align:center;margin-top:14px;line-height:1.45;}

/* ---------- 9. Emergency strip ---------- */
.strip{background:var(--orange);color:#fff;padding:20px 0;}
.strip .wrap{display:flex;align-items:center;justify-content:center;gap:14px 30px;flex-wrap:wrap;text-align:center;}
.strip-text{font-family:var(--font-display);font-size:clamp(1.3rem,2.4vw,1.85rem);font-weight:700;text-transform:uppercase;line-height:1.15;}
.strip a.strip-num{
  display:inline-flex;align-items:center;gap:10px;background:#fff;color:var(--black);
  padding:13px 26px;border-radius:99px;font-weight:800;font-size:1.12rem;
  transition:transform .18s ease,box-shadow .18s ease;
}
.strip a.strip-num:hover{transform:translateY(-2px);box-shadow:0 12px 26px rgba(0,0,0,.22);color:var(--orange-darker);}
.strip a.strip-num svg{width:19px;height:19px;}

/* ---------- 10. Service cards ---------- */
.svc-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:22px;}
.svc-card{
  position:relative;display:flex;flex-direction:column;
  background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:30px 26px 26px;overflow:hidden;
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.svc-card::before{
  content:"";position:absolute;top:0;left:0;right:0;height:4px;
  background:linear-gradient(90deg,var(--orange),var(--orange-dark));
  transform:scaleX(0);transform-origin:left;transition:transform .35s cubic-bezier(.4,0,.2,1);
}
.svc-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-md);border-color:var(--orange-tint-2);}
.svc-card:hover::before{transform:scaleX(1);}
.svc-ico{
  width:56px;height:56px;border-radius:14px;background:var(--orange-tint);
  display:grid;place-items:center;color:var(--orange-dark);margin-bottom:18px;
  transition:background .25s ease,color .25s ease,transform .25s ease;
}
.svc-ico svg{width:28px;height:28px;}
.svc-card:hover .svc-ico{background:var(--orange);color:#fff;transform:scale(1.06);}
.svc-card h3{font-size:1.42rem;margin-bottom:10px;}
.svc-card p{font-size:.98rem;margin-bottom:18px;color:var(--body);}
.svc-card .svc-link{
  margin-top:auto;display:inline-flex;align-items:center;gap:8px;
  font-weight:700;font-size:.93rem;color:var(--orange-dark);
}
.svc-card .svc-link svg{width:16px;height:16px;transition:transform .22s ease;}
.svc-card:hover .svc-link svg{transform:translateX(4px);}
.svc-card .pri-tag{
  position:absolute;top:18px;right:18px;
  font-size:.62rem;font-weight:800;letter-spacing:.11em;text-transform:uppercase;
  background:var(--black);color:#fff;padding:5px 10px;border-radius:99px;
}

/* ---------- 11. Split feature ---------- */
.split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(32px,5vw,64px);align-items:center;}
.split.reverse .split-media{order:2;}
.split-media{position:relative;border-radius:var(--radius-xl);overflow:hidden;box-shadow:var(--shadow-md);background:var(--paper-2);}
.split-media img{width:100%;aspect-ratio:4/3;object-fit:cover;transition:transform .6s cubic-bezier(.25,.46,.45,.94);}
.split-media:hover img{transform:scale(1.04);}
.split-media .media-badge{
  position:absolute;left:20px;bottom:20px;
  background:rgba(12,12,13,.82);color:#fff;border-radius:12px;padding:12px 18px;
  backdrop-filter:blur(8px);display:flex;align-items:center;gap:12px;
}
.split-media .media-badge svg{width:22px;height:22px;color:var(--orange);flex:none;}
/* The label and sub-label are plain spans inside a span — they need to be
   block-level or they run together on one line. */
.split-media .media-badge .mb-t{
  display:block;font-family:var(--font-display);font-size:1.18rem;font-weight:700;
  line-height:1.1;text-transform:uppercase;
}
.split-media .media-badge .mb-s{display:block;font-size:.76rem;color:#b8b8c2;margin-top:2px;}
.check-list{list-style:none;padding:0;margin:0 0 26px;display:grid;gap:12px;}
.check-list li{display:flex;gap:12px;align-items:flex-start;margin:0;font-size:1rem;line-height:1.5;}
.check-list svg{width:22px;height:22px;color:var(--orange);flex:none;margin-top:2px;}
.section-dark .check-list li{color:#d4d4dc;}

/* ---------- 12. Process steps ---------- */
/* Sizes to the container, not the viewport: 4-across at full width, but the
   narrower article column on service/area pages gets a readable 2x2 instead of
   four squeezed strips. */
.steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:22px;counter-reset:step;}
.with-side .steps{grid-template-columns:repeat(2,1fr);}
/* The connector chevrons only make sense on a single unbroken row. */
.with-side .step::after{display:none;}
.step{
  position:relative;padding:30px 24px 26px;background:#fff;
  border:1px solid var(--line);border-radius:var(--radius-lg);
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.step:hover{transform:translateY(-5px);box-shadow:var(--shadow-md);border-color:var(--orange-tint-2);}
.section-dark .step{background:var(--black-soft);border-color:var(--black-line);}
.section-dark .step:hover{border-color:rgba(243,93,0,.45);box-shadow:none;}
.step-num{
  width:46px;height:46px;border-radius:12px;background:var(--black);color:#fff;
  font-family:var(--font-display);font-size:1.5rem;font-weight:700;
  display:grid;place-items:center;margin-bottom:16px;
  transition:background .25s ease,transform .25s ease;
}
.step:hover .step-num{background:var(--orange);transform:scale(1.06);}
.section-dark .step-num{background:var(--orange);}
.section-dark .step:hover .step-num{background:var(--orange-dark);}
.step h4{margin-bottom:8px;font-size:1.12rem;}
.step p{font-size:.94rem;margin:0;}
.step::after{
  content:"";position:absolute;top:52px;right:-15px;width:8px;height:8px;z-index:2;
  border-top:2px solid var(--orange);border-right:2px solid var(--orange);transform:rotate(45deg);
}
.step:last-child::after{display:none;}

/* ---------- 13. Why / feature tiles ---------- */
.why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:20px;}
.why-tile{
  padding:28px 24px;border-radius:var(--radius-lg);
  background:var(--black-soft);border:1px solid var(--black-line);
  transition:transform .25s ease,border-color .25s ease;
}
.why-tile:hover{transform:translateY(-4px);border-color:rgba(243,93,0,.4);}
.why-tile .wt-ico{width:50px;height:50px;border-radius:13px;background:rgba(243,93,0,.14);display:grid;place-items:center;color:var(--orange);margin-bottom:16px;}
.why-tile .wt-ico svg{width:25px;height:25px;}
.why-tile h4{color:#fff;margin-bottom:8px;font-size:1.1rem;}
.why-tile p{font-size:.94rem;color:#a8a8b4;margin:0;}

/* ---------- 14. Areas ---------- */
.areas-layout{display:grid;grid-template-columns:1fr 1fr;gap:clamp(32px,5vw,60px);align-items:start;}
.area-list{display:grid;grid-template-columns:repeat(auto-fill,minmax(190px,1fr));gap:10px;list-style:none;padding:0;margin:0;}
.area-list li{margin:0;}
.area-list a{
  display:flex;align-items:center;gap:10px;padding:13px 15px;
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  font-size:.94rem;font-weight:600;color:var(--ink);
  transition:border-color .2s ease,background .2s ease,transform .2s ease;
}
.area-list a:hover{border-color:var(--orange);background:var(--orange-tint);color:var(--orange-darker);transform:translateX(3px);}
.area-list svg{width:16px;height:16px;color:var(--orange);flex:none;}
.area-list a.is-primary{background:var(--black);border-color:var(--black);color:#fff;}
.area-list a.is-primary:hover{background:var(--orange);border-color:var(--orange);color:#fff;}
.area-map{
  border-radius:var(--radius-xl);overflow:hidden;border:1px solid var(--line);
  box-shadow:var(--shadow);background:var(--paper-2);
}
.area-map iframe{display:block;width:100%;height:420px;border:0;}

/* ---------- 15. Referral banner ---------- */
.referral{
  position:relative;overflow:hidden;border-radius:var(--radius-xl);
  background:linear-gradient(115deg,var(--orange) 0%,var(--orange-dark) 55%,var(--orange-darker) 100%);
  color:#fff;padding:clamp(34px,5vw,54px);
  display:grid;grid-template-columns:1fr auto;gap:32px;align-items:center;
  box-shadow:var(--shadow-md);
}
.referral::before{
  content:"";position:absolute;top:-40%;right:-6%;width:420px;height:420px;border-radius:50%;
  background:radial-gradient(circle,rgba(255,255,255,.20),transparent 68%);pointer-events:none;
}
.referral-copy{position:relative;z-index:1;max-width:640px;}
.referral .r-eyebrow{
  display:inline-block;background:rgba(255,255,255,.2);border:1px solid rgba(255,255,255,.35);
  padding:6px 14px;border-radius:99px;font-size:.72rem;font-weight:800;letter-spacing:.13em;
  text-transform:uppercase;margin-bottom:14px;
}
.referral .r-eyebrow svg{
  width:14px;height:14px;display:inline-block;vertical-align:-3px;margin-right:5px;
}
.referral h2{color:#fff;margin-bottom:12px;}
.referral h2 .amt{font-size:1.25em;}
.referral p{color:rgba(255,255,255,.94);margin-bottom:0;font-size:1.03rem;}
.referral .terms{font-size:.82rem;color:rgba(255,255,255,.78);margin-top:14px;}
.referral-cta{position:relative;z-index:1;display:grid;gap:12px;min-width:230px;}
.referral-cta .btn{background:#fff;color:var(--orange-darker);box-shadow:0 10px 26px rgba(0,0,0,.18);}
.referral-cta .btn:hover{background:var(--black);color:#fff;}

/* ---------- 16. Gallery ---------- */
#sg-gallery-root{max-width:1200px;margin:0 auto;}
.sg-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:10px;}
.sg-item{position:relative;overflow:hidden;border-radius:10px;background:#0a0a0a;cursor:pointer;aspect-ratio:1/1;}
.sg-item img,.sg-item video{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s cubic-bezier(.25,.46,.45,.94),filter .5s ease;}
.sg-item:hover img,.sg-item:hover video{transform:scale(1.04);filter:brightness(1.08);}
.sg-item::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 50%,rgba(0,0,0,.35) 100%);opacity:0;transition:opacity .4s;pointer-events:none;}
.sg-item:hover::after{opacity:1;}
.sg-item .sg-play{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:48px;height:48px;background:rgba(255,255,255,.9);border-radius:50%;display:flex;align-items:center;justify-content:center;pointer-events:none;z-index:2;}
.sg-item .sg-play::after{content:"";display:block;width:0;height:0;border-style:solid;border-width:10px 0 10px 18px;border-color:transparent transparent transparent #000;margin-left:3px;}
.sg-pagination{display:flex;align-items:center;justify-content:center;gap:8px;margin-top:24px;}
.sg-page-btn{background:#1a1a1a;color:#fff;border:1px solid #333;padding:8px 18px;border-radius:8px;cursor:pointer;font-size:14px;font-weight:500;transition:all .25s;}
.sg-page-btn:hover:not(:disabled){background:#333;border-color:#555;transform:translateY(-1px);}
.sg-page-btn:disabled{opacity:.3;cursor:default;}
.sg-page-btn.active{background:var(--orange);color:#fff;border-color:var(--orange);font-weight:700;}
.sg-overlay{position:fixed;inset:0;background:rgba(0,0,0,.95);z-index:9999;display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity .35s;cursor:zoom-out;-webkit-user-select:none;user-select:none;}
.sg-overlay.active{opacity:1;}
.sg-overlay .sg-lb-img,.sg-overlay .sg-lb-vid{max-width:90vw;max-height:85vh;object-fit:contain;border-radius:8px;box-shadow:0 24px 80px rgba(0,0,0,.7);opacity:0;transition:opacity .35s ease;}
.sg-overlay .sg-lb-img.visible,.sg-overlay .sg-lb-vid.visible{opacity:1;}
.sg-close{position:absolute;top:16px;right:20px;background:none;border:none;color:#fff;font-size:32px;cursor:pointer;opacity:.7;transition:opacity .2s;z-index:10;}
.sg-close:hover{opacity:1;}
.sg-nav{position:absolute;top:50%;transform:translateY(-50%);background:rgba(255,255,255,.12);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,.15);color:#fff;width:52px;height:52px;border-radius:50%;font-size:24px;cursor:pointer;transition:background .25s,transform .25s;z-index:10;display:flex;align-items:center;justify-content:center;}
.sg-nav:hover{background:rgba(255,255,255,.25);transform:translateY(-50%) scale(1.08);}
.sg-nav.prev{left:16px;}
.sg-nav.next{right:16px;}
.sg-counter{position:absolute;bottom:20px;left:50%;transform:translateX(-50%);color:rgba(255,255,255,.7);font-size:14px;font-weight:500;letter-spacing:.5px;z-index:10;}

/* ---------- 16b. Reviews widget ---------- */
/* The LeadConnector widget measures and sets its own iframe height, so the
   wrapper only supplies full width and a minimum so the section never
   collapses to nothing while the widget is still loading. */
.reviews-embed{width:100%;}
.reviews-embed iframe{
  display:block;width:100%;min-width:100%;min-height:120px;border:none;overflow:hidden;
}

/* ---------- 17. Form panel ---------- */
.form-layout{display:grid;grid-template-columns:.95fr 1.05fr;gap:clamp(30px,4.5vw,56px);align-items:start;}
.form-panel{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius-xl);
  padding:clamp(18px,2.4vw,26px);box-shadow:var(--shadow-md);
}
.form-panel .form-title{
  font-family:var(--font-display);font-size:1.5rem;font-weight:700;color:var(--ink);
  text-transform:uppercase;margin:4px 0 4px;
}
.form-panel .form-sub{font-size:.92rem;color:var(--muted);margin-bottom:16px;}
.form-embed{position:relative;width:100%;min-height:848px;border-radius:10px;overflow:hidden;}
.form-embed iframe{width:100%;height:100%;min-height:848px;border:none;border-radius:10px;display:block;}
.contact-cards{display:grid;gap:14px;margin-bottom:26px;}
.contact-card{
  display:flex;gap:16px;align-items:flex-start;
  background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:20px;
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.contact-card:hover{
  transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:var(--orange-tint-2);
}
.contact-card .cc-ico{
  width:46px;height:46px;border-radius:12px;background:var(--orange-tint);
  display:grid;place-items:center;color:var(--orange-dark);flex:none;
  transition:background .25s ease,color .25s ease,transform .25s ease;
}
.contact-card:hover .cc-ico{background:var(--orange);color:#fff;transform:scale(1.06);}
.contact-card .cc-ico svg{width:22px;height:22px;}
.contact-card .cc-label{font-size:.7rem;font-weight:800;letter-spacing:.13em;text-transform:uppercase;color:var(--muted);margin-bottom:4px;}
.contact-card .cc-value{font-size:1.06rem;font-weight:650;color:var(--ink);line-height:1.4;word-break:break-word;}
.contact-card a.cc-value:hover{color:var(--orange-dark);}
.section-dark .contact-card{background:var(--black-soft);border-color:var(--black-line);}
.section-dark .contact-card:hover{border-color:rgba(243,93,0,.45);box-shadow:none;}
.section-dark .contact-card .cc-value{color:#fff;}
.section-dark .contact-card .cc-ico{background:rgba(243,93,0,.15);color:var(--orange);}

/* ---------- 18. Page header (interior) ---------- */
.page-head{
  position:relative;background:var(--black);color:#fff;overflow:hidden;
  padding:clamp(48px,6vw,80px) 0 clamp(40px,5vw,64px);
}
.page-head::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(820px 420px at 82% 0%,rgba(243,93,0,.28),transparent 62%);
}
.page-head .hero-bg img{opacity:.26;}
.page-head .wrap{position:relative;z-index:2;}
.page-head h1{color:#fff;margin-bottom:16px;}
.page-head .lede{color:#c8c8d2;max-width:720px;font-size:1.1rem;}
.crumbs{display:flex;flex-wrap:wrap;align-items:center;gap:8px;font-size:.85rem;color:#8f8f9c;margin-bottom:18px;list-style:none;padding:0;}
.crumbs li{margin:0;display:flex;align-items:center;gap:8px;}
.crumbs a{color:#b8b8c4;font-weight:600;}
.crumbs a:hover{color:var(--orange);}
.crumbs .sep{opacity:.5;}
.crumbs [aria-current]{color:var(--orange);font-weight:600;}
.page-head-cta{display:flex;flex-wrap:wrap;gap:14px;margin-top:28px;}

/* ---------- 19. Prose ---------- */
.prose h2{margin-top:2.2em;}
.prose h2:first-child{margin-top:0;}
.prose h3{margin-top:1.8em;font-size:1.35rem;}
.prose ul,.prose ol{margin-bottom:1.4em;}
.prose li{line-height:1.6;}
.prose a{font-weight:600;text-decoration:underline;text-underline-offset:2px;}
.prose .updated{font-size:.9rem;color:var(--muted);border-left:3px solid var(--orange);padding-left:14px;margin-bottom:2em;}

/* ---------- 20. Sidebar ---------- */
.with-side{display:grid;grid-template-columns:1fr 340px;gap:clamp(32px,4vw,52px);align-items:start;}
.side-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:24px;box-shadow:var(--shadow-sm);margin-bottom:20px;
}
.side-card.is-dark{background:var(--black);border-color:var(--black);color:#c2c2cc;}
.side-card.is-dark h3,.side-card.is-dark h4{color:#fff;}
.side-card h4{
  font-size:.78rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;
  color:var(--muted);margin-bottom:16px;
}
.side-card.is-dark h4{color:var(--orange);}
.side-list{list-style:none;padding:0;margin:0;display:grid;gap:2px;}
.side-list li{margin:0;}
.side-list a{
  display:flex;align-items:center;gap:10px;padding:11px 12px;border-radius:9px;
  font-size:.94rem;font-weight:600;color:var(--ink);
  transition:background .18s ease,color .18s ease;
}
.side-list a:hover{background:var(--orange-tint);color:var(--orange-darker);}
.side-list a.is-current{background:var(--orange);color:#fff;}
.side-list a.is-current:hover{background:var(--orange-dark);color:#fff;}
.side-list svg{width:15px;height:15px;flex:none;opacity:.7;}
.side-cta-phone{
  display:block;font-family:var(--font-display);font-size:2rem;font-weight:700;
  color:#fff;text-align:center;margin:6px 0 14px;
}
.side-cta-phone:hover{color:var(--orange);}
.sticky-side{position:sticky;top:110px;}

/* ---------- 21. FAQ ---------- */
.faq{display:grid;gap:12px;max-width:900px;}
.faq-item{border:1px solid var(--line);border-radius:var(--radius-lg);background:#fff;overflow:hidden;transition:border-color .2s ease,box-shadow .2s ease;}
.faq-item[open]{border-color:var(--orange-tint-2);box-shadow:var(--shadow-sm);}
.faq-item summary{
  list-style:none;cursor:pointer;padding:20px 56px 20px 22px;position:relative;
  font-weight:650;font-size:1.06rem;color:var(--ink);line-height:1.45;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{
  content:"";position:absolute;right:22px;top:26px;width:11px;height:11px;
  border-right:2px solid var(--orange);border-bottom:2px solid var(--orange);
  transform:rotate(45deg);transition:transform .25s ease;
}
.faq-item[open] summary::after{transform:rotate(-135deg);top:29px;}
.faq-item summary:hover{color:var(--orange-dark);}
.faq-body{padding:0 22px 22px;font-size:1rem;color:var(--body);}
.faq-body p:last-child{margin-bottom:0;}

/* ---------- 22. Footer ---------- */
.site-footer{background:var(--black);color:#9a9aa6;padding:clamp(48px,6vw,72px) 0 0;font-size:.95rem;}
.footer-top{display:grid;grid-template-columns:1.5fr 1fr 1fr 1.2fr;gap:40px;padding-bottom:44px;}
.footer-brand .brand{margin-bottom:18px;}
.footer-brand .brand-name{color:#fff;}
.footer-brand .brand-tag{color:#7d7d8a;}
.footer-about{font-size:.94rem;line-height:1.65;color:#9a9aa6;margin-bottom:20px;max-width:360px;}
.footer-nap{display:grid;gap:12px;margin-bottom:20px;}
.footer-nap-item{display:flex;gap:12px;align-items:flex-start;font-size:.94rem;line-height:1.5;}
.footer-nap-item svg{width:18px;height:18px;color:var(--orange);flex:none;margin-top:3px;}
.footer-nap-item a{color:#e2e2e8;font-weight:600;}
.footer-nap-item a:hover{color:var(--orange);}
.footer-col h4{
  color:#fff;font-family:var(--font-body);font-size:.78rem;font-weight:800;
  letter-spacing:.14em;text-transform:uppercase;margin-bottom:18px;
}
.footer-col ul{list-style:none;padding:0;margin:0;display:grid;gap:9px;}
.footer-col li{margin:0;}
.footer-col a{color:#9a9aa6;font-size:.94rem;transition:color .18s ease,padding-left .18s ease;display:inline-block;}
.footer-col a:hover{color:var(--orange);padding-left:4px;}
.footer-cta-box{
  background:var(--black-soft);border:1px solid var(--black-line);border-radius:var(--radius-lg);padding:24px;
}
.footer-cta-box .fc-label{font-size:.72rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:var(--orange);margin-bottom:8px;}
.footer-cta-box .fc-phone{display:block;font-family:var(--font-display);font-size:2.1rem;font-weight:700;color:#fff;line-height:1.1;margin-bottom:6px;}
.footer-cta-box .fc-phone:hover{color:var(--orange);}
.footer-cta-box .fc-hours{font-size:.88rem;color:#8a8a96;margin-bottom:16px;}
.footer-areas{border-top:1px solid var(--black-line);padding:26px 0;}
.footer-areas h4{color:#fff;font-family:var(--font-body);font-size:.78rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;margin-bottom:14px;}
.footer-areas-list{display:flex;flex-wrap:wrap;gap:8px 6px;list-style:none;padding:0;margin:0;}
.footer-areas-list li{margin:0;}
.footer-areas-list a{font-size:.85rem;color:#8a8a96;background:var(--black-soft);border:1px solid var(--black-line);padding:6px 12px;border-radius:99px;display:inline-block;transition:all .18s ease;}
.footer-areas-list a:hover{color:#fff;border-color:var(--orange);background:rgba(243,93,0,.12);}
.footer-bottom{
  border-top:1px solid var(--black-line);padding:22px 0 100px;
  display:flex;flex-wrap:wrap;gap:12px 26px;align-items:center;justify-content:space-between;
  font-size:.85rem;color:#75757f;
}
.footer-bottom a{color:#8a8a96;}
.footer-bottom a:hover{color:var(--orange);}
.footer-legal{display:flex;flex-wrap:wrap;gap:8px 18px;list-style:none;padding:0;margin:0;}
.footer-legal li{margin:0;}

/* ---------- 22b. Request-service modal ---------- */
.modal{
  position:fixed;inset:0;z-index:980;display:flex;align-items:center;justify-content:center;
  padding:20px;opacity:0;visibility:hidden;transition:opacity .28s ease,visibility .28s;
}
.modal.is-open{opacity:1;visibility:visible;}
.modal-backdrop{position:absolute;inset:0;background:rgba(12,12,13,.72);backdrop-filter:blur(3px);}
.modal-panel{
  position:relative;z-index:1;width:min(560px,100%);max-height:calc(100vh - 40px);
  background:#fff;border-radius:var(--radius-xl);box-shadow:var(--shadow-lg);
  display:flex;flex-direction:column;overflow:hidden;
  transform:translateY(18px) scale(.98);transition:transform .32s cubic-bezier(.4,0,.2,1);
}
.modal.is-open .modal-panel{transform:none;}
.modal-close{
  position:absolute;top:12px;right:12px;z-index:2;
  width:40px;height:40px;border-radius:10px;border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.12);color:#fff;font-size:24px;line-height:1;cursor:pointer;
  transition:background .2s ease,transform .2s ease;
}
.modal-close:hover{background:rgba(255,255,255,.28);transform:rotate(90deg);}
.modal-head{background:var(--black);color:#c8c8d0;padding:26px 26px 22px;flex:none;}
.modal-eyebrow{
  display:inline-flex;align-items:center;gap:7px;
  font-size:.7rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;
  color:var(--orange);margin-bottom:10px;
}
.modal-eyebrow svg{width:15px;height:15px;}
.modal-head h2{color:#fff;font-size:1.75rem;margin-bottom:8px;}
.modal-head p{font-size:.94rem;color:#a8a8b4;margin-bottom:18px;}
.modal-call{
  display:flex;align-items:center;gap:13px;
  background:var(--orange);color:#fff;border-radius:var(--radius);padding:12px 20px;
  transition:background .2s ease,transform .2s ease;
}
.modal-call:hover{background:var(--orange-dark);color:#fff;transform:translateY(-2px);}
.modal-call svg{width:22px;height:22px;flex:none;}
.modal-call .mc-a{display:block;font-size:.68rem;font-weight:700;letter-spacing:.13em;text-transform:uppercase;opacity:.9;}
.modal-call .mc-b{display:block;font-family:var(--font-display);font-size:1.5rem;font-weight:700;line-height:1.1;}
.modal-body{padding:8px 18px 18px;overflow-y:auto;flex:1;-webkit-overflow-scrolling:touch;}
.modal-body iframe{width:100%;min-height:848px;border:none;display:block;}
.modal-fallback{font-size:.84rem;color:var(--muted);text-align:center;margin:10px 0 0;}
@media (max-width:600px){
  .modal{padding:0;}
  .modal-panel{width:100%;height:100%;max-height:100%;border-radius:0;}
  .modal-head{padding:20px 20px 18px;}
  .modal-head h2{font-size:1.45rem;}
}

/* ---------- 23. Sticky mobile call bar ---------- */
.sticky-cta{
  position:fixed;left:0;right:0;bottom:0;z-index:940;display:none;
  background:rgba(12,12,13,.97);backdrop-filter:blur(12px);
  border-top:1px solid var(--black-line);
  padding:10px 12px calc(10px + env(safe-area-inset-bottom));
  gap:10px;box-shadow:0 -6px 24px rgba(0,0,0,.28);
}
.sticky-cta a{
  flex:1;display:flex;align-items:center;justify-content:center;gap:9px;
  padding:15px 12px;border-radius:11px;font-weight:800;font-size:1rem;line-height:1;
}
.sticky-cta .sc-call{background:var(--orange);color:#fff;box-shadow:var(--shadow-orange);}
.sticky-cta .sc-call:hover{background:var(--orange-dark);color:#fff;}
.sticky-cta .sc-quote{background:rgba(255,255,255,.1);color:#fff;border:1px solid rgba(255,255,255,.25);}
.sticky-cta svg{width:19px;height:19px;flex:none;}

/* ---------- 24. Misc ---------- */
.note-box{
  background:var(--orange-tint);border:1px solid var(--orange-tint-2);border-left:4px solid var(--orange);
  border-radius:var(--radius);padding:18px 20px;font-size:.96rem;color:var(--ink);margin:0 0 24px;
}
.note-box strong{color:var(--orange-darker);}
/* Kept inline (not flex) so "<strong>Title</strong><br>body" still flows. */
.note-box svg{
  width:20px;height:20px;display:inline-block;vertical-align:-4px;
  margin-right:7px;color:var(--orange-dark);
}
.stat-row{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:20px;}
.stat{
  padding:22px 20px;background:#fff;border:1px solid var(--line);
  border-radius:var(--radius-lg);text-align:center;
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.stat:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:var(--orange-tint-2);}
.section-dark .stat{background:var(--black-soft);border-color:var(--black-line);}
.section-dark .stat:hover{border-color:rgba(243,93,0,.45);box-shadow:none;}
.stat .s-num{font-family:var(--font-display);font-size:2.6rem;font-weight:700;color:var(--orange);line-height:1;margin-bottom:6px;}
.stat .s-lbl{font-size:.9rem;font-weight:600;color:var(--body);}
.section-dark .stat .s-lbl{color:#a8a8b4;}
.reveal{opacity:0;transform:translateY(22px);transition:opacity .7s cubic-bezier(.2,.6,.3,1),transform .7s cubic-bezier(.2,.6,.3,1);}
.reveal.is-in{opacity:1;transform:none;}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important;scroll-behavior:auto!important;}
  .reveal{opacity:1;transform:none;}
}

/* ---------- 25. Responsive ---------- */
/* Six nav items plus the phone block plus the CTA is too much below this
   width — drop the phone block (it is still in the top bar and the CTA). */
@media (max-width:1180px){
  .header-phone{display:none;}
}
@media (max-width:1080px){
  .hero-inner{grid-template-columns:1fr;gap:40px;}
  .hero-card,.hero-form{max-width:560px;}
  .footer-top{grid-template-columns:1fr 1fr;gap:34px;}
  .steps{grid-template-columns:repeat(2,1fr);}
  .step:nth-child(2)::after{display:none;}
  .with-side{grid-template-columns:1fr;}
  .sticky-side{position:static;}
}
@media (max-width:960px){
  .nav,.header-cta .btn{display:none;}
  .burger{display:grid;}
  .header-phone{display:none;}
  .areas-layout,.form-layout{grid-template-columns:1fr;}
  .split{grid-template-columns:1fr;gap:32px;}
  .split.reverse .split-media{order:0;}
  .g-3,.g-4{grid-template-columns:repeat(2,1fr);}
  .referral{grid-template-columns:1fr;}
  .referral-cta{min-width:0;}
  .sticky-cta{display:flex;}
  .site-footer{padding-bottom:0;}
  .sg-grid{grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:8px;}
  .sg-nav{width:40px;height:40px;font-size:18px;}
  .sg-nav.prev{left:8px;}
  .sg-nav.next{right:8px;}
}
@media (max-width:720px){
  :root{--header-h:74px;}
  body{font-size:16px;}
  .topbar-left .topbar-item.hide-sm{display:none;}
  .steps{grid-template-columns:1fr;}
  .step::after{display:none;}
  .g-2,.g-3,.g-4{grid-template-columns:1fr;}
  .footer-top{grid-template-columns:1fr;}
  .brand-tag{display:none;}
  .brand img{height:50px;}
  .mobile-head .brand img{height:46px;}
  .footer-brand .brand img{height:64px;}
  .hero-trust{gap:10px 18px;}
  .btn{width:100%;}
  .btn-row .btn{width:100%;}
  .hero-cta{flex-direction:column;align-items:stretch;}
  .hero-phone-btn{justify-content:center;}
  .footer-bottom{flex-direction:column;align-items:flex-start;text-align:left;}
}
@media (max-width:480px){
  :root{--gutter:16px;}
  .sg-grid{grid-template-columns:repeat(2,1fr);gap:6px;}
  .brand-name{font-size:1.16rem;}
  .brand-mark{width:40px;height:40px;}
  .topbar{font-size:.78rem;}
  .strip .wrap{flex-direction:column;}
}

/* ---------- 26. Print ---------- */
@media print{
  .topbar,.site-header,.sticky-cta,.mobile-nav,.form-embed,.btn,.strip{display:none!important;}
  body{color:#000;font-size:12pt;}
  .site-footer{background:#fff;color:#000;}
}
