/* ==========================================================================
   FUMATEX — Design System & Site Styles
   Brand: blue #1C75BC · navy/purple #262262 · white · black
   ========================================================================== */

/* ---- Tokens ------------------------------------------------------------- */
:root{
  --blue:#1C75BC;
  --blue-600:#166099;
  --blue-700:#124e7d;
  --navy:#262262;
  --navy-800:#1c1a4d;
  --ink:#12172a;
  --body:#3d4658;
  --muted:#697386;
  --line:#e5e9f0;
  --bg:#ffffff;
  --bg-soft:#f4f7fb;
  --bg-tint:#eef4fb;
  --white:#ffffff;
  --star:#f5a623;
  --grad:linear-gradient(120deg,var(--blue) 0%, var(--navy) 100%);
  --grad-soft:linear-gradient(120deg,#2a86d1 0%, var(--navy) 100%);

  --r-sm:10px; --r:16px; --r-lg:22px; --pill:999px;
  --shadow-sm:0 2px 8px rgba(18,23,42,.06);
  --shadow:0 12px 30px rgba(18,23,42,.10);
  --shadow-lg:0 24px 60px rgba(18,23,42,.16);
  --container:1180px;
  --font-head:'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  --font-body:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  --ease:cubic-bezier(.2,.7,.2,1);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0; font-family:var(--font-body); color:var(--body);
  background:var(--bg); line-height:1.6; font-size:17px;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
img{max-width:100%; display:block}
a{color:var(--blue); text-decoration:none}
h1,h2,h3,h4{font-family:var(--font-head); color:var(--ink); line-height:1.12; margin:0 0 .5em; letter-spacing:-.01em; font-weight:800}
h2{font-size:clamp(1.7rem,3.4vw,2.5rem)}
h3{font-size:1.25rem; font-weight:700}
p{margin:0 0 1rem}
:focus-visible{outline:3px solid var(--blue); outline-offset:2px; border-radius:4px}

/* ---- Layout helpers ----------------------------------------------------- */
.container{width:100%; max-width:var(--container); margin-inline:auto; padding-inline:20px}
.section{padding-block:clamp(56px,7vw,96px)}
.section--soft{background:var(--bg-soft)}
.section--tint{background:var(--bg-tint)}
.eyebrow{display:inline-block; font-family:var(--font-head); font-weight:700; font-size:.8rem;
  letter-spacing:.14em; text-transform:uppercase; color:var(--blue); margin-bottom:.6rem}
.section-head{max-width:660px; margin:0 auto clamp(32px,4vw,52px); text-align:center}
.section-head p{color:var(--muted); font-size:1.06rem; margin:0}
.lede{font-size:1.12rem; color:var(--body)}

/* ---- Buttons ------------------------------------------------------------ */
.btn{display:inline-flex; align-items:center; gap:.55em; font-family:var(--font-head);
  font-weight:700; font-size:1rem; padding:.85em 1.5em; border-radius:var(--pill);
  border:2px solid transparent; cursor:pointer; transition:transform .15s var(--ease),
  box-shadow .2s var(--ease), background .2s, color .2s; white-space:nowrap}
.btn svg{width:1.15em; height:1.15em}
.btn--primary{background:var(--grad); color:#fff; box-shadow:0 8px 20px rgba(28,117,188,.32)}
.btn--primary:hover{transform:translateY(-2px); box-shadow:0 14px 30px rgba(28,117,188,.42)}
.btn--ghost{background:#fff; color:var(--navy); border-color:var(--line)}
.btn--ghost:hover{border-color:var(--blue); color:var(--blue); transform:translateY(-2px)}
.btn--white{background:#fff; color:var(--navy)}
.btn--white:hover{transform:translateY(-2px); box-shadow:var(--shadow)}
.btn--outline-white{background:transparent; color:#fff; border-color:rgba(255,255,255,.5)}
.btn--outline-white:hover{background:rgba(255,255,255,.12); border-color:#fff}
.btn--lg{font-size:1.08rem; padding:1em 1.8em}

/* ---- Top bar ------------------------------------------------------------ */
.topbar{background:var(--navy); color:#cfd3ea; font-size:.85rem}
.topbar .container{display:flex; justify-content:space-between; align-items:center; gap:16px; min-height:40px}
.topbar a{color:#fff}
.topbar__left{display:flex; gap:18px; align-items:center}
.topbar__left span{display:inline-flex; align-items:center; gap:.4em}
.topbar__left svg{width:15px;height:15px;color:#7fb3e6}
.topbar__right{display:flex; gap:18px; align-items:center}
.topbar__right a{display:inline-flex; align-items:center; gap:.4em; font-weight:600}
.topbar__right svg{width:15px;height:15px}
@media(max-width:820px){.topbar__left span:not(:first-child){display:none}}
@media(max-width:520px){.topbar{display:none}}

/* ---- Header / nav ------------------------------------------------------- */
.header{position:sticky; top:0; z-index:60; background:rgba(255,255,255,.92);
  backdrop-filter:saturate(1.4) blur(10px); border-bottom:1px solid var(--line)}
.header .container{display:flex; align-items:center; justify-content:space-between; min-height:74px; gap:20px}
.brand img{height:42px; width:auto}
.nav{display:flex; align-items:center; gap:6px}
.nav a{font-family:var(--font-head); font-weight:600; font-size:.98rem; color:var(--ink);
  padding:.5em .8em; border-radius:8px; transition:color .15s, background .15s}
.nav a:hover{color:var(--blue); background:var(--bg-tint)}
.header__cta{display:flex; align-items:center; gap:10px}
.header__call{display:inline-flex; align-items:center; gap:.45em; font-family:var(--font-head);
  font-weight:700; color:var(--navy)}
.header__call svg{width:18px;height:18px;color:var(--blue)}
.nav-toggle{display:none; background:none; border:0; padding:8px; cursor:pointer; color:var(--navy)}
.nav-toggle svg{width:28px;height:28px}

@media(max-width:960px){
  .nav, .header__call{display:none}
  .nav-toggle{display:inline-flex}
  .header__cta .btn{padding:.7em 1.15em}
}
/* mobile menu */
.mobile-menu{position:fixed; inset:0 0 0 auto; width:min(320px,84vw); background:#fff;
  box-shadow:var(--shadow-lg); transform:translateX(100%); transition:transform .3s var(--ease);
  z-index:70; padding:24px; display:flex; flex-direction:column; gap:6px; overflow-y:auto}
.mobile-menu.open{transform:translateX(0)}
.mobile-menu a{font-family:var(--font-head); font-weight:600; color:var(--ink); padding:.8em .6em;
  border-bottom:1px solid var(--line); font-size:1.05rem}
.mobile-menu__top{display:flex; justify-content:space-between; align-items:center; margin-bottom:12px}
.mobile-menu__top img{height:34px; width:auto}
.mobile-menu .btn{margin-top:14px; justify-content:center}
.mm-close{background:none;border:0;cursor:pointer;color:var(--navy)}
.mm-close svg{width:26px;height:26px}
.scrim{position:fixed; inset:0; background:rgba(18,23,42,.45); opacity:0; visibility:hidden;
  transition:opacity .3s; z-index:65}
.scrim.open{opacity:1; visibility:visible}

/* ---- Hero --------------------------------------------------------------- */
.hero{position:relative; isolation:isolate; color:#fff; overflow:hidden}
.hero__media{position:absolute; inset:0; z-index:-2}
.hero__media img{width:100%; height:100%; object-fit:cover; object-position:center 40%}
.hero__media::after{content:""; position:absolute; inset:0;
  background:linear-gradient(90deg,rgba(16,19,42,.80) 0%,rgba(16,19,42,.48) 44%,rgba(16,19,42,.10) 100%)}
.hero .container{position:relative; padding-block:clamp(64px,10vw,120px)}
.hero__inner{max-width:660px}
.hero h1{color:#fff; font-size:clamp(2.1rem,5.2vw,3.6rem); font-weight:800; margin-bottom:.35em}
.hero h1 em{font-style:normal; color:#7fc0ff}
.hero__sub{font-size:clamp(1.05rem,2vw,1.28rem); color:#e7ecf6; max-width:36em; margin-bottom:1.6em}
.hero__cta{display:flex; flex-wrap:wrap; gap:14px; margin-bottom:2em}
.hero__trust{display:flex; flex-wrap:wrap; gap:22px; align-items:center}
.hero__trust .ht{display:flex; align-items:center; gap:.5em; font-size:.95rem; color:#eaf0fa; font-weight:500}
.hero__trust svg{width:20px;height:20px;color:#7fc0ff; flex:none}
.stars{display:inline-flex; gap:2px; color:var(--star)}
.stars svg{width:17px;height:17px;color:var(--star)}

/* ---- Trust strip -------------------------------------------------------- */
.trust-strip{background:#fff; border-bottom:1px solid var(--line)}
.trust-strip .container{display:grid; grid-template-columns:repeat(4,1fr); gap:8px; padding-block:22px}
.trust-item{display:flex; align-items:center; gap:12px; justify-content:center; text-align:left}
.trust-item svg{width:30px;height:30px;color:var(--blue); flex:none}
.trust-item b{display:block; font-family:var(--font-head); color:var(--ink); font-size:.98rem; line-height:1.2}
.trust-item span{font-size:.83rem; color:var(--muted)}
@media(max-width:780px){
  .trust-strip .container{grid-template-columns:repeat(2,1fr); gap:18px}
}

/* ---- Service cards ------------------------------------------------------ */
.cards{display:grid; grid-template-columns:repeat(3,1fr); gap:22px}
@media(max-width:900px){.cards{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.cards{grid-template-columns:1fr}}
.card{background:#fff; border:1px solid var(--line); border-radius:var(--r); padding:28px;
  transition:transform .2s var(--ease), box-shadow .25s var(--ease), border-color .2s; position:relative}
.card:hover{transform:translateY(-4px); box-shadow:var(--shadow); border-color:transparent}
.card__icon{width:54px; height:54px; border-radius:14px; display:grid; place-items:center;
  background:var(--bg-tint); color:var(--blue); margin-bottom:16px}
.card__icon svg{width:28px;height:28px}
.card h3{margin-bottom:.35em}
.card p{font-size:.96rem; color:var(--muted); margin-bottom:1em}
.card__link{font-family:var(--font-head); font-weight:700; font-size:.92rem; color:var(--blue);
  display:inline-flex; align-items:center; gap:.4em}
.card__link svg{width:16px;height:16px; transition:transform .2s}
.card:hover .card__link svg{transform:translateX(4px)}

/* ---- Feature / split ---------------------------------------------------- */
.split{display:grid; grid-template-columns:1fr 1fr; gap:clamp(28px,5vw,64px); align-items:center}
@media(max-width:860px){.split{grid-template-columns:1fr}}
.split__media{border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow); position:relative}
.split__media img{width:100%; height:100%; object-fit:cover; min-height:300px}
.check-list{list-style:none; padding:0; margin:1.2em 0; display:grid; gap:.7em}
.check-list li{display:flex; gap:.7em; align-items:flex-start; font-size:1.02rem}
.check-list svg{width:22px;height:22px;color:#1aa06a; flex:none; margin-top:2px}
.note{font-size:.86rem; color:var(--muted); background:var(--bg-soft); border-left:3px solid var(--blue);
  padding:.7em 1em; border-radius:0 8px 8px 0; margin-top:1em}

/* ---- Portal (dark) ------------------------------------------------------ */
.portal{background:var(--grad); color:#fff; position:relative; overflow:hidden}
.portal::before{content:""; position:absolute; inset:0; opacity:.5;
  background:radial-gradient(700px 400px at 85% 10%, rgba(127,192,255,.35), transparent 60%)}
.portal .container{position:relative}
.portal .split{align-items:center}
.portal h2{color:#fff}
.portal p{color:#dbe4f5}
.portal .check-list li{color:#eef3fb}
.portal .check-list svg{color:#7fe0b0}
.portal__card{background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18);
  border-radius:var(--r-lg); padding:34px; backdrop-filter:blur(6px); text-align:center}
.portal__qr{width:150px; height:150px; border-radius:16px; background:#fff; margin:0 auto 18px;
  display:grid; place-items:center; color:var(--navy)}
.portal__qr svg{width:118px;height:118px}

/* ---- Areas -------------------------------------------------------------- */
.areas__grid{display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin-top:8px}
.area-pill{display:inline-flex; align-items:center; gap:.5em; background:#fff; border:1px solid var(--line);
  border-radius:var(--pill); padding:.6em 1.15em; font-family:var(--font-head); font-weight:600;
  color:var(--navy); font-size:.98rem; transition:.2s var(--ease)}
.area-pill svg{width:16px;height:16px;color:var(--blue)}
.area-pill:hover{border-color:var(--blue); background:var(--bg-tint); transform:translateY(-2px)}

/* ---- Reviews ------------------------------------------------------------ */
.reviews-head{display:flex; flex-direction:column; align-items:center; gap:10px; text-align:center; margin-bottom:38px}
.g-badge{display:inline-flex; align-items:center; gap:10px; background:#fff; border:1px solid var(--line);
  border-radius:var(--pill); padding:.5em 1.1em; box-shadow:var(--shadow-sm); font-weight:600; color:var(--ink)}
.g-badge .g{font-family:var(--font-head); font-weight:800}
.g-badge .b{color:#4285F4}.g-badge .r{color:#EA4335}.g-badge .y{color:#FBBC05}.g-badge .g2{color:#34A853}
.review-feed{display:grid; grid-template-columns:repeat(3,1fr); gap:22px}
@media(max-width:860px){.review-feed{grid-template-columns:1fr}}
.review-card{background:#fff; border:1px solid var(--line); border-radius:var(--r); padding:24px; box-shadow:var(--shadow-sm)}
.review-card .stars{margin-bottom:10px}
.review-ph{position:relative}
.review-ph .skeleton-line{height:11px; border-radius:6px; background:linear-gradient(90deg,#eef1f6,#e2e7f0,#eef1f6);
  background-size:200% 100%; animation:sh 1.6s infinite; margin-bottom:9px}
@keyframes sh{0%{background-position:200% 0}100%{background-position:-200% 0}}
.feed-note{text-align:center; margin-top:26px; font-size:.9rem; color:var(--muted)}

/* ---- Process ------------------------------------------------------------ */
.steps{display:grid; grid-template-columns:repeat(3,1fr); gap:26px; counter-reset:step}
@media(max-width:780px){.steps{grid-template-columns:1fr}}
.step{position:relative; padding-left:0; text-align:center}
.step__num{width:60px;height:60px;border-radius:50%; margin:0 auto 16px; display:grid; place-items:center;
  background:var(--bg-tint); color:var(--blue); font-family:var(--font-head); font-weight:800; font-size:1.5rem}
.step h3{margin-bottom:.3em}
.step p{color:var(--muted); font-size:.98rem; margin:0}

/* ---- CTA band ----------------------------------------------------------- */
.cta-band{background:var(--navy); color:#fff; text-align:center; position:relative; overflow:hidden}
.cta-band::before{content:""; position:absolute; inset:0; opacity:.6;
  background:radial-gradient(600px 300px at 20% 0%, rgba(28,117,188,.5), transparent 60%)}
.cta-band .container{position:relative}
.cta-band h2{color:#fff; margin-bottom:.3em}
.cta-band p{color:#c9cfe8; max-width:40em; margin:0 auto 1.6em; font-size:1.1rem}
.cta-band__btns{display:flex; gap:14px; justify-content:center; flex-wrap:wrap}

/* ---- Footer ------------------------------------------------------------- */
.footer{background:#14173a; color:#aab2d0; font-size:.94rem; padding-block:56px 0}
.footer a{color:#cdd4ea}
.footer a:hover{color:#fff}
.footer__grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:36px}
@media(max-width:860px){.footer__grid{grid-template-columns:1fr 1fr; gap:32px}}
@media(max-width:520px){.footer__grid{grid-template-columns:1fr}}
.footer__brand img{height:66px; width:auto; margin-bottom:18px}
.footer__brand img.footer__mark{height:78px}
.footer__brand p{color:#8f98bd; font-size:.9rem; max-width:26em}
.footer h4{color:#fff; font-family:var(--font-head); font-size:.8rem; letter-spacing:.12em;
  text-transform:uppercase; margin-bottom:1.1em}
.footer ul{list-style:none; padding:0; margin:0; display:grid; gap:.6em}
.footer__contact li{display:flex; gap:.6em; align-items:flex-start}
.footer__contact svg{width:18px;height:18px;color:var(--blue); flex:none; margin-top:2px}
.socials{display:flex; gap:10px; margin-top:14px}
.socials a{width:38px;height:38px;border-radius:10px; background:rgba(255,255,255,.08); display:grid;
  place-items:center; transition:.2s}
.socials a:hover{background:var(--blue)}
.socials svg{width:19px;height:19px;color:#fff}
.footer__bottom{border-top:1px solid rgba(255,255,255,.1); margin-top:44px; padding-block:22px;
  display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:.85rem; color:#7e87ad}
.footer__bottom a{color:#7e87ad}

/* ---- Sticky mobile action bar ------------------------------------------- */
.mobile-bar{position:fixed; left:0; right:0; bottom:0; z-index:55; display:none;
  grid-template-columns:1fr 1fr; gap:0; background:#fff; border-top:1px solid var(--line);
  box-shadow:0 -6px 20px rgba(18,23,42,.1)}
.mobile-bar a{display:flex; align-items:center; justify-content:center; gap:.5em; padding:15px 8px;
  font-family:var(--font-head); font-weight:700; font-size:1rem}
.mobile-bar svg{width:19px;height:19px}
.mobile-bar__call{color:var(--navy)}
.mobile-bar__quote{background:var(--grad); color:#fff}
@media(max-width:600px){
  .mobile-bar{display:grid}
  body{padding-bottom:58px}
}

/* ---- Reveal on scroll --------------------------------------------------- */
.reveal{opacity:0; transform:translateY(24px); transition:opacity .6s var(--ease), transform .6s var(--ease)}
.reveal.in{opacity:1; transform:none}
@media(prefers-reduced-motion:reduce){
  .reveal{opacity:1; transform:none; transition:none}
  html{scroll-behavior:auto}
  .review-ph .skeleton-line{animation:none}
}

/* ---- The Fumatex Standard (dark set-piece) ----------------------------- */
.standard{position:relative; overflow:hidden; color:#fff;
  background:linear-gradient(150deg,#211f57 0%, #14163a 48%, #10315e 128%)}
.standard::before{content:""; position:absolute; inset:0; pointer-events:none; opacity:.75;
  background:radial-gradient(640px 400px at 10% -12%, rgba(28,117,188,.5), transparent 60%),
            radial-gradient(560px 380px at 102% 118%, rgba(127,192,255,.20), transparent 55%)}
.standard .container{position:relative}
.standard .eyebrow{color:#8ec5ff}
.standard h2{color:#fff}
.standard .section-head{margin-bottom:clamp(42px,5vw,64px)}
.standard .section-head p{color:#cdd8f2}
.standard .lead-line{font-family:var(--font-head); font-weight:800; color:#fff}

.std-steps{display:grid; grid-template-columns:repeat(4,1fr); gap:28px; position:relative}
.std-steps::before{content:""; position:absolute; top:42px; left:11%; right:11%; height:2px; z-index:0;
  background:linear-gradient(90deg,transparent, rgba(142,197,255,.55) 14%, rgba(142,197,255,.55) 86%, transparent)}
.std-step{position:relative; z-index:1; text-align:center}
.std-step__badge{position:relative; width:84px; height:84px; border-radius:50%; margin:0 auto 22px;
  display:grid; place-items:center; background:var(--grad); border:5px solid #17183d;
  box-shadow:0 14px 34px rgba(28,117,188,.5); transition:transform .22s var(--ease), box-shadow .22s var(--ease)}
.std-step__badge svg{width:36px; height:36px; color:#fff}
.std-step__num{position:absolute; top:-8px; right:-8px; min-width:28px; height:28px; padding:0 7px;
  border-radius:999px; background:#fff; color:var(--navy); font-family:var(--font-head); font-weight:800;
  font-size:.8rem; display:grid; place-items:center; box-shadow:0 5px 12px rgba(0,0,0,.35)}
.std-step h3{color:#fff; font-size:1.16rem; margin-bottom:.4em}
.std-step p{color:#c3cde6; font-size:.95rem; margin:0; max-width:22em; margin-inline:auto}
.std-step:hover .std-step__badge{transform:translateY(-5px); box-shadow:0 20px 42px rgba(28,117,188,.62)}
@media(max-width:900px){
  .std-steps{grid-template-columns:1fr 1fr; gap:40px 24px}
  .std-steps::before{display:none}
}
@media(max-width:520px){.std-steps{grid-template-columns:1fr; gap:34px}}

/* ---- Customer experience / portal cards + phone ------------------------- */
.exp-grid{display:grid; grid-template-columns:1fr 1fr; gap:16px}
.exp-card{background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18); border-radius:var(--r);
  padding:22px; backdrop-filter:blur(6px)}
.exp-card__icon{width:44px; height:44px; border-radius:12px; display:grid; place-items:center;
  background:rgba(255,255,255,.14); color:#bfe0ff; margin-bottom:12px}
.exp-card__icon svg{width:22px;height:22px}
.exp-card h4{color:#fff; font-family:var(--font-head); font-size:1rem; letter-spacing:0; text-transform:none; margin:0 0 .25em}
.exp-card p{color:#cdd8ee; font-size:.9rem; margin:0}

.phone{width:255px; max-width:78%; margin:0 auto; background:#0b0d28; border:9px solid #06081c;
  border-radius:36px; box-shadow:var(--shadow-lg); overflow:hidden; position:relative}
.phone::before{content:""; position:absolute; top:10px; left:50%; transform:translateX(-50%);
  width:70px; height:6px; border-radius:6px; background:#06081c; z-index:2}
.pscreen{background:#eef2f8; padding:26px 14px 18px}
.pscreen__top{display:flex; align-items:center; gap:8px; font-family:var(--font-head); font-weight:800;
  color:var(--navy); font-size:.9rem; margin-bottom:14px}
.pscreen__top .dot{width:22px;height:22px;border-radius:7px;background:var(--grad);display:grid;place-items:center}
.pscreen__top .dot svg{width:13px;height:13px;color:#fff}
.pscreen__card{background:#fff; border-radius:14px; padding:14px; box-shadow:var(--shadow-sm); margin-bottom:10px}
.pscreen__label{font-size:.62rem; text-transform:uppercase; letter-spacing:.1em; color:var(--blue); font-weight:700; font-family:var(--font-head)}
.pscreen__card strong{display:block; color:var(--ink); font-size:.92rem; margin:3px 0 2px; font-family:var(--font-head)}
.pscreen__meta{font-size:.72rem; color:var(--muted)}
.pscreen__row{display:flex; align-items:center; gap:10px; background:#fff; border-radius:11px; padding:10px 12px; margin-bottom:8px; box-shadow:var(--shadow-sm)}
.pscreen__row .ic{width:28px;height:28px;border-radius:8px;background:var(--bg-tint);color:var(--blue);display:grid;place-items:center;flex:none}
.pscreen__row .ic svg{width:15px;height:15px}
.pscreen__row .t{font-size:.78rem;color:var(--ink);font-weight:600;font-family:var(--font-head);flex:1}
.pscreen__row .tag{font-size:.62rem;color:var(--muted);background:var(--bg-soft);padding:3px 7px;border-radius:6px}
.pscreen__btn{width:100%; background:var(--grad); color:#fff; border:0; border-radius:11px; padding:11px;
  font-family:var(--font-head); font-weight:700; font-size:.82rem; margin-top:4px}
@media(max-width:860px){
  .exp-grid{grid-template-columns:1fr 1fr}
  .phone{margin-bottom:8px}
}
@media(max-width:420px){.exp-grid{grid-template-columns:1fr}}

/* QR magnet callout inside portal */
.qr-callout{display:flex; align-items:center; gap:22px; background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18); border-radius:var(--r-lg); padding:22px 26px; margin-top:26px}
.qr-callout .qr{width:92px;height:92px;border-radius:14px;background:#fff;display:grid;place-items:center;flex:none;color:var(--navy)}
.qr-callout .qr svg{width:72px;height:72px}
.qr-callout h4{color:#fff;font-family:var(--font-head);font-size:1.05rem;margin:0 0 .3em;letter-spacing:0;text-transform:none}
.qr-callout p{color:#dbe4f5;margin:0;font-size:.92rem}
@media(max-width:520px){.qr-callout{flex-direction:column;text-align:center;gap:14px}}

/* ---- FAQ ---------------------------------------------------------------- */
.faq{max-width:820px; margin:0 auto; display:grid; gap:12px}
.faq details{background:#fff; border:1px solid var(--line); border-radius:12px; padding:0 20px;
  transition:box-shadow .2s, border-color .2s}
.faq details[open]{box-shadow:var(--shadow-sm); border-color:#cfe0f2}
.faq summary{list-style:none; cursor:pointer; padding:18px 0; font-family:var(--font-head); font-weight:700;
  color:var(--ink); display:flex; justify-content:space-between; align-items:center; gap:14px; font-size:1.02rem}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+"; font-size:1.5rem; line-height:1; color:var(--blue); flex:none; transition:transform .2s}
.faq details[open] summary::after{content:"\2013"}
.faq details p{margin:0 0 18px; color:var(--body); font-size:.98rem}

/* ---- Skip link (accessibility) ----------------------------------------- */
.skip-link{position:absolute; left:-9999px; top:0; z-index:200; background:var(--navy); color:#fff;
  font-family:var(--font-head); font-weight:700; padding:12px 18px; border-radius:0 0 10px 0}
.skip-link:focus{left:0}

/* ---- Inner page header + breadcrumb ------------------------------------ */
.page-header{background:var(--bg-tint); border-bottom:1px solid var(--line)}
.page-header .container{padding-block:clamp(26px,4vw,48px)}
.breadcrumb{font-size:.84rem; color:var(--muted); margin-bottom:14px}
.breadcrumb a{color:var(--muted)}
.breadcrumb a:hover{color:var(--blue)}
.breadcrumb .sep{margin:0 .45em; opacity:.5}
.page-header h1{font-size:clamp(1.9rem,4vw,2.7rem); margin-bottom:.3em; max-width:18em}
.page-header .intro{font-size:1.12rem; color:var(--body); max-width:44em; margin:0 0 1.4em}
.page-header__cta{display:flex; gap:12px; flex-wrap:wrap}

/* ---- Prose (readable text blocks) -------------------------------------- */
.prose{max-width:72ch}
.prose > *:first-child{margin-top:0}
.prose h2{font-size:clamp(1.4rem,2.6vw,1.9rem); margin:1.7em 0 .5em}
.prose h3{margin:1.3em 0 .4em; font-size:1.16rem}
.prose p{margin:0 0 1.05em}
.prose .check-list{margin:1.1em 0 1.4em}

/* ---- Fumatex Standard mini (inner pages) ------------------------------- */
.mini-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:22px}
@media(max-width:900px){.mini-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.mini-grid{grid-template-columns:1fr}}
.mini{background:#fff; border:1px solid var(--line); border-radius:var(--r); padding:22px}
.mini__ic{width:44px; height:44px; border-radius:12px; display:grid; place-items:center; background:var(--grad); color:#fff; margin-bottom:12px}
.mini__ic svg{width:22px; height:22px}
.mini h3{font-size:1.02rem; margin-bottom:.3em}
.mini p{font-size:.92rem; color:var(--muted); margin:0}
.mini-more{margin-top:26px; font-family:var(--font-head); font-weight:700; font-size:.95rem}
.mini-more a{display:inline-flex; align-items:center; gap:.4em}

/* ---- Related services / link cards ------------------------------------- */
.link-cards{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
@media(max-width:760px){.link-cards{grid-template-columns:1fr}}
.link-card{display:flex; align-items:center; gap:14px; background:#fff; border:1px solid var(--line);
  border-radius:var(--r); padding:18px 20px; transition:transform .2s var(--ease), box-shadow .25s var(--ease), border-color .2s}
.link-card:hover{transform:translateY(-3px); box-shadow:var(--shadow); border-color:transparent}
.link-card__ic{width:42px; height:42px; border-radius:11px; flex:none; display:grid; place-items:center; background:var(--bg-tint); color:var(--blue)}
.link-card__ic svg{width:22px; height:22px}
.link-card b{font-family:var(--font-head); color:var(--ink); font-size:1rem; display:block}
.link-card span{font-size:.86rem; color:var(--muted)}

/* ---- Contact + forms --------------------------------------------------- */
.contact-grid{display:grid; grid-template-columns:1.35fr 1fr; gap:clamp(28px,5vw,52px); align-items:start}
@media(max-width:860px){.contact-grid{grid-template-columns:1fr}}
.form-card{background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:clamp(22px,3vw,34px); box-shadow:var(--shadow-sm)}
.form-grid{display:grid; grid-template-columns:1fr 1fr; gap:16px}
@media(max-width:560px){.form-grid{grid-template-columns:1fr}}
.field{display:flex; flex-direction:column; gap:6px}
.field.full{grid-column:1 / -1}
.field label{font-family:var(--font-head); font-weight:600; font-size:.9rem; color:var(--ink)}
.field .req{color:#c0392b}
.field input,.field select,.field textarea{font-family:var(--font-body); font-size:1rem; padding:.78em .9em;
  border:1px solid var(--line); border-radius:10px; background:#fff; color:var(--ink); width:100%;
  transition:border-color .15s, box-shadow .15s}
.field input:focus,.field select:focus,.field textarea:focus{outline:none; border-color:var(--blue); box-shadow:0 0 0 3px rgba(28,117,188,.16)}
.field textarea{min-height:130px; resize:vertical}
.form-note{font-size:.82rem; color:var(--muted); margin-top:10px}
.contact-info{background:var(--bg-soft); border:1px solid var(--line); border-radius:var(--r-lg); padding:28px}
.contact-info h3{font-size:1.12rem; margin-bottom:1em}
.contact-info ul{list-style:none; padding:0; margin:0; display:grid; gap:1.05em}
.contact-info li{display:flex; gap:.75em; align-items:flex-start}
.contact-info svg{width:20px; height:20px; color:var(--blue); flex:none; margin-top:3px}
.contact-info a{color:var(--ink); font-weight:500}
.contact-info a:hover{color:var(--blue)}
.contact-info .ci-label{display:block; font-size:.78rem; color:var(--muted); font-weight:400}

/* ---- Service graphic (branded placeholder where no photo yet) ----------- */
.svc-graphic{border-radius:var(--r-lg); background:var(--grad); position:relative; overflow:hidden;
  min-height:320px; display:grid; place-items:center; box-shadow:var(--shadow)}
.svc-graphic::before{content:""; position:absolute; inset:0; opacity:.55;
  background:radial-gradient(420px 300px at 72% 18%, rgba(127,192,255,.45), transparent 62%)}
.svc-graphic svg{position:relative; width:92px; height:92px; color:rgba(255,255,255,.94)}

/* ---- Ad landing pages -------------------------------------------------- */
.lp-header{position:sticky; top:0; z-index:60; background:#fff; border-bottom:1px solid var(--line)}
.lp-header .container{display:flex; align-items:center; justify-content:space-between; min-height:66px; gap:16px}
.lp-header .brand img{height:40px; width:auto; display:block}
.lp-header__call{display:inline-flex; align-items:center; gap:.5em; font-family:var(--font-head); font-weight:800; color:var(--navy); font-size:1.08rem; white-space:nowrap}
.lp-header__call svg{width:20px; height:20px; color:var(--blue)}
.lp-hero .container{padding-block:clamp(40px,6vw,78px)}
.lp-hero__grid{display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(28px,4vw,48px); align-items:center}
@media(max-width:900px){.lp-hero__grid{grid-template-columns:1fr}}
.lp-hero__copy h1{color:#fff; font-size:clamp(2rem,4.6vw,3rem); margin-bottom:.3em}
.lp-hero__copy h1 em{font-style:normal; color:#7fc0ff}
.lp-hero__copy .sub{font-size:clamp(1.05rem,2vw,1.2rem); color:#e7ecf6; margin-bottom:1.3em; max-width:32em}
.lp-hero__chips{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:1.5em}
.lp-chip{display:inline-flex; align-items:center; gap:.45em; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.24); border-radius:999px; padding:.42em .9em; font-size:.88rem; color:#fff; font-weight:500}
.lp-chip svg{width:16px; height:16px; color:#7fe0b0}
.lp-form h2{font-size:1.45rem; margin-bottom:.15em}
.lp-form .form-sub{color:var(--muted); font-size:.95rem; margin-bottom:1.2em}
.lp-footer{background:#14173a; color:#aab2d0; padding-block:32px; text-align:center; font-size:.9rem}
.lp-footer a{color:#cdd4ea}
.lp-footer a:hover{color:#fff}
.lp-footer p{margin:.3em 0}

/* Hide Netlify's injected free-tier badge iframe so it can't overlap the mobile CTA bar */
#nl-badge-frame{display:none !important}

/* Live Google reviews widget wrapper */
.reviews-embed{margin-top:10px}
