/* ═══════════════════════════════════════════════════════════════
   SSQ Repair — SSQ-faithful design system (light/blue)
   Palette + components ported from the SSQ build.
   Scoped under body.ssq-theme; loads after main.css to override.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #ffffff;
  --soft: #f4f6fa;
  --line: #e7ebf1;
  --tx: #0d1320;
  --mut: #5b6678;
  --ink2: #374256;
  --brand: #7c3aed;
  --brand2: #6d28d9;
  --brandsoft: #f1ebfe;
  --star: #f5a623;
  --ok: #15a86b;
  --warn: #e0900f;
  --danger: #e0533f;
  --maxw: 1120px;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Sora", var(--sans);
  --radius: 18px;
  --radius-s: 12px;
  --shadow-s: 0 1px 2px rgba(13,19,32,.05), 0 8px 24px -16px rgba(13,19,32,.18);
  --shadow-m: 0 18px 44px -28px rgba(13,19,32,.4);
  --shadow-l: 0 40px 90px -50px rgba(13,19,32,.5);
}

body.ssq-theme {
  font-family: var(--sans);
  color: var(--tx);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
/* The base theme sets html/body to near-black; force light under the redesign
   so transparent sections (hero, steps, faq, about) don't show a dark page. */
html:has(body.ssq-theme) { background: #fff !important; }
body.ssq-theme { background: #fff !important; }
.ssq-theme .site-main { background: #fff; }
.ssq-theme .hero,
.ssq-theme .section,
.ssq-theme .band,
.ssq-theme .final,
.ssq-theme .about,
.ssq-theme .reviews,
.ssq-theme .page-hero { background-color: #fff; }
.ssq-theme .section--soft { background-color: var(--soft); }

/* Safety net: base theme forces white text on several section selectors that
   assume a dark background. Default all redesign text to dark; the only
   intentionally-light surfaces are the gradient final CTA and dark buttons. */
.ssq-theme .site-main,
.ssq-theme .site-main h1,
.ssq-theme .site-main h2,
.ssq-theme .site-main h3,
.ssq-theme .site-main h4,
.ssq-theme .site-main p,
.ssq-theme .site-main li,
.ssq-theme .site-main span { color: inherit; }
.ssq-theme .hero, .ssq-theme .section, .ssq-theme .band, .ssq-theme .about,
.ssq-theme .reviews, .ssq-theme .page-hero, .ssq-theme .layout { color: var(--ink2); }
.ssq-theme .hero h1, .ssq-theme .section h2, .ssq-theme .section h3,
.ssq-theme .band h2, .ssq-theme .about h2, .ssq-theme .page-hero h1 { color: var(--tx); }
/* Light text kept only on the gradient CTA card. */
.ssq-theme .final__card, .ssq-theme .final__card h2, .ssq-theme .final__card p { color: #fff; }
.ssq-theme .final__card .btn--white { color: var(--brand); }
/* Elements that sit ON a blue/dark surface must stay white — exempt them from
   the dark-text safety net above (which would otherwise force them dark). */
.ssq-theme .section .step__n,
.ssq-theme .section .card__ic,
.ssq-theme .section .card__ic .icon,
.ssq-theme .step__n,
.ssq-theme .card__ic,
.ssq-theme .card__ic .icon,
.ssq-theme .btn--primary,
.ssq-theme .btn--dark,
.ssq-theme .btn--primary .icon,
.ssq-theme .iconbtn--book,
.ssq-theme .fix__ic,
.ssq-theme .fix__ic .icon { color: #fff !important; }
.ssq-theme .step__n { background: var(--brand) !important; }
/* page-hero icon + soft-blue tiles: brand-colored on light, not white. */
.ssq-theme .page-hero__ic, .ssq-theme .page-hero__ic .icon,
.ssq-theme .svc-card__ic, .ssq-theme .svc-card__ic .icon,
.ssq-theme .related-card__ic, .ssq-theme .related-card__ic .icon,
.ssq-theme .causes__dot, .ssq-theme .causes__dot .icon,
.ssq-theme .embed-ai .eyebrow,
.ssq-theme .aside-card__list .icon { color: var(--brand) !important; }
.ssq-theme *, .ssq-theme *::before, .ssq-theme *::after { box-sizing: border-box; }
.ssq-theme .container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.ssq-theme a { color: inherit; text-decoration: none; }
.ssq-theme .sora { font-family: var(--display); line-height: 1.1; }
.ssq-theme h1.sora, .ssq-theme h2.sora { line-height: 1.08; letter-spacing: -.02em; }
.ssq-theme img { max-width: 100%; display: block; }
.ssq-theme .icon { width: 1.1em; height: 1.1em; vertical-align: -.15em; flex: none; }

/* ── buttons ── */
.ssq-theme .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 700; font-size: 1rem; line-height: 1;
  border: none; border-radius: var(--radius-s); padding: 14px 22px; cursor: pointer;
  transition: transform .12s, box-shadow .2s, background .2s, border-color .2s; white-space: nowrap;
}
.ssq-theme .btn:active { transform: translateY(1px); }
.ssq-theme .btn--full { width: 100%; }
.ssq-theme .btn--lg { padding: 16px 26px; font-size: 1.05rem; }
.ssq-theme .btn--primary { position: relative; overflow: hidden; background: var(--brand); color: #fff; box-shadow: 0 10px 24px -12px rgba(124,58,237,.6); }
.ssq-theme .btn--primary:hover { background: var(--brand2); }
.ssq-theme .btn--dark { background: var(--tx); color: #fff; }
.ssq-theme .btn--dark:hover { background: #000; }
/* secondary = blue outline */
.ssq-theme .btn--ghost { background: #fff; color: var(--brand); border: 2px solid var(--brand); padding: 12px 20px; }
.ssq-theme .btn--ghost:hover { background: var(--brandsoft); }
.ssq-theme .btn--white { background: #fff; color: var(--brand); font-weight: 800; }

.ssq-theme .iconbtn { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 11px; background: #fff; border: 1.5px solid var(--line); cursor: pointer; transition: .15s; }
.ssq-theme .iconbtn:hover { border-color: var(--brand); background: var(--brandsoft); }
.ssq-theme .iconbtn--call { color: var(--brand); }
.ssq-theme .iconbtn--wa { color: #25d366; }
.ssq-theme .iconbtn--book { width: auto; gap: 8px; padding: 0 16px; background: var(--brand); color: #fff; border: none; font-weight: 700; font-family: var(--sans); }
.ssq-theme .iconbtn--book:hover { background: var(--brand2); }

/* ── header ── */
.ssq-theme .site-header { position: relative; z-index: 40; background: #fff; border-bottom: 1px solid var(--line); }
.ssq-theme .site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.ssq-theme .site-header__logo img { height: 46px; width: auto; }
@media (max-width: 600px) { .ssq-theme .site-header__logo img { height: 54px; } }
.ssq-theme .site-header__actions { display: flex; align-items: center; gap: 8px; }
/* Hamburger toggle — hidden on desktop, shown on mobile. */
.ssq-theme .navToggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); background: #fff; color: var(--tx); align-items: center; justify-content: center; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.ssq-theme .navToggle .icon { width: 24px; height: 24px; }
.ssq-theme .site-header.nav-open .navToggle { background: var(--brand); border-color: var(--brand); color: #fff; }
/* Desktop nav base (placed BEFORE the mobile media query so mobile rules win). */
.ssq-theme .site-nav { margin: 0 auto 0 38px; }
.ssq-theme .site-nav__list { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.ssq-theme .site-nav__list a { font-weight: 600; font-size: .95rem; color: var(--ink2); padding: 6px 0; position: relative; }
.ssq-theme .site-nav__list a:hover { color: var(--brand); }
.ssq-theme .site-nav__list .current-menu-item > a { color: var(--brand); }
.ssq-theme .site-nav__list a::after { display: none; }
.ssq-theme .site-nav__cta { display: none; }
.ssq-theme .site-nav__ic { display: none; }
@media (max-width: 900px) {
  .ssq-theme .navToggle { display: inline-flex; }
  .ssq-theme .site-header.nav-open .navToggle { background: var(--brand); border-color: var(--brand); color: #fff; }
  /* Dimmed backdrop behind the dropdown. */
  .ssq-theme .site-header::after { content: ""; position: fixed; inset: 0; background: rgba(13,19,32,.45); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; z-index: 38; }
  .ssq-theme .site-header.nav-open::after { opacity: 1; visibility: visible; }
  /* Premium dropdown card — fixed, clamped to viewport, never overflows. */
  .ssq-theme .site-nav { display: block; position: fixed; top: 78px; left: 12px; right: 12px; width: auto; max-width: none;
    background: #fff; border: 1px solid var(--line); border-radius: 20px;
    box-shadow: 0 30px 70px -20px rgba(13,19,32,.55);
    overflow: hidden; transform-origin: top right; margin: 0; z-index: 39;
    opacity: 0; visibility: hidden; transform: translateY(-10px) scale(.97);
    transition: opacity .28s ease, transform .28s cubic-bezier(.2,.9,.3,1), visibility .28s; }
  .ssq-theme .site-header.nav-open .site-nav { opacity: 1; visibility: visible; transform: none; }
  .ssq-theme .site-nav__list { display: flex; flex-direction: column; align-items: stretch; gap: 6px; padding: 12px; margin: 0; list-style: none; width: 100%; }
  .ssq-theme .site-nav__list li { display: block; width: 100%; margin: 0; border: none; }
  .ssq-theme .site-nav__list a { display: flex; align-items: center; gap: 14px; width: 100%; text-align: left;
    padding: 13px 14px; font-size: 1.02rem; font-weight: 700; color: var(--tx);
    background: var(--soft); border: 1px solid var(--line); border-radius: 14px;
    transition: background .18s, color .18s, border-color .18s, transform .18s; }
  .ssq-theme .site-nav__ic { flex: none; width: 38px; height: 38px; border-radius: 11px; background: #fff;
    border: 1px solid var(--line); display: grid; place-items: center; color: var(--brand); transition: .18s; }
  .ssq-theme .site-nav__ic .icon { width: 20px; height: 20px; }
  .ssq-theme .site-nav__txt { flex: 1; }
  .ssq-theme .site-nav__list a::after { content: ""; display: block; flex: none; margin-left: auto; width: 18px; height: 18px; color: var(--mut);
    background: currentColor; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") center/contain no-repeat;
    transition: transform .18s, color .18s; }
  .ssq-theme .site-nav__list a:hover, .ssq-theme .site-nav__list a:active { background: var(--brandsoft); color: var(--brand); border-color: #d9c9fb; transform: translateX(3px); }
  .ssq-theme .site-nav__list a:hover .site-nav__ic, .ssq-theme .site-nav__list a:active .site-nav__ic { background: var(--brand); border-color: var(--brand); color: #fff; }
  .ssq-theme .site-nav__list a:hover::after, .ssq-theme .site-nav__list a:active::after { color: var(--brand); transform: translateX(2px); }
  .ssq-theme .site-nav__list .current-menu-item > a { background: var(--brandsoft); color: var(--brand); border-color: var(--brand); }
  /* Phone CTA pinned at the bottom of the card. */
  .ssq-theme .site-nav__cta { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 2px 12px 14px;
    padding: 16px; border-radius: 14px; background: var(--brand); color: #fff !important; font-weight: 800; font-size: 1.05rem;
    box-shadow: 0 16px 30px -12px rgba(124,58,237,.6); }
  .ssq-theme .site-nav__cta .icon { width: 20px; height: 20px; color: #fff; }
}
@media (max-width: 720px) { .ssq-theme .navBookTxt { display: none; } .ssq-theme .iconbtn--book { width: 42px; padding: 0; } }

/* ── eyebrow / section heads ── */
.ssq-theme .eyebrow { display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); margin: 0 0 14px; padding: 0; background: none; border: 0; box-shadow: none; text-indent: 0; }
.ssq-theme .section:not(.section--light) .eyebrow,
.ssq-theme .section .eyebrow { color: var(--brand); background: none; border: 0; box-shadow: none; padding: 0; margin: 0 0 14px; }
.ssq-theme .eyebrow--light { color: #9fc4f5; }
.ssq-theme .section { padding: 88px 0; }
.ssq-theme .section--soft { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ssq-theme .section-head { max-width: 720px; margin: 0 auto 40px; }
.ssq-theme .section-head--center { text-align: center; }
.ssq-theme .section-title { font-family: var(--display); font-weight: 800; font-size: clamp(1.9rem,4vw,2.6rem); color: var(--tx); margin: 0; line-height: 1.08; letter-spacing: -.02em; }
.ssq-theme .section-lead { color: var(--ink2); margin-top: 12px; font-size: 1.06rem; line-height: 1.6; }

/* ── hero ── */
.ssq-theme .hero { padding: 20px 0 96px; position: relative; overflow: hidden; }
@media (max-width: 600px) { .ssq-theme .hero { padding-top: 14px; } }
.ssq-theme .hero__in { text-align: center; max-width: 860px; margin: 0 auto; }
.ssq-theme .hero__eyebrow { display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px 10px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: clamp(11px, 2.4vw, 15px) clamp(16px, 3.4vw, 22px); font-size: clamp(.9rem, 2.6vw, 1.05rem); font-weight: 600; color: var(--ink2); margin-bottom: 22px; box-shadow: 0 6px 18px -12px rgba(13,19,32,.3); max-width: 100%; }
.ssq-theme .hero__rating { flex-basis: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--mut); }
.ssq-theme .hero__rating .hero__stars { font-size: clamp(1rem, 3vw, 1.2rem); }
@media (max-width: 560px) {
  .ssq-theme .hero__eyebrow { line-height: 1.35; }
  .ssq-theme .hero__eyebrow .hero__dot { display: none; }
}
.ssq-theme .hero__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); animation: es-pulse 2s infinite; }
.ssq-theme .hero__eyebrow b { color: var(--tx); }
.ssq-theme .hero__stars { color: var(--star); letter-spacing: 1px; }
.ssq-theme .hero__title { font-family: var(--display); font-weight: 800; font-size: clamp(1.9rem,5vw,3.3rem); line-height: 1.08; letter-spacing: -.02em; margin: 0 auto 18px; color: var(--tx); }
.ssq-theme .hero__title .accent { color: var(--brand); }
.ssq-theme .hero__desc { font-size: 1.15rem; color: var(--ink2); max-width: 620px; margin: 0 auto 18px; }
.ssq-theme .hero__subline { display: flex; gap: 10px; justify-content: center; align-items: center; flex-wrap: wrap; margin-bottom: 26px; font-size: .94rem; color: var(--mut); }
.ssq-theme .hero__subline b { color: var(--tx); }
.ssq-theme .hero__subline .sep { color: var(--line); }
.ssq-theme .hero__subline .ok { color: var(--ok); display: inline-flex; align-items: center; gap: 6px; }
.ssq-theme .hero__trust { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; margin: 20px 0 24px; }
.ssq-theme .hero__cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.ssq-theme .hero__trust--top { margin: 0 0 26px; }
.ssq-theme .hero__stars { color: var(--star) !important; letter-spacing: 1px; }
.ssq-theme .hero__trust span { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: var(--brand); }
.ssq-theme .hero__trust .ok { color: var(--brand); }
.ssq-theme .hero__trust span .icon { color: var(--brand); }

/* ── AI smart-check card ── */
.ssq-theme .ai { background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-l); max-width: 720px; margin: 0 auto; text-align: left; }
.ssq-theme .ai__spin { width: 18px; height: 18px; border-radius: 50%; border: 2.5px solid rgba(255,255,255,.4); border-top-color: #fff; animation: es-spin .7s linear infinite; }
.ssq-theme .ai--embed { box-shadow: var(--shadow-m); }

/* diag result */


/* ── repair band (light) ── */
.ssq-theme .band { padding: 64px 0; }
.ssq-theme .band__card { background: var(--brandsoft); border: 1px solid var(--line); border-radius: 24px; padding: clamp(28px,5vw,52px); position: relative; overflow: hidden; }
.ssq-theme .band__glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(124,58,237,.10); filter: blur(20px); top: -130px; right: -80px; }
.ssq-theme .band__title { font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem,4.4vw,2.6rem); line-height: 1.1; max-width: 720px; position: relative; color: var(--tx); }
.ssq-theme .band__title .accent { color: var(--brand); }
.ssq-theme .band__text { font-size: 1rem; color: var(--ink2); line-height: 1.6; max-width: 680px; margin-top: 16px; position: relative; }

/* ── cards grids ── */
.ssq-theme .grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.ssq-theme .grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.ssq-theme .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ssq-theme .card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; height: 100%; transition: transform .18s, box-shadow .18s; }
.ssq-theme .section--soft .card { }
.ssq-theme .card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); }
.ssq-theme .section-head { max-width: 720px; margin: 0 0 40px; text-align: left; }
.ssq-theme .section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.ssq-theme .card__ic { width: 48px; height: 48px; border-radius: 14px; background: var(--brand) !important; color: #fff !important; display: grid; place-items: center; margin-bottom: 18px; }
.ssq-theme .card__ic .icon { width: 24px; height: 24px; color: #fff !important; stroke: #fff; }
.ssq-theme .card h3 { font-family: var(--display); font-size: 1.18rem; margin: 0 0 10px; }
.ssq-theme .card p { color: var(--ink2); font-size: .96rem; margin: 0; line-height: 1.55; }
.ssq-theme a.card { display: block; color: inherit; }
.ssq-theme a.card:hover { border-color: var(--brand); }
.ssq-theme .card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; color: var(--brand); font-weight: 700; font-size: .92rem; }
.ssq-theme .card__link svg { width: 16px; height: 16px; }

/* service fork cards */
.ssq-theme .svc-card { display: flex; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; color: inherit; box-shadow: var(--shadow-s); transition: transform .18s, box-shadow .18s; }
.ssq-theme .svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); }
.ssq-theme .svc-card__ic { flex: none; width: 66px; height: 66px; border-radius: 16px; background: var(--brandsoft); color: var(--brand); display: grid; place-items: center; }
.ssq-theme .svc-card__ic .icon { width: 36px; height: 36px; }
.ssq-theme .svc-card__title { display: block; font-family: var(--display); font-weight: 700; font-size: 1.2rem; margin-bottom: 6px; }
.ssq-theme .svc-card__desc { display: block; color: var(--ink2); font-size: .95rem; margin-bottom: 12px; line-height: 1.5; }
.ssq-theme .svc-card__more { display: inline-flex; align-items: center; gap: 6px; color: var(--brand); font-weight: 700; font-size: .92rem; }
.ssq-theme .svc-card__more .icon { width: 16px; height: 16px; }

/* ── stats ── */
.ssq-theme .stat { background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; text-align: center; }
.ssq-theme .about .stat { background: #fff; }
.ssq-theme .stat__n { font-family: var(--display); font-weight: 800; font-size: 1.9rem; color: var(--brand); line-height: 1; }
.ssq-theme .stat__l { font-size: .88rem; color: var(--mut); margin-top: 8px; }

/* ── about / behind ── */
.ssq-theme .about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.ssq-theme .about p { color: var(--ink2); font-size: 1.06rem; line-height: 1.6; margin: 0 0 16px; }
.ssq-theme .about p.mut { color: var(--mut); font-size: .98rem; margin: 0; }

/* ── steps ── */
.ssq-theme .step__n { font-family: var(--display); font-weight: 800; font-size: 1rem; color: #fff; background: var(--brand); width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 16px; }
.ssq-theme .step h3 { font-family: var(--display); font-size: 1.1rem; margin: 0 0 8px; color: var(--tx); }
.ssq-theme .step p { color: var(--ink2); font-size: .94rem; margin: 0; line-height: 1.55; }

/* ── reviews ── */
.ssq-theme .reviews__meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ssq-theme .reviews__stars { color: var(--star); font-size: 1rem; letter-spacing: 2px; }
.ssq-theme .reviews__meta strong { font-family: var(--display); font-size: 1.1rem; }
.ssq-theme .reviews__meta .mut { color: var(--mut); font-size: .92rem; }
.ssq-theme .rev { background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; height: 100%; }
.ssq-theme .rev__stars { color: var(--star); font-size: .9rem; letter-spacing: 2px; margin-bottom: 12px; }
.ssq-theme .rev__text { font-size: .96rem; color: var(--tx); margin: 0; line-height: 1.55; }
.ssq-theme .rev__who { display: flex; align-items: center; gap: 11px; margin-top: 16px; }
.ssq-theme .rev__av { width: 38px; height: 38px; border-radius: 50%; background: var(--brand) !important; color: #fff !important; display: grid; place-items: center; font-weight: 700; }
.ssq-theme .rev__name { font-weight: 700; font-size: .9rem; }
.ssq-theme .rev__city { font-size: .8rem; color: var(--mut); }
.ssq-theme .reviews__more { text-align: center; margin-top: 32px; }
.ssq-theme .gbtn { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 2px solid var(--brand); color: var(--brand); padding: 12px 22px; border-radius: 999px; font-weight: 700; }
.ssq-theme .gbtn:hover { background: var(--brandsoft); }

/* ── coverage ── */
.ssq-theme .cover__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.ssq-theme .cover__pills { display: flex; flex-wrap: wrap; gap: 9px; }
.ssq-theme .pill { background: #fff; border: 1px solid var(--line); color: var(--ink2); padding: 8px 14px; border-radius: 999px; font-size: .88rem; font-weight: 600; }
.ssq-theme .section--soft .cover__pills .pill { background: #fff; }

/* ── faq ── */
.ssq-theme .faq { border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; overflow: hidden; transition: box-shadow .25s; }
.ssq-theme .faq.is-open { box-shadow: var(--shadow-m); }
.ssq-theme .faq__q { width: 100%; text-align: left; border: none; background: none; cursor: pointer; padding: 20px 22px; font-family: var(--display); font-weight: 700; font-size: 1.04rem; color: var(--tx); display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.ssq-theme .faq__icon { color: var(--brand); transition: .2s; flex: none; }
.ssq-theme .faq.is-open .faq__icon { transform: rotate(45deg); }
.ssq-theme .faq__a { padding: 0 22px 20px; color: var(--ink2); line-height: 1.6; }

/* ── final cta ── */
.ssq-theme .final { padding: 64px 0; }
.ssq-theme .final__card { background: linear-gradient(135deg, var(--brand2), var(--brand)); color: #fff; border-radius: 24px; padding: clamp(36px,6vw,64px); text-align: center; position: relative; overflow: hidden; }
.ssq-theme .final__glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.12); filter: blur(8px); top: -130px; left: -80px; animation: es-floaty 7s ease-in-out infinite; }
.ssq-theme .final__title { font-family: var(--display); font-weight: 800; font-size: clamp(1.9rem,4.6vw,2.8rem); margin: 0 0 12px; position: relative; }
.ssq-theme .final__sub { font-size: 1.1rem; color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 28px; position: relative; }
.ssq-theme .final__row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.ssq-theme .final__alt { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 14px; position: relative; }
.ssq-theme .final .altbtn { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25); padding: 11px 20px; border-radius: 999px; font-weight: 700; font-size: .92rem; }
.ssq-theme .final .altbtn:hover { background: rgba(255,255,255,.22); }

/* ── footer ── */
.ssq-theme .site-footer { background: var(--soft); border-top: 1px solid var(--line); padding: 56px 0 0; }
.ssq-theme .site-footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; max-width: var(--maxw); margin: 0 auto; padding: 0 22px 40px; }
.ssq-theme .site-footer__logo img { height: 34px; margin-bottom: 12px; }
.ssq-theme .site-footer__brand p { color: var(--ink2); font-size: .95rem; line-height: 1.6; max-width: 34ch; margin: 0 0 16px; }
.ssq-theme .site-footer__phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 800; color: var(--brand); font-size: 1.15rem; }
.ssq-theme .footer-col h4 { font-family: var(--display); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--mut); margin: 0 0 14px; }
.ssq-theme .footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.ssq-theme .footer-col a, .ssq-theme .footer-col li span { color: var(--ink2); font-size: .92rem; }
.ssq-theme .footer-col a:hover { color: var(--brand); }
.ssq-theme .site-footer__bar { border-top: 1px solid var(--line); }
.ssq-theme .site-footer__bar-in { max-width: var(--maxw); margin: 0 auto; padding: 18px 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .84rem; color: var(--mut); }

/* ── floating CTA ── */
.ssq-theme .floatCTA { position: fixed; right: 22px; bottom: 22px; z-index: 140; display: flex; flex-direction: row; align-items: center; gap: 9px; opacity: 0; transform: translateY(20px) scale(.9); pointer-events: none; transition: opacity .35s ease, transform .35s cubic-bezier(.2,.8,.25,1); }
.ssq-theme .floatCTA.show { opacity: 1; transform: none; pointer-events: auto; }
/* ── "Continue your quote / Finish booking" resume button ── */
.ssqContinue {
  position: fixed; right: 20px; bottom: 20px; z-index: 145;
  display: flex; align-items: stretch; gap: 0;
  opacity: 0; transform: translateY(24px) scale(.92); pointer-events: none;
  transition: opacity .4s ease, transform .4s cubic-bezier(.2,.85,.25,1.1);
  max-width: calc(100vw - 40px);
}
.ssqContinue.show { opacity: 1; transform: none; pointer-events: auto; animation: ssqCont-attn 4.5s ease-in-out 1s infinite; }
@keyframes ssqCont-attn { 0%,88%,100%{transform:none} 92%{transform:translateY(-3px)} 96%{transform:translateY(-1px)} }
.ssqContinue:hover { animation-play-state: paused; }
/* Main clickable pill */
.ssqContinue__main {
  position: relative; display: flex; align-items: center; gap: 12px;
  padding: 12px 18px 12px 14px; border: none; cursor: pointer;
  border-radius: 18px 0 0 18px; font-family: var(--sans); text-align: left;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 50%, #4c1d95 100%);
  color: #fff; box-shadow: 0 20px 44px -16px rgba(76,29,149,.8), 0 0 0 1px rgba(255,255,255,.06) inset;
  transition: transform .15s, box-shadow .15s;
}
.ssqContinue__main:hover { transform: translateY(-2px); box-shadow: 0 26px 52px -16px rgba(76,29,149,.9); }
.ssqContinue__pulse { position: absolute; left: 14px; top: 50%; width: 36px; height: 36px; transform: translateY(-50%); border-radius: 12px; background: rgba(255,255,255,.25); animation: ssqCont-pulse 2.2s ease-out infinite; pointer-events: none; }
@keyframes ssqCont-pulse { 0%{transform:translateY(-50%) scale(.8);opacity:.6} 70%{transform:translateY(-50%) scale(1.5);opacity:0} 100%{opacity:0} }
.ssqContinue__ic { position: relative; flex: none; width: 36px; height: 36px; border-radius: 12px; background: rgba(255,255,255,.16); display: grid; place-items: center; }
.ssqContinue__ic .icon { width: 19px; height: 19px; color: #fff; }
.ssqContinue__tx { display: flex; flex-direction: column; line-height: 1.15; }
.ssqContinue__tx strong { font-weight: 800; font-size: .95rem; }
.ssqContinue__tx em { font-style: normal; font-size: .74rem; color: rgba(255,255,255,.8); margin-top: 1px; }
.ssqContinue__arrow { flex: none; display: grid; place-items: center; opacity: .85; transition: transform .2s; }
.ssqContinue__arrow .icon { width: 16px; height: 16px; color: #fff; }
.ssqContinue__main:hover .ssqContinue__arrow { transform: translateX(3px); }
/* Dismiss / clear-my-details */
.ssqContinue__x {
  flex: none; width: 38px; border: none; cursor: pointer;
  border-radius: 0 18px 18px 0; color: rgba(255,255,255,.85);
  background: linear-gradient(135deg, #6d28d9, #4c1d95);
  box-shadow: 0 20px 44px -16px rgba(76,29,149,.8);
  border-left: 1px solid rgba(255,255,255,.14);
  display: grid; place-items: center; transition: background .15s, color .15s;
}
.ssqContinue__x:hover { background: #4c1d95; color: #fff; }
.ssqContinue__x .icon { width: 15px; height: 15px; }
@media (max-width: 560px) {
  .ssqContinue { right: 12px; left: 12px; bottom: 14px; }
  .ssqContinue__main { flex: 1; border-radius: 16px 0 0 16px; padding: 12px 14px 12px 12px; }
  .ssqContinue__x { border-radius: 0 16px 16px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .ssqContinue.show { animation: none; }
  .ssqContinue__pulse { animation: none; opacity: 0; }
}
.ssq-theme .floatCTA button { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-weight: 700; font-size: 1rem; border: none; border-radius: 999px; padding: 13px 22px; cursor: pointer; background: var(--brand); color: #fff; box-shadow: 0 16px 36px -12px rgba(124,58,237,.7); }
.ssq-theme .floatCTA small { display: block; font-size: .72rem; font-weight: 600; opacity: .9; }

/* ── breadcrumb ── */
.ssq-theme .crumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: var(--mut); margin-bottom: 20px; flex-wrap: wrap; }
.ssq-theme .crumb a { color: var(--brand); }
.ssq-theme .crumb a:hover { text-decoration: underline; }

/* ── article / prose (symptom/service/brand pages) ── */
.ssq-theme .page-hero { padding: clamp(34px,5vw,56px) 0 clamp(28px,4vw,44px); background: linear-gradient(180deg, var(--brandsoft), transparent); border-bottom: 1px solid var(--line); }
.ssq-theme .page-hero__head { display: flex; align-items: flex-start; gap: 18px; }
.ssq-theme .page-hero__ic { flex: none; width: 64px; height: 64px; border-radius: 16px; background: #fff; color: var(--brand); display: grid; place-items: center; box-shadow: var(--shadow-s); }
.ssq-theme .page-hero__ic .icon { width: 32px; height: 32px; }
.ssq-theme .page-hero__badge { display: inline-block; font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 4px 11px; border-radius: 999px; margin-bottom: 8px; }
.ssq-theme .page-hero__badge--low { background: #e3f6ee; color: var(--ok); }
.ssq-theme .page-hero__badge--medium { background: #fdf0d9; color: var(--warn); }
.ssq-theme .page-hero__badge--high { background: #fbe5e3; color: var(--danger); }
.ssq-theme .page-hero__title { font-family: var(--display); font-weight: 800; font-size: clamp(1.5rem,4.5vw,2.4rem); color: var(--tx); margin: 0; line-height: 1.12; }
.ssq-theme .page-hero__cta { margin-top: 22px; }

.ssq-theme .layout { display: grid; grid-template-columns: 1fr 330px; gap: 40px; align-items: start; }
.ssq-theme .prose { color: var(--ink2); line-height: 1.75; font-size: 1.05rem; }
.ssq-theme .prose > h2 { font-family: var(--display); color: var(--tx); font-size: 1.6rem; margin: 1.7em 0 .5em; letter-spacing: -.01em; }
.ssq-theme .prose > h3 { color: var(--tx); font-size: 1.25rem; margin: 1.4em 0 .4em; font-family: var(--display); }
.ssq-theme .prose p { margin: 0 0 1.1em; }
.ssq-theme .prose ul, .ssq-theme .prose ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.ssq-theme .prose li { margin-bottom: .5em; }
.ssq-theme .prose a { color: var(--brand); }
.ssq-theme .prose strong { color: var(--tx); }
.ssq-theme .prose table { width: 100%; border-collapse: collapse; margin: 0 0 1.4em; font-size: .96rem; }
.ssq-theme .prose th, .ssq-theme .prose td { border: 1px solid var(--line); padding: 10px 13px; text-align: left; }
.ssq-theme .prose th { background: var(--soft); font-family: var(--display); }

.ssq-theme .causes { margin-top: 32px; }
.ssq-theme .causes h2 { font-family: var(--display); font-size: 1.4rem; margin: 0 0 16px; }
.ssq-theme .causes__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.ssq-theme .causes__item { display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-s); padding: 14px 16px; box-shadow: var(--shadow-s); }
.ssq-theme .causes__dot { flex: none; width: 32px; height: 32px; border-radius: 8px; background: var(--brandsoft); color: var(--brand); display: grid; place-items: center; }
.ssq-theme .causes__dot .icon { width: 17px; height: 17px; }

.ssq-theme .fix { margin-top: 36px; }
.ssq-theme .fix h2 { font-family: var(--display); font-size: 1.4rem; margin: 0 0 16px; }
.ssq-theme .fix__steps { display: grid; gap: 14px; }
.ssq-theme .fix__step { display: flex; gap: 14px; align-items: flex-start; }
.ssq-theme .fix__ic { flex: none; width: 40px; height: 40px; border-radius: 10px; background: var(--brand); color: #fff; display: grid; place-items: center; }
.ssq-theme .fix__ic .icon { width: 20px; height: 20px; }
.ssq-theme .fix__step h3 { font-size: 1.06rem; margin: 0 0 3px; color: var(--tx); font-family: var(--display); }
.ssq-theme .fix__step p { margin: 0; color: var(--ink2); font-size: .96rem; }

.ssq-theme .inline-cta { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; background: var(--brandsoft); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin-top: 36px; }
.ssq-theme .inline-cta h2 { font-family: var(--display); font-size: 1.3rem; margin: 0 0 6px; color: var(--tx); }
.ssq-theme .inline-cta p { margin: 0; color: var(--ink2); }

.ssq-theme .aside-card { position: sticky; top: 86px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-m); }
.ssq-theme .aside-card h3 { font-family: var(--display); font-size: 1.2rem; margin: 0 0 8px; }
.ssq-theme .aside-card p { color: var(--ink2); font-size: .95rem; margin: 0 0 16px; }
.ssq-theme .aside-card .btn { width: 100%; }
.ssq-theme .aside-card__list { list-style: none; margin: 18px 0 0; padding: 16px 0 0; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.ssq-theme .aside-card__list li { display: flex; align-items: center; gap: 10px; color: var(--ink2); font-size: .92rem; }
.ssq-theme .aside-card__list .icon { width: 17px; height: 17px; color: var(--brand); flex: none; }
.ssq-theme .aside-actions { display: flex; gap: 8px; margin-top: 12px; }
.ssq-theme .aside-actions a { flex: 1; }

.ssq-theme .embed-ai { margin-top: 40px; padding: 28px; background: var(--brandsoft); border: 1px solid var(--line); border-radius: var(--radius); }
.ssq-theme .embed-ai .eyebrow { display: block; }
.ssq-theme .embed-ai h2 { font-family: var(--display); font-size: 1.4rem; margin: 0 0 16px; }
.ssq-theme .embed-ai .ai { background: #fff; }

.ssq-theme .related-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 14px; }
.ssq-theme .related-card { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-s); padding: 16px; color: inherit; box-shadow: var(--shadow-s); transition: transform .16s, box-shadow .16s; }
.ssq-theme .related-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-m); }
.ssq-theme .related-card__ic { flex: none; width: 44px; height: 44px; border-radius: 11px; background: var(--brandsoft); color: var(--brand); display: grid; place-items: center; }
.ssq-theme .related-card__ic .icon { width: 22px; height: 22px; }
.ssq-theme .related-card__t { display: block; font-weight: 700; color: var(--tx); }
.ssq-theme .related-card__d { display: block; color: var(--mut); font-size: .86rem; }

/* brands grid on brand/service pages */
.ssq-theme .brandwall { display: flex; flex-wrap: wrap; gap: 10px; }
.ssq-theme .brand-chip { background: #fff; border: 1px solid var(--line); color: var(--ink2); padding: 9px 18px; border-radius: 999px; font-weight: 600; font-size: .92rem; }
.ssq-theme .brand-chip:hover { border-color: var(--brand); color: var(--brand); }

/* ── chat / booking modal ── */
.es-chat-ovl { position: fixed; inset: 0; z-index: 1000; background: rgba(13,19,32,.55); backdrop-filter: blur(6px); display: grid; place-items: center; padding: 16px; animation: es-ovl-in .25s ease; }
@keyframes es-ovl-in { from { opacity: 0; } to { opacity: 1; } }
.es-chat {
  position: relative; background: #fff; border-radius: 24px;
  box-shadow: 0 50px 110px -45px rgba(60,28,120,.7), 0 0 0 1px rgba(124,58,237,.08);
  width: 100%; max-width: 452px; height: min(640px,88vh);
  display: flex; flex-direction: column; overflow: hidden; animation: es-pop .34s cubic-bezier(.2,.9,.25,1);
}
/* ── Header: a real expert on the line ── */
.es-chat__top {
  position: relative; display: flex; align-items: center; gap: 13px; padding: 16px 18px 15px;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 45%, #4c1d95 100%); color: #fff;
}
.es-chat__top::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 22px; background: linear-gradient(180deg, rgba(76,29,149,.18), transparent); pointer-events: none; }
.es-chat__av {
  position: relative; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.16); color: #fff; display: grid; place-items: center;
  font-weight: 800; font-family: var(--display); font-size: .92rem; letter-spacing: .02em;
  box-shadow: 0 0 0 0 rgba(255,255,255,.45); animation: es-ring 2.8s infinite;
}
@keyframes es-ring { 0%{box-shadow:0 0 0 0 rgba(255,255,255,.4)} 70%{box-shadow:0 0 0 10px rgba(255,255,255,0)} 100%{box-shadow:0 0 0 0 rgba(255,255,255,0)} }
.es-chat__top strong { display: block; font-size: 1.02rem; font-family: var(--display); font-weight: 800; line-height: 1.1; }
.es-chat__status { font-size: .76rem; color: rgba(255,255,255,.85); display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.es-chat__status i { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 0 rgba(74,222,128,.7); animation: es-pulse-g 2s infinite; }
@keyframes es-pulse-g { 0%{box-shadow:0 0 0 0 rgba(74,222,128,.6)} 70%{box-shadow:0 0 0 7px rgba(74,222,128,0)} 100%{box-shadow:0 0 0 0 rgba(74,222,128,0)} }
.es-chat__x { margin-left: auto; background: rgba(255,255,255,.14); border: none; border-radius: 10px; width: 34px; height: 34px; display: grid; place-items: center; cursor: pointer; color: #fff; transition: background .15s; }
.es-chat__x:hover { background: rgba(255,255,255,.26); }
/* ── Trust strip (replaces the old call-out banner; premium, reassuring) ── */
.es-chat__trust { display: flex; align-items: center; gap: 14px; padding: 9px 18px; background: #faf8ff; border-bottom: 1px solid var(--line); font-size: .73rem; color: var(--ink2); font-weight: 600; }
.es-chat__trust span { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.es-chat__trust .icon { width: 13px; height: 13px; color: var(--ok); }
.es-chat__trust span + span { position: relative; padding-left: 14px; }
.es-chat__trust span + span::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 3px; height: 3px; border-radius: 50%; background: var(--line); }
/* legacy banner hidden if present */
.es-chat__ai { display: none; }
/* ── Conversation canvas: warm, not flat grey ── */
.es-chat__body { flex: 1; overflow-y: auto; padding: 20px 16px; display: flex; flex-direction: column; gap: 11px; background: linear-gradient(180deg, #fbfaff 0%, #f6f4fc 100%); scroll-behavior: smooth; }
.es-bub { max-width: 84%; padding: 12px 16px; border-radius: 18px; font-size: .95rem; line-height: 1.5; animation: es-bub-in .32s cubic-bezier(.2,.9,.25,1); }
@keyframes es-bub-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.es-bub--assistant { align-self: flex-start; background: #fff; color: var(--ink2); border: 1px solid #ece6fb; border-bottom-left-radius: 6px; box-shadow: 0 4px 14px -10px rgba(60,28,120,.4); }
.es-bub--user { align-self: flex-end; background: linear-gradient(135deg, #7c3aed, #6d28d9); color: #fff; border-bottom-right-radius: 6px; box-shadow: 0 8px 20px -10px rgba(124,58,237,.6); }
.es-bub--typing { display: flex; gap: 4px; align-items: center; }
.es-bub--typing i { width: 7px; height: 7px; border-radius: 50%; background: #b9a8ec; animation: es-blink 1.2s infinite; }
.es-bub--typing i:nth-child(2){animation-delay:.2s}.es-bub--typing i:nth-child(3){animation-delay:.4s}
/* ── Input: confident, tactile ── */
.es-chat__input { display: flex; gap: 9px; padding: 13px 14px; border-top: 1px solid var(--line); background: #fff; }
.es-chat__input input { flex: 1; border: 1.5px solid #e4ddf7; border-radius: 999px; padding: 13px 18px; font-family: var(--sans); font-size: .95rem; outline: none; transition: border-color .15s, box-shadow .15s; }
.es-chat__input input:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(124,58,237,.12); }
.es-chat__input button { flex: none; width: 46px; height: 46px; border-radius: 50%; border: none; background: linear-gradient(135deg, #7c3aed, #6d28d9); color: #fff; display: grid; place-items: center; cursor: pointer; box-shadow: 0 10px 22px -10px rgba(124,58,237,.7); transition: transform .12s, box-shadow .12s; }
.es-chat__input button:hover { transform: translateY(-1px); box-shadow: 0 14px 26px -10px rgba(124,58,237,.8); }
.es-chat__input button:active { transform: scale(.92); }
.es-chat__input button:disabled { background: #c9bdec; box-shadow: none; cursor: default; transform: none; }
/* ── Success state ── */
.es-chat__done { display: flex; align-items: center; gap: 13px; padding: 18px 16px; background: linear-gradient(135deg, #ecfdf5, #f0fdf4); border-top: 1px solid #bbf7d0; }
.es-chat__done > .icon { flex: none; width: 28px; height: 28px; color: var(--ok); animation: es-check-pop .4s cubic-bezier(.2,.9,.25,1); }
@keyframes es-check-pop { from { transform: scale(0); } to { transform: scale(1); } }
.es-chat__done strong { display: block; font-size: 1.04rem; color: var(--tx); font-family: var(--display); }
.es-chat__done span { display: block; font-size: .86rem; font-weight: 500; color: var(--ink2); margin-top: 2px; line-height: 1.35; }
.es-chat__done-x { flex: none; margin-left: auto; align-self: center; padding: 10px 18px; border-radius: 12px; border: none; background: var(--ok); color: #fff; font-weight: 700; font-size: .9rem; cursor: pointer; transition: background .15s; }
.es-chat__done-x:hover { background: #128a58; }
@media (prefers-reduced-motion: reduce) {
  .es-chat, .es-bub, .es-chat-ovl, .es-chat__av, .es-chat__status i, .es-chat__done > .icon { animation: none !important; }
}

/* ── animations ── */
@keyframes es-pulse { 0%{box-shadow:0 0 0 0 rgba(21,168,107,.5)} 70%{box-shadow:0 0 0 9px rgba(21,168,107,0)} 100%{box-shadow:0 0 0 0 rgba(21,168,107,0)} }
@keyframes es-spin { to { transform: rotate(360deg); } }
@keyframes es-slide { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:none} }
@keyframes es-pop { from{opacity:0;transform:translateY(12px) scale(.97)} to{opacity:1;transform:none} }
@keyframes es-floaty { 50%{transform:translateY(-12px)} }
@keyframes es-blink { 0%,100%{opacity:1} 50%{opacity:.25} }
.ssq-theme .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s, transform .6s; transition-delay: var(--d,0ms); }
.ssq-theme .reveal.is-in { opacity: 1; transform: none; }

/* ── responsive ── */
@media (max-width: 900px) {
  .ssq-theme .layout { grid-template-columns: 1fr; }
  .ssq-theme .aside-card { position: static; }
  .ssq-theme .about__grid, .ssq-theme .cover__grid { grid-template-columns: 1fr; gap: 28px; }
  .ssq-theme .site-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .ssq-theme .grid-3, .ssq-theme .grid-4, .ssq-theme .grid-2 { grid-template-columns: 1fr; }
  .ssq-theme .grid-4 { grid-template-columns: 1fr 1fr; }
  .ssq-theme .diag__grid { grid-template-columns: 1fr; }
  .ssq-theme .site-footer__inner { grid-template-columns: 1fr; }
  .ssq-theme .inline-cta { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  .ssq-theme *, .ssq-theme *::before, .ssq-theme *::after { animation: none !important; transition: none !important; }
  .ssq-theme .reveal { opacity: 1; transform: none; }
}
.ssq-theme :focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 6px; }

/* review attribution */
.ssq-theme .rev__who { display: flex; align-items: center; gap: 11px; margin-top: 16px; }
.ssq-theme .rev__av { flex: none; width: 38px; height: 38px; border-radius: 50%; background: var(--brand) !important; color: #fff !important; display: grid; place-items: center; font-weight: 700; }
.ssq-theme .rev__name { font-weight: 700; font-size: .9rem; color: var(--tx); }
.ssq-theme .rev__src { display: flex; align-items: center; gap: 5px; font-size: .78rem; color: var(--mut); margin-top: 2px; }

/* review score label */
.ssq-theme .rev__stars { display: flex; align-items: center; gap: 8px; }
.ssq-theme .rev__score { font-weight: 700; font-size: .82rem; color: var(--tx) !important; letter-spacing: normal; }

/* ============ Mobile polish pass ============ */
@media (max-width: 640px) {
  /* Tighter line-height on inner-page prose + headings (was too airy). */
  .ssq-theme .prose { line-height: 1.6; font-size: 1.02rem; }
  .ssq-theme .prose > h2 { line-height: 1.18; margin: 1.4em 0 .45em; }
  .ssq-theme .prose > h3 { line-height: 1.2; }
  .ssq-theme .page-hero__title { line-height: 1.12; }
  /* Reduce the gap under the service/symptom hero CTA before the body copy. */
  .ssq-theme .page-hero { padding-bottom: 18px; }
  .ssq-theme .page-hero__cta { margin-top: 16px; }
  .ssq-theme .layout { padding-top: 24px; }
  /* The .section wrapper after the page-hero adds a large top pad → big gap
     before the body copy. Pull it in tight on inner pages. */
  .ssq-theme .page-hero + .section { padding-top: 18px; }
  /* Footer breathing room on mobile. */
  .ssq-theme .site-footer { padding-top: 40px; }
  .ssq-theme .site-footer__inner { gap: 28px; padding: 0 22px 28px; }
  .ssq-theme .site-footer__col { padding-bottom: 6px; }
  /* Extra bottom pad so the fixed floating CTA never covers footer text. */
  .ssq-theme .site-footer__bar-in { padding: 22px 22px 96px; }
}

/* Chat: when the on-screen keyboard opens it eats vertical space; use dynamic
   viewport units and a smaller welcome message so the latest message stays in
   view. dvh accounts for the keyboard on modern mobile browsers. */
@media (max-width: 640px) {
  /* Don't vertically center the chat — when the keyboard opens, centering
     pushes messages off the top of the screen. Anchor it to fill the panel
     from the top instead, sized to the *visible* viewport (set via JS). */
  .es-chat-ovl { place-items: stretch; padding: 0; background: #fff; height: 100dvh; }
  .es-chat { height: 100%; max-width: 100%; border-radius: 0; }
  .es-chat__body { padding: 14px 14px; gap: 9px; }
  /* Push messages to the bottom (just above the input) only when there's spare
     space; when they overflow, normal scrolling still works without clipping. */
  .es-chat__body > :first-child { margin-top: auto; }
  .es-chat__ai { font-size: .74rem; padding: 8px 14px; }
  .es-bub { font-size: .95rem; padding: 10px 13px; }
  /* Tighten input bar so it sits flush above the keyboard, no page bleed. */
  .es-chat__input { padding: 8px 10px; }
}

/* Floating CTA quick-contact icon (phone). */
.ssq-theme .floatCTA__icons { display: flex; gap: 9px; align-items: center; }
.ssq-theme .floatCTA__ic { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: #fff; box-shadow: 0 10px 26px -10px rgba(13,19,32,.45); border: 1px solid var(--line); transition: transform .15s; }
.ssq-theme .floatCTA__ic:hover { transform: translateY(-2px); }
.ssq-theme .floatCTA__ic .icon { width: 22px; height: 22px; }
.ssq-theme .floatCTA__ic--call { background: var(--brand); border-color: var(--brand); }
.ssq-theme .floatCTA__ic--call .icon { color: #fff; }
.ssq-theme .floatCTA__ic--wa { background: #25d366; border-color: #25d366; }
.ssq-theme .floatCTA__ic--wa .icon { color: #fff; }

/* Floating bar: keep all four buttons on one row, compact on small phones. */
@media (max-width: 560px) {
  .ssq-theme .floatCTA { left: 12px; right: 12px; }
}
@media (max-width: 380px) {
  .ssq-theme .floatCTA__ic { width: 38px; height: 38px; }
}

/* Numeric rating before the stars in the hero eyebrow. */
.ssq-theme .hero__score { font-weight: 800; color: var(--tx); }

/* ── Washing-machine cross-link banner (homepage, below hero) ── */
.ssq-theme .xband { padding: 0 0 8px; }
.ssq-theme .xband__card { display: flex; align-items: center; gap: 16px; padding: 18px 22px; border-radius: 18px;
  background: linear-gradient(100deg, var(--brandsoft), #fff); border: 1px solid var(--line);
  box-shadow: 0 12px 30px -18px rgba(13,19,32,.4); text-decoration: none; transition: transform .18s, box-shadow .18s, border-color .18s; }
.ssq-theme .xband__card:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -18px rgba(124,58,237,.4); border-color: #d9c9fb; }
.ssq-theme .xband__ic { flex: none; width: 50px; height: 50px; border-radius: 13px; background: var(--brand); color: #fff; display: grid; place-items: center; }
.ssq-theme .xband__ic .icon { width: 26px; height: 26px; color: #fff; }
.ssq-theme .xband__txt { flex: 1; min-width: 0; }
.ssq-theme .xband__txt strong { display: block; font-weight: 800; color: var(--tx); font-size: 1.05rem; }
.ssq-theme .xband__txt span { display: block; color: var(--mut); font-size: .92rem; margin-top: 2px; line-height: 1.4; }
.ssq-theme .xband__go { flex: none; display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--brand); white-space: nowrap; }
.ssq-theme .xband__go .icon { width: 18px; height: 18px; }
@media (max-width: 640px) {
  .ssq-theme .xband__card { flex-wrap: wrap; gap: 12px; padding: 16px; }
  .ssq-theme .xband__go { width: 100%; justify-content: center; padding-top: 8px; border-top: 1px solid var(--line); }
}

/* ── AI estimator result overlay: scrollable when taller than the screen ── */
.ssq-theme .es-diag { max-width: 460px; max-height: 88vh; display: flex; flex-direction: column; }
.ssq-theme .es-diag__scroll { overflow-y: auto; -webkit-overflow-scrolling: touch; max-height: 88vh; }
@media (max-width: 640px) {
  .ssq-theme .es-diag { max-width: 100%; height: 100dvh; max-height: 100dvh; border-radius: 0; }
  .ssq-theme .es-diag__scroll { max-height: 100dvh; flex: 1; }
}

/* ── Inline diagnosis card inside the diagnostic chat ── */
.ssq-theme .es-bub.es-diag-card { max-width: 100%; width: 100%; background: transparent; padding: 0; border: none; }
.ssq-theme .es-diag-card .diag { background: #fff; border: 1px solid #ece6fb; border-radius: 20px; padding: 0; overflow: hidden; box-shadow: 0 18px 44px -22px rgba(60,28,120,.5); animation: es-card-in .45s cubic-bezier(.2,.9,.25,1); }
@keyframes es-card-in { from { opacity: 0; transform: translateY(14px) scale(.96); } to { opacity: 1; transform: none; } }
.ssq-theme .diag__top { padding: 18px 18px 16px; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, #faf8ff, #fff); }
.ssq-theme .diag__k { display: block; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); margin-bottom: 6px; }
.ssq-theme .diag__cause { font-family: var(--display); font-weight: 800; font-size: 1.12rem; line-height: 1.28; color: var(--tx); }
.ssq-theme .diag__grid { display: grid; grid-template-columns: 1fr 1fr; }
.ssq-theme .diag__cell { padding: 16px 18px; }
.ssq-theme .diag__cell + .diag__cell { border-left: 1px solid var(--line); }
.ssq-theme .diag__cell .diag__k { color: var(--mut); }
.ssq-theme .diag__pill { display: inline-block; color: #fff; font-weight: 800; font-size: .82rem; padding: 5px 13px; border-radius: 999px; }
.ssq-theme .diag__price { font-family: var(--display); font-weight: 800; font-size: 1.35rem; color: var(--tx); line-height: 1; letter-spacing: -.01em; }
.ssq-theme .diag__also { padding: 15px 18px; border-top: 1px solid var(--line); background: #fbfaff; }
.ssq-theme .diag__also-row { display: flex; flex-wrap: wrap; gap: 7px; }
.ssq-theme .diag__chip { font-size: .82rem; color: var(--ink2); background: #fff; border: 1px solid #ece6fb; padding: 5px 12px; border-radius: 999px; }
.ssq-theme .diag__cta { padding: 16px 18px 18px; background: #fff; }
.ssq-theme .diag__cta .btn--primary { background: linear-gradient(135deg, var(--ok), #0f9f63); box-shadow: 0 14px 30px -12px rgba(21,168,107,.6); border: none; font-weight: 800; }
.ssq-theme .diag__cta .btn--primary:hover { background: linear-gradient(135deg, #128a58, #0d8a55); }
.ssq-theme .diag__note { font-size: .76rem; color: var(--mut); margin-top: 11px; line-height: 1.45; text-align: center; }

/* ── Homepage / landing conversational entry — premium "AI console" ── */
.ssq-theme .ai {
  position: relative; overflow: hidden;
  border: 1px solid rgba(124,58,237,.16);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(124,58,237,.06), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
  box-shadow: 0 30px 70px -34px rgba(76,29,149,.5), 0 4px 18px -10px rgba(13,19,32,.18);
  padding: 0;
}
/* Header band — ink-violet, matches the chat overlay so it's one product */
.ssq-theme .ai .hero-estimator__head {
  position: relative; margin: 0; padding: 20px 24px 18px; text-align: left;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 48%, #4c1d95 100%); color: #fff;
}
.ssq-theme .ai .hero-estimator__head::after { content: ""; position: absolute; left: 0; right: 0; bottom: -14px; height: 14px; background: linear-gradient(180deg, rgba(76,29,149,.16), transparent); pointer-events: none; }
.ssq-theme .ai .hero-estimator__head .eyebrow { display: inline-flex; align-items: center; gap: 7px; color: #c4f7df !important; font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.ssq-theme .ai .hero-estimator__head .eyebrow .icon { width: 15px; height: 15px; }
.ssq-theme .ai .hero-estimator__title { color: #fff; font-family: var(--display); font-weight: 800; font-size: clamp(1.3rem,2.6vw,1.6rem); line-height: 1.1; margin: 8px 0 0; }
.ssq-theme .ai .hero-estimator__sub { color: rgba(255,255,255,.82); max-width: 46ch; margin: 7px 0 0; font-size: .95rem; line-height: 1.5; }

/* Body — the conversational entry */
.ssq-theme .aentry { display: flex; flex-direction: column; gap: 16px; padding: 22px 24px 24px; }
.ssq-theme .aentry__greet { display: flex; gap: 13px; align-items: flex-start; }
.ssq-theme .aentry__av {
  position: relative; flex: none; width: 44px; height: 44px; border-radius: 13px;
  background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(124,58,237,.04));
  border: 1px solid rgba(124,58,237,.22);
  display: grid; place-items: center; color: var(--brand);
  box-shadow: 0 0 0 0 rgba(124,58,237,.4); animation: es-ring-v 2.8s infinite;
}
@keyframes es-ring-v { 0%{box-shadow:0 0 0 0 rgba(124,58,237,.35)} 70%{box-shadow:0 0 0 9px rgba(124,58,237,0)} 100%{box-shadow:0 0 0 0 rgba(124,58,237,0)} }
.ssq-theme .aentry__av .icon { width: 22px; height: 22px; }
.ssq-theme .aentry__hi { display: flex; flex-direction: column; gap: 4px; padding-top: 1px; }
.ssq-theme .aentry__who { display: inline-flex; align-items: center; gap: 9px; }
.ssq-theme .aentry__who strong { color: var(--tx); font-weight: 800; font-size: 1.02rem; }
.ssq-theme .aentry__online { font-size: .64rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: #0f7a4d; background: rgba(21,168,107,.12); border: 1px solid rgba(21,168,107,.3); padding: 2px 8px; border-radius: 999px; display: inline-flex; align-items: center; gap: 5px; }
.ssq-theme .aentry__online::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(21,168,107,.6); animation: es-pulse-g 2s infinite; }
.ssq-theme .aentry__greeting { color: var(--ink2); font-size: .95rem; line-height: 1.5; }

.ssq-theme .aentry__row { display: flex; gap: 11px; align-items: stretch; }
.ssq-theme .aentry__input {
  flex: 1; min-width: 0;
  border: 1.5px solid #e4ddf7; border-radius: 14px;
  padding: 15px 18px; font-family: var(--sans); font-size: 1rem; color: var(--tx);
  background: #fff; outline: none; transition: border-color .15s, box-shadow .15s;
  box-shadow: 0 2px 10px -6px rgba(13,19,32,.2);
}
.ssq-theme .aentry__input::placeholder { color: #9aa3b4; }
.ssq-theme .aentry__input:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(124,58,237,.13); }
.ssq-theme .aentry__go {
  flex: none; gap: 8px; white-space: nowrap; font-weight: 800; border: none;
  background: linear-gradient(135deg, var(--ok) 0%, #0f9f63 100%);
  box-shadow: 0 14px 30px -12px rgba(21,168,107,.65);
  transition: transform .12s, box-shadow .12s, background .15s;
}
.ssq-theme .aentry__go:hover { transform: translateY(-1px); background: linear-gradient(135deg, #128a58, #0d8a55); box-shadow: 0 18px 34px -12px rgba(21,168,107,.75); }
.ssq-theme .aentry__go:active { transform: scale(.97); }

/* When embedded in the hero-estimator wrapper, the .ai card is the only box */
.ssq-theme .hero-estimator .ai--embed.ai { box-shadow: 0 30px 70px -34px rgba(76,29,149,.5), 0 4px 18px -10px rgba(13,19,32,.18); border: 1px solid rgba(124,58,237,.16); border-radius: 22px; }

@media (max-width: 560px) {
  .ssq-theme .ai .hero-estimator__head { padding: 18px 18px 16px; }
  .ssq-theme .aentry { padding: 18px; gap: 14px; }
  .ssq-theme .aentry__row { flex-direction: column; }
  .ssq-theme .aentry__go { width: 100%; justify-content: center; padding-top: 14px; padding-bottom: 14px; }
}
@media (prefers-reduced-motion: reduce) { .ssq-theme .aentry__av { animation: none; } }

/* ── Footer business / legal block (premium, light footer) ── */
.ssq-theme .site-footer__legal { border-top: 1px solid var(--line); }
.ssq-theme .footer-legal { max-width: var(--maxw); margin: 0 auto; padding: 36px 22px 8px; }
.ssq-theme .footer-legal__head { display: flex; align-items: center; gap: 13px; margin-bottom: 24px; }
.ssq-theme .footer-legal__head .footer-legal__ic { flex: none; width: 42px; height: 42px; border-radius: 12px; background: var(--brandsoft); display: grid; place-items: center; }
.ssq-theme .footer-legal__head .footer-legal__ic .icon { width: 22px; height: 22px; color: var(--brand); }
.ssq-theme .footer-legal__head p { margin: 0; color: var(--ink2); font-size: .98rem; line-height: 1.5; }
.ssq-theme .footer-legal__head strong { color: var(--tx); font-weight: 800; }
.ssq-theme .footer-legal__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ssq-theme .footer-legal__card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; box-shadow: 0 10px 26px -20px rgba(13,19,32,.35); }
.ssq-theme .footer-legal__k { display: inline-flex; align-items: center; gap: 9px; font-size: .74rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--mut); margin-bottom: 14px; }
.ssq-theme .footer-legal__k .icon { width: 17px; height: 17px; color: var(--brand); }
.ssq-theme .footer-legal__rows { list-style: none; margin: 0; padding: 0; }
.ssq-theme .footer-legal__rows li { display: flex; flex-direction: column; gap: 3px; padding: 8px 0; border-bottom: 1px dashed var(--line); }
.ssq-theme .footer-legal__rows li:last-child { border-bottom: none; }
.ssq-theme .footer-legal__rows li span { color: var(--mut); font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; }
.ssq-theme .footer-legal__rows li b { color: var(--tx); font-weight: 700; font-size: 1rem; white-space: nowrap; }
.ssq-theme .footer-legal__rows--plain li { padding: 7px 0; }
.ssq-theme .footer-legal__rows--plain li a { color: var(--tx); font-weight: 600; font-size: .94rem; text-decoration: none; transition: color .15s; }
.ssq-theme .footer-legal__rows--plain li a:hover { color: var(--brand); }
.ssq-theme .footer-legal__addr { margin: 0; color: var(--tx); font-weight: 600; line-height: 1.55; }
.ssq-theme .footer-legal__hint { display: flex; align-items: center; gap: 8px; margin: 13px 0 0; padding-top: 13px; border-top: 1px solid var(--line); color: var(--ink2); font-size: .85rem; }
.ssq-theme .footer-legal__hint .icon { width: 15px; height: 15px; color: var(--brand); flex: none; }
.ssq-theme .footer-legal__note { display: flex; align-items: center; gap: 13px; margin-top: 18px; padding: 15px 20px; border-radius: 14px; background: #fff7ea; border: 1px solid #f3dcae; }
.ssq-theme .footer-legal__note-ic { flex: none; width: 34px; height: 34px; border-radius: 10px; background: rgba(224,144,15,.16); display: grid; place-items: center; }
.ssq-theme .footer-legal__note-ic .icon { width: 19px; height: 19px; color: var(--warn); }
.ssq-theme .footer-legal__note p { margin: 0; color: #8a5a08; font-size: .92rem; line-height: 1.45; font-weight: 600; }
@media (max-width: 860px) {
  .ssq-theme .footer-legal__grid { grid-template-columns: 1fr; }
  .ssq-theme .footer-legal { padding: 28px 18px 6px; }
}

/* ── Unified premium footer ── */
.ssq-theme .site-footer__main { max-width: 1320px; margin: 0 auto; padding: 0 40px 36px; display: grid; grid-template-columns: 0.9fr 1.6fr; gap: 48px; align-items: start; }
.ssq-theme .footer-brandcol .site-footer__logo { display: inline-block; margin-bottom: 16px; }
.ssq-theme .footer-brandcol__desc { color: var(--ink2); font-size: .95rem; line-height: 1.6; max-width: 38ch; margin: 0 0 18px; }
.ssq-theme .site-footer__phone { display: inline-flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 800; font-size: 1.18rem; color: var(--brand); text-decoration: none; }
.ssq-theme .site-footer__phone .icon { width: 20px; height: 20px; }
.ssq-theme .footer-brandcol__contact { display: flex; flex-wrap: wrap; gap: 9px; margin: 18px 0 20px; }
.ssq-theme .footer-cbtn { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: 11px; font-size: .88rem; font-weight: 600; text-decoration: none; border: 1px solid var(--line); background: #fff; color: var(--ink2); transition: transform .15s, box-shadow .15s, border-color .15s; }
.ssq-theme .footer-cbtn .icon { width: 16px; height: 16px; }
.ssq-theme .footer-cbtn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -12px rgba(13,19,32,.4); }
.ssq-theme .footer-cbtn--wa { color: #1faf54; }
.ssq-theme .footer-cbtn--wa:hover { border-color: #b6e7c7; }
.ssq-theme .footer-cbtn--sms { color: var(--brand); }
.ssq-theme .footer-cbtn--sms:hover { border-color: #d9c9fb; }
.ssq-theme .footer-brandcol__links { display: flex; flex-wrap: wrap; gap: 8px 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.ssq-theme .footer-brandcol__links a { color: var(--ink2); font-size: .92rem; font-weight: 600; text-decoration: none; }
.ssq-theme .footer-brandcol__links a:hover { color: var(--brand); }
.ssq-theme .footer-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 980px) {
  .ssq-theme .site-footer__main { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 760px) {
  .ssq-theme .footer-info { grid-template-columns: 1fr; }
}

/* ── Slim "Get a free quote" bar, directly under the header nav (mobile only) ── */
.ssq-theme .quote-bar {
  display: none; /* desktop has the estimator + float button; this is mobile only */
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  border: none;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #15a86b 0%, #0f8a55 100%);
  font-family: var(--sans);
  -webkit-tap-highlight-color: transparent;
}
.ssq-theme .quote-bar__ic { display: grid; place-items: center; flex: 0 0 auto; }
.ssq-theme .quote-bar__ic .icon { width: 15px; height: 15px; color: #fff; }
.ssq-theme .quote-bar__tx { font-weight: 700; font-size: .86rem; letter-spacing: .01em; }
.ssq-theme .quote-bar__arrow { display: grid; place-items: center; flex: 0 0 auto; }
.ssq-theme .quote-bar__arrow .icon { width: 15px; height: 15px; color: #fff; }
.ssq-theme .quote-bar:active { filter: brightness(.95); }
@media (max-width: 768px) {
  .ssq-theme .quote-bar { display: flex; }
}

/* ── Green "Get a free quote" floating button (left of book + call) ── */
.ssq-theme .floatCTA__quote {
  background: linear-gradient(135deg, #15a86b 0%, #0f8a55 100%) !important;
  color: #fff !important;
  box-shadow: 0 16px 36px -12px rgba(21,168,107,.75) !important;
}
/* Two-line button text so all three float items fit one row. */
.ssq-theme .floatCTA button span { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.ssq-theme .floatCTA button span small { font-weight: 600; font-size: .7rem; opacity: .9; }
@media (max-width: 560px) {
  .ssq-theme .floatCTA { gap: 6px; justify-content: flex-end; flex-wrap: nowrap; }
  .ssq-theme .floatCTA button { padding: 8px 12px; font-size: .8rem; gap: 7px; }
  .ssq-theme .floatCTA button .icon { width: 17px; height: 17px; flex: 0 0 auto; }
  .ssq-theme .floatCTA button span { font-size: .8rem; }
  .ssq-theme .floatCTA button span small { display: block; font-size: .64rem; }
  .ssq-theme .floatCTA__icons { gap: 6px; }
  .ssq-theme .floatCTA__ic { width: 40px; height: 40px; }
}
@media (max-width: 380px) {
  .ssq-theme .floatCTA button { padding: 7px 10px; }
  .ssq-theme .floatCTA button span { font-size: .74rem; }
  .ssq-theme .floatCTA button span small { font-size: .6rem; }
  .ssq-theme .floatCTA__ic { width: 38px; height: 38px; }
}

/* ── Hero-embedded AI estimator (symptom/brand/service landing pages) ── */
.ssq-theme .hero-estimator {
  margin-top: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-m, 0 10px 30px rgba(124,58,237,.10));
  padding: clamp(18px,3vw,28px);
  max-width: 760px;
}
.ssq-theme .hero-estimator__head { text-align: center; margin-bottom: 16px; }
.ssq-theme .hero-estimator__head .eyebrow { display: inline-flex; align-items: center; gap: 6px; }
.ssq-theme .hero-estimator__head .eyebrow .icon { width: 16px; height: 16px; }
.ssq-theme .hero-estimator__title { font-family: var(--display); font-size: clamp(1.15rem,2.4vw,1.5rem); line-height: 1.15; margin: 6px 0 0; color: var(--tx); }
.ssq-theme .hero-estimator__sub { color: var(--ink2); max-width: 52ch; margin: 8px auto 0; font-size: .98rem; }
.ssq-theme .hero-estimator .ai--embed { margin-top: 0; }
/* The widget itself is the premium card now, so the inner-estimator wrapper is a
   transparent passthrough (no double-box). */
.ssq-theme .hero-estimator.inner-estimator { background: none; border: none; box-shadow: none; padding: 0; max-width: 760px; }
.ssq-theme .hero-estimator .ai--embed .hero-estimator__head { margin-bottom: 0; }
.ssq-theme .hero-estimator__or { text-align: center; margin-top: 14px; }
.ssq-theme .hero-estimator__or .btn { font-size: .95rem; }

/* ════════════════════════════════════════════════════════════════
   Inner-page LIGHT hero — the AI assistant widget is the centrepiece.
   White background; violet widget head; clean light input.
   ════════════════════════════════════════════════════════════════ */
.ssq-theme .page-hero--light {
  position: relative; overflow: hidden; border-bottom: 1px solid var(--line);
  padding: clamp(26px,4vw,46px) 0 clamp(30px,4vw,48px);
  background:
    radial-gradient(60% 70% at 50% -10%, rgba(124,58,237,.08), transparent 60%),
    linear-gradient(180deg, #faf8ff 0%, #ffffff 70%);
  text-align: center;
}
.ssq-theme .page-hero--light .container { position: relative; z-index: 2; }
.ssq-theme .page-hero--light .crumb { justify-content: center; margin-bottom: 18px; color: var(--mut); }
.ssq-theme .page-hero--light .hero-badge { color: var(--brand); background: var(--brandsoft); border: 1px solid rgba(124,58,237,.22); }
.ssq-theme .page-hero--light .hero-badge i { background: var(--ok); box-shadow: 0 0 8px rgba(21,168,107,.7); }

/* widget = centrepiece (uses the standard light .ai styling already defined above) */
.ssq-theme .page-hero--light .hero-estimator.inner-estimator { max-width: 620px; margin: 0 auto; }

/* trust row under the widget */
.ssq-theme .page-hero--light .hero__trust { justify-content: center; margin-top: 22px; gap: 14px 22px; flex-wrap: wrap; }
.ssq-theme .page-hero--light .hero__trust .ok { color: var(--ink2); }
.ssq-theme .page-hero--light .hero__trust .ok .icon { color: var(--ok); }

/* animated line only — no text */
.ssq-theme .page-hero--light .hero-cue { display: flex; justify-content: center; margin: 26px auto 0; }
.ssq-theme .page-hero--light .hero-cue__rail { position: relative; width: 2px; height: 40px; border-radius: 2px; background: linear-gradient(180deg, rgba(124,58,237,.4), transparent); overflow: hidden; }
.ssq-theme .page-hero--light .hero-cue__rail::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); top: -14px; width: 6px; height: 12px; border-radius: 6px; background: linear-gradient(#7c3aed,#15a86b); animation: ssq-cue 1.9s cubic-bezier(.5,0,.5,1) infinite; }
@keyframes ssq-cue { 0%{top:-14px;opacity:0} 25%{opacity:1} 80%{opacity:1} 100%{top:40px;opacity:0} }
@keyframes ssq-blink { 0%,100%{opacity:1} 50%{opacity:.4} }

@media (prefers-reduced-motion: reduce) {
  .ssq-theme .hero-badge i, .ssq-theme .page-hero--light .hero-cue__rail::after { animation: none; }
}

/* ── Collapsible long-form prose (SEO copy, demoted & calm) ── */
.ssq-theme .prose--collapsible { position: relative; max-height: 420px; overflow: hidden; transition: max-height .5s ease; }
.ssq-theme .prose--collapsible.is-open { max-height: 6000px; }
.ssq-theme .prose--collapsible:not(.is-open)::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 130px; background: linear-gradient(180deg, transparent, #fff); pointer-events: none; }
.ssq-theme .prose__more { text-align: center; margin-top: 18px; }
.ssq-theme .prose__more.is-hidden { display: none; }
.ssq-theme .prose__more-btn { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid var(--line); color: var(--brand); font-weight: 700; font-family: var(--sans); font-size: .95rem; padding: 11px 22px; border-radius: 999px; cursor: pointer; transition: border-color .15s, box-shadow .15s; }
.ssq-theme .prose__more-btn:hover { border-color: var(--brand); box-shadow: 0 8px 22px -12px rgba(124,58,237,.5); }
.ssq-theme .prose__more-btn .icon { width: 16px; height: 16px; transform: rotate(90deg); }

/* ── Inner-page light hero: solid violet go-arrow button ── */
.ssq-theme .page-hero--light .ai,
.ssq-theme .page-hero--light .ai.ai--embed { background: #fff !important; }
.ssq-theme .page-hero--light .aentry,
.ssq-theme .page-hero--light .aentry__greet,
.ssq-theme .page-hero--light .aentry__row { background: #fff !important; }
.ssq-theme .page-hero--light .aentry__go {
  flex: none; width: 52px; height: 52px; min-width: 0; padding: 0; border-radius: 14px;
  background: linear-gradient(135deg, #7c3aed, #6d28d9); border: none;
  box-shadow: 0 12px 26px -10px rgba(124,58,237,.6); color: #fff;
  transition: transform .12s, box-shadow .15s, background .15s;
}
.ssq-theme .page-hero--light .aentry__go:hover { background: linear-gradient(135deg, #6d28d9, #5b21b6); transform: translateY(-1px); box-shadow: 0 16px 30px -10px rgba(124,58,237,.7); }
.ssq-theme .page-hero--light .aentry__go:active { transform: scale(.95); }
.ssq-theme .page-hero--light .aentry__go span { display: none; }
.ssq-theme .page-hero--light .aentry__go .icon { display: none; }
.ssq-theme .page-hero--light .aentry__go::before {
  content: ""; width: 20px; height: 20px; background: #fff;
  -webkit-mask: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E");
  mask: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E");
}
@media (max-width: 560px) {
  .ssq-theme .page-hero--light .aentry__row { flex-direction: row; }
  .ssq-theme .page-hero--light .aentry__go { width: 52px; }
}

/* ── Secondary hero: title + lead + phone + reassurances (designed, below the widget hero) ── */
.ssq-theme .subhero { padding: clamp(30px,4vw,48px) 0; background: linear-gradient(180deg, #faf8ff, #fff); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ssq-theme .subhero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px,4vw,56px); align-items: center; }
.ssq-theme .subhero__title { font-family: var(--display); font-weight: 800; font-size: clamp(1.8rem,3.4vw,2.5rem); line-height: 1.1; letter-spacing: -.02em; color: var(--tx); margin: 0 0 14px; }
.ssq-theme .subhero__lead { font-size: clamp(1.02rem,1.5vw,1.15rem); line-height: 1.6; color: var(--ink2); margin: 0; }
.ssq-theme .subhero__call { margin: 22px 0 0; font-size: .95rem; color: var(--mut); display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.ssq-theme .subhero__call a { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.02rem; color: var(--brand); text-decoration: none; padding: 11px 20px; border: 1.5px solid rgba(124,58,237,.3); border-radius: 999px; transition: border-color .15s, background .15s, box-shadow .15s; }
.ssq-theme .subhero__call a:hover { background: var(--brandsoft); border-color: var(--brand); box-shadow: 0 10px 26px -12px rgba(124,58,237,.5); }
.ssq-theme .subhero__call a .icon { width: 16px; height: 16px; color: var(--ok); }
.ssq-theme .subhero__points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.ssq-theme .subhero__points li { display: flex; gap: 13px; align-items: flex-start; padding: 16px 18px; background: #fff; border: 1px solid #ece6fb; border-radius: 16px; box-shadow: 0 10px 30px -22px rgba(60,28,120,.45); }
.ssq-theme .subhero__ic { flex: none; width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(21,168,107,.1)); border: 1px solid rgba(124,58,237,.2); display: grid; place-items: center; color: var(--brand); }
.ssq-theme .subhero__ic .icon { width: 20px; height: 20px; }
.ssq-theme .subhero__points strong { display: block; font-family: var(--display); font-weight: 800; font-size: .98rem; color: var(--tx); margin-bottom: 3px; }
.ssq-theme .subhero__points span { display: block; font-size: .86rem; color: var(--ink2); line-height: 1.45; }
@media (max-width: 860px) { .ssq-theme .subhero__grid { grid-template-columns: 1fr; gap: 28px; } }
/* prose width: comfortable reading inside the 1120 container */
.ssq-theme .prose { max-width: 760px; }

/* ════════════════════════════════════════════════════════════════
   v2.9.0 — Inner pages mirror the homepage hero. Standalone AI block
   on top, homepage-style hero below. Single unified "Get a free quote
   & book online" CTA (60′ badge) for header, hero rows and float.
   Custom Additional-CSS wired in here (schematics backgrounds + tweaks).
   ════════════════════════════════════════════════════════════════ */

/* ── Standalone AI estimator block (above the inner hero) ── */
.ssq-theme .ai-block { padding: clamp(26px,4vw,46px) 0 clamp(10px,2vw,18px); background: linear-gradient(180deg, var(--brandsoft), transparent); }
.ssq-theme .ai-block .crumb { margin: 0 auto 18px; }
.ssq-theme .crumb--center { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.ssq-theme .ai-block .hero-estimator { margin: 0 auto; }

/* ── Inner hero: reuse the homepage .hero look ── */
.ssq-theme .hero--inner { padding-top: clamp(8px,2vw,18px); }
.ssq-theme .hero--inner .crumb { justify-content: center; margin: 0 auto 16px; }
.ssq-theme .hero--inner .hero__title { max-width: 22ch; }
.ssq-theme .hero--hub { padding-top: clamp(26px,4vw,48px); }
/* The old subhero block is retired on landing pages; keep class harmless if cached */
.ssq-theme .subhero { display: none; }
/* page-hero (static Services/Areas/Contact/single) gains the star eyebrow row */
.ssq-theme .page-hero__eyebrow { margin-bottom: 16px; }
.ssq-theme .page-hero__stars { color: var(--star) !important; letter-spacing: 1px; font-size: 1.15rem; }
.ssq-theme .page-hero { text-align: center; }
.ssq-theme .page-hero .crumb { justify-content: center; }
.ssq-theme .page-hero .section-lead { margin-left: auto; margin-right: auto; }

/* ── Unified quote CTA + 60′ badge ── */
.ssq-theme .quoteCta { position: relative; overflow: visible; }
.ssq-theme .quoteCta__badge {
  position: absolute; top: -9px; right: -9px;
  min-width: 30px; height: 30px; padding: 0 6px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--star); color: #1a1205;
  font-family: var(--display); font-weight: 800; font-size: .72rem; line-height: 1;
  letter-spacing: -.02em;
  box-shadow: 0 6px 14px -4px rgba(245,166,35,.7), 0 0 0 3px rgba(255,255,255,.9);
  pointer-events: none;
}
.ssq-theme .quoteCta--onDark .quoteCta__badge { box-shadow: 0 6px 14px -4px rgba(245,166,35,.7), 0 0 0 3px rgba(124,58,237,.55); }
/* Header CTA: show full label on desktop, compact on small screens */
.ssq-theme .quoteCta--header { white-space: nowrap; }
@media (max-width: 1040px) {
  .ssq-theme .quoteCta--header .navBookTxt { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .ssq-theme .quoteCta--header { padding: 0 14px; }
}

/* ── Single floating CTA (replaces quote+book+call cluster) ── */
.ssq-theme .floatCTA { flex-direction: row; }
.ssq-theme .floatCTA__main {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--sans); font-weight: 800; font-size: 1rem;
  border: none; border-radius: 999px; padding: 14px 22px; cursor: pointer;
  background: var(--brand); color: #fff;
  box-shadow: 0 16px 38px -12px rgba(124,58,237,.75);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.ssq-theme .floatCTA__main:hover { background: var(--brand2); transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(124,58,237,.8); }
.ssq-theme .floatCTA__main .floatCTA__ic { display: inline-grid; place-items: center; }
.ssq-theme .floatCTA__main .floatCTA__ic .icon { width: 20px; height: 20px; }
.ssq-theme .floatCTA__tx { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.ssq-theme .floatCTA__tx small { font-size: .72rem; font-weight: 600; opacity: .9; }
@media (max-width: 520px) {
  .ssq-theme .floatCTA { left: 16px; right: 16px; bottom: 16px; }
  .ssq-theme .floatCTA__main { width: 100%; justify-content: center; }
}

/* ════════ Additional CSS (was in Customizer) — wired in, scoped ════════ */
@media (min-width: 900px) {
  .ssq-theme .site-nav { display: contents !important; }
  .ssq-theme .btn--full { width: 60% !important; }
  .ssq-theme .ai { text-align: unset; }
}
.ssq-theme .ai { text-align: center !important; }
.ssq-theme .section { padding-top: 40px; }
.ssq-theme .ai__eyebrow { font-size: 1.5rem; font-weight: 900; color: green; }
.ssq-theme .hero__eyebrow { gap: 0 10px; border: none; padding: 0; box-shadow: none; margin-bottom: 0; }
.ssq-theme .site-footer__main { gap: 5px; }
.ssq-theme .floatCTA button { border-radius: 999px !important; }
.ssq-theme .site-nav__list a { font-weight: normal; }
.ssq-theme .hero-estimator { max-width: unset; }
.ssq-theme a.card { background: rgba(124, 58, 237, 0.06); }
.ssq-theme .eyebrow::before { display: none; }
.ssq-theme .hero__cta-row { margin-top: 20px; }
.ssq-theme .hero { padding-bottom: 20px; }
@media (max-width: 768px) {
  .ssq-theme .hero__desc { line-height: 1.4rem; }
  .ssq-theme .hero__trust { gap: 0; }
  .ssq-theme .card h3 { line-height: 1.3rem; }
  .ssq-theme .final__title { line-height: 2.2rem; }
}
.ssq-theme .inner-estimator { background: none !important; box-shadow: none !important; padding: 0 !important; }
.ssq-theme .aentry__hi strong { text-align: left; }
.ssq-theme .hero-estimator.inner-estimator { max-width: unset !important; }
.ssq-theme .aentry__greeting { font-style: italic; text-align: left; }
.ssq-theme .aentry { background: var(--star); }
.ssq-theme .aentry__av { background: var(--brand); color: #fff !important; }
.ssq-theme .aentry__online { background: #fff; }

/* Schematics background on the hero (subtle blueprint pattern) */
.ssq-theme .hero { position: relative; background-color: #ffffff; }
.ssq-theme .hero::before {
  content: ""; position: absolute; inset: 0;
  opacity: 0.3; z-index: 0; pointer-events: none;
  background-image: url('/wp-content/uploads/2026/06/schematics-pattern.png');
  background-image: -webkit-image-set(
    url('/wp-content/uploads/2026/06/schematics-pattern.webp') type('image/webp'),
    url('/wp-content/uploads/2026/06/schematics-pattern.png') type('image/png'));
  background-image: image-set(
    url('/wp-content/uploads/2026/06/schematics-pattern.webp') type('image/webp'),
    url('/wp-content/uploads/2026/06/schematics-pattern.png') type('image/png'));
  background-repeat: no-repeat; background-position: center center;
  background-size: cover; background-attachment: fixed;
}
.ssq-theme .hero__in { position: relative; z-index: 1; }
.ssq-theme section.hero .hero__in { position: relative !important; z-index: 10 !important; }

/* Schematics background on the homepage "faults" section */
.ssq-theme .faults { position: relative; background-color: #ffffff; }
.ssq-theme .faults::before {
  content: ""; position: absolute; inset: 0;
  opacity: 0.5; z-index: 0; pointer-events: none;
  background-image: url('/wp-content/uploads/2026/06/schematics-pattern3.png');
  background-image: -webkit-image-set(
    url('/wp-content/uploads/2026/06/schematics-pattern3.webp') type('image/webp'),
    url('/wp-content/uploads/2026/06/schematics-pattern3.png') type('image/png'));
  background-image: image-set(
    url('/wp-content/uploads/2026/06/schematics-pattern3.webp') type('image/webp'),
    url('/wp-content/uploads/2026/06/schematics-pattern3.png') type('image/png'));
  background-repeat: no-repeat; background-position: center center;
  background-size: cover; background-attachment: fixed;
}
.ssq-theme .faults > div,
.ssq-theme .faults .container { position: relative !important; z-index: 10 !important; }
@media (max-width: 768px) {
  .ssq-theme .hero::before,
  .ssq-theme .faults::before { background-attachment: scroll; }
}
