/*
 * BacklitLetters — Home formal static carrier · style.css
 * stage05 clean reconstruction (rule5.0.48). Home page-type only. (REWRITE v2, option A)
 *
 * Carrier Provenance (CSS), per stage05 section 5.2.1:
 *   starting-state          = clean reconstruction. Visual FORM follows stage03 #11 home page
 *                             (its real, tuned home-module appearance); token VALUES are unified
 *                             to stage03 #10 site-level UI standard (the 24 tokens).
 *   why this shape           = #10 is an abstract UI-standard document (tokens + design principles,
 *                             NO home appearance). #11 carries the real home look. #11 already
 *                             consumes #10 values via a --ui-std-* bridge whose values are IDENTICAL
 *                             to #10's 24 tokens; this rewrite renames --ui-std-* / drifted vars to
 *                             #10's canonical token names (value-preserving), per section 5.9.
 *   layout values            = taken from #11's effective computed styles (browser-resolved), so the
 *                             carrier matches the #11 home rendering (hero photo + centered, banner
 *                             gradients, compare 3-col stretch, stats, workflow, footer, etc.).
 *   discard-list (non-empty) = the ENTIRE master #11 style.css (3834 lines) is NOT transplinted; its
 *                             other-page-type rules (.quotepage / .applicationpage / .gallerypage /
 *                             .itemspage / .page-* families) are dropped; only home form is rebuilt.
 *   token discipline (sec 9) = color / shadow / radius / content-width consume var(--token).
 *                             font-size / spacing follow #11's effective scale (concrete values, as
 *                             #10/#11 themselves write them; #10 does not tokenize these).
 *   third-party boundary     = Bootstrap 5 utility classes + Quform (quform-*) are not authored as a
 *                             design system; section 2 bridges --bs-* to tokens; section 5 gives Quform
 *                             a minimal token-driven skin.
 *   sections                 = sec1 tokens, sec2 BS5 bridge + base, sec3 utilities, sec4 states,
 *                             sec5 shared- modules, sec6 home- modules. dead-selector target = 0.
 */

/* ============================================================
 * BEGIN section 1 — Design Token Manifest (verbatim from stage03 #10 :root, 24 tokens)
 * ============================================================ */
:root{
  --bg:#ffffff;
  --surface:#f6f8fb;
  --surface-2:#eef2f6;
  --text:#1f2937;
  --muted:#5f6b7a;
  --heading:#102b46;
  --line:#d7e0ea;
  --line-soft:#e7edf3;
  --primary:#102b46;
  --primary-2:#0b1f34;
  --primary-3:#1c3b57;
  --accent:#c62839;
  --accent-2:#a61e2d;
  --success:#178b59;
  --warning:#c98a1a;
  --error:#c62839;
  --deep-band:#081422;
  --shadow:0 18px 42px rgba(16,43,70,.12);
  --shadow-soft:0 10px 24px rgba(16,43,70,.08);
  --shadow-deep:0 22px 56px rgba(11,31,52,.18);
  --radius:24px;
  --radius-sm:16px;
  --radius-pill:999px;
  --content-max:1220px;
  --content-text-max:1080px;
  --dropdown-shadow:0 20px 48px rgba(14,32,57,.16);
  --page-soft:#f3f7fb;
}
/* END section 1 */

/* ============================================================
 * BEGIN section 2 — Bootstrap 5 variable bridge + global base + base components
 * ============================================================ */
:root{
  --bs-primary:var(--primary);
  --bs-primary-rgb:16,43,70;
  --bs-link-color:var(--primary);
  --bs-link-color-rgb:16,43,70;
  --bs-link-hover-color:var(--accent);
  --bs-body-color:var(--text);
  --bs-body-bg:var(--bg);
  --bs-border-color:var(--line);
  --bs-emphasis-color:var(--heading);
  --bs-font-sans-serif:Poppins,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  --bs-body-font-family:var(--bs-font-sans-serif);
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Poppins,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  font-size:17px;
  line-height:1.65;
}
a{text-decoration:none;color:inherit;}
img{max-width:100%;display:block;}
ul,ol{margin:0;padding:0;}
h1,h2,h3,h4{margin:0;color:var(--heading);line-height:1.12;letter-spacing:-.02em;}
h1{font-size:56px;font-weight:700;}
h2{font-size:46px;font-weight:700;}
h3{font-size:32px;font-weight:600;}
h4{font-size:24px;font-weight:600;}
p{margin:0 0 16px;}

.container,
.container-fluid{width:100%;margin-right:auto;margin-left:auto;padding-right:24px;padding-left:24px;}
.container{max-width:var(--content-max);}

/* .btn family (BS5 base + token brand skin; #10 button conventions) */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  min-height:54px;padding:14px 28px;border-radius:var(--radius-pill);
  font-weight:600;font-size:17px;line-height:1.2;border:2px solid transparent;
  transition:.2s ease;cursor:pointer;
}
.btn-primary{
  background:linear-gradient(90deg,var(--accent-2),var(--accent));
  border-color:transparent;color:#fff;box-shadow:0 14px 30px rgba(198,40,57,.18);
}
.btn-primary:hover,.btn-primary:focus-visible{background:linear-gradient(90deg,#951927,#b51f2f);color:#fff;}
.btn-primary:active{background:#8f1826;color:#fff;transform:translateY(1px);box-shadow:none;}
.btn-secondary{background:#fff;border-color:var(--primary);color:var(--primary);}
.btn-secondary:hover{background:var(--primary);color:#fff;}
.btn-outline-primary{background:#fff;border-width:2px;border-color:var(--primary);color:var(--primary);}
.btn-outline-primary:hover{background:var(--primary);color:#fff;}
.btn-xl{min-height:60px;padding:16px 30px;font-size:18px;}
/* END section 2 */

/* ============================================================
 * BEGIN section 3 — utilities (project utilities not covered by BS5)
 * ============================================================ */
.section-pad{padding-top:76px;padding-bottom:76px;}
.section-pad-tight{padding-top:76px;padding-bottom:76px;}
.home-rhythm-76{margin-top:0;}
.home-rhythm-tight-76{margin-top:0;}

/* section-head: centered heading block (per #11) */
.section-head{max-width:980px;margin:0 auto 56px;text-align:center;}
.section-head h2{font-size:48px;font-weight:700;margin-bottom:24px;color:var(--heading);}
.section-head p{font-size:20px;color:var(--muted);max-width:760px;margin:0 auto;}
.section-head--compact{margin-bottom:28px;}
.section-head--tight{margin-bottom:44px;}
.section-head__line{
  width:92px;height:3px;border-radius:var(--radius-pill);
  background:linear-gradient(90deg,var(--accent-2),var(--accent));
  margin:0 auto 22px;
}

/* section-rich-content: long-form article body (info-form-split left) */
.section-rich-content h2{font-size:40px;margin-top:40px;margin-bottom:8px;color:var(--heading);}
.section-rich-content h2:first-child{margin-top:0;}
.section-rich-content h3{font-size:24px;margin-top:26px;margin-bottom:12px;color:var(--heading);}
.section-rich-content p{color:var(--text);margin:0 0 16px;}
.section-rich-content ul{margin:0 0 18px;padding-left:22px;color:var(--text);}
.section-rich-content li{margin-bottom:8px;}
.section-rich-content a{color:var(--primary);font-weight:600;border-bottom:1px solid rgba(16,43,70,.28);}
.section-rich-content a:hover{color:var(--accent);border-color:rgba(198,40,57,.46);}
.model-article{margin:24px 0;}
.model-article h3{margin-bottom:12px;}
.model-article h3 a{color:var(--primary);}
.model-article__media{margin:0 0 14px;}
.model-article__image{width:100%;height:auto;border-radius:var(--radius-sm);display:block;}
/* END section 3 */

/* ============================================================
 * BEGIN section 4 — is- / has- state classes (JS-driven runtime states)
 * ============================================================ */
.is-hidden{display:none !important;}
.shared-header.is-scrolled{background:rgba(16,43,70,.98);border-bottom:1px solid rgba(255,255,255,.10);box-shadow:0 12px 34px rgba(11,24,43,.18);}
.shared-header.is-scrolled .shared-header__divider{opacity:0;}
/* when the mobile menu is open, the header turns solid navy (matches the nav panel) so the top is clean, not see-through */
.shared-header.menu-open{background:#05122a;border-bottom:0;box-shadow:none;}
.shared-header.menu-open .shared-header__divider{opacity:0;}
.shared-contact-float.is-open .shared-contact-float__panel{transform:none;opacity:1;visibility:visible;}
.shared-contact-float.is-open .shared-contact-float__overlay{opacity:1;visibility:visible;}
.shared-contact-float__success.is-visible{display:block;}
.menu-item-has-children.is-open>.menu-item__trigger .submenu-toggle__icon--down{display:none;}
.menu-item-has-children.is-open>.menu-item__trigger .submenu-toggle__icon--up{display:inline-block;}
/* END section 4 */

/* ============================================================
 * BEGIN section 5 — shared- modules
 * ============================================================ */

/* 5.1 shared-header (transparent over hero; turns solid on scroll; multi-level nav) */
.shared-header{
  position:fixed;top:0;left:0;right:0;z-index:1030;
  background:transparent;border-bottom:0;box-shadow:none;
  transition:background .28s ease,border-color .28s ease,box-shadow .28s ease;
}
.shared-header__inner{
  width:min(calc(100% - 40px),1220px);margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;gap:30px;
  padding:18px 0 16px;
}
.shared-header__brand{display:inline-flex;align-items:center;gap:0;color:#fff;}
.shared-header__brand-logo{height:34px;width:auto;display:block;filter:drop-shadow(0 6px 16px rgba(7,18,33,.28));}
.shared-header__divider{height:1px;background:rgba(255,255,255,.12);transition:background .28s ease,opacity .28s ease;}
.shared-header__toggle{
  display:none;align-items:center;justify-content:center;width:auto;height:auto;border-radius:0;
  border:0;background:transparent;color:#fff;font-size:22px;cursor:pointer;padding:6px;
}
/* desktop: override BS5 .collapse so nav shows; mobile re-collapses in section 6R */
.shared-header__nav.collapse:not(.show){display:block;}
.menu{display:flex;align-items:center;gap:26px;list-style:none;margin:0;padding:0;}
.menu>li{position:relative;}
.menu>li>a,
.menu>li>.menu-item__trigger>a{color:#fff;font-size:16px;font-weight:500;letter-spacing:.01em;transition:color .2s ease,opacity .2s ease;}
.menu-item__trigger{display:flex;align-items:center;justify-content:space-between;gap:12px;}
.menu-item__trigger>a{display:inline-flex;align-items:center;gap:8px;}
.desktop-caret{font-size:.82em;opacity:.76;}
.desktop-caret--right{font-size:.78em;}
.submenu-toggle{display:none;align-items:center;justify-content:center;width:34px;height:34px;border:0;background:transparent;color:#fff;padding:0;border-radius:var(--radius-pill);cursor:pointer;}
.submenu-toggle__icon--up{display:none;}
.menu-cta{
  padding:12px 20px;border-radius:var(--radius-pill);
  background:linear-gradient(90deg,var(--accent-2),var(--accent));
  font-weight:600;color:#fff !important;
}
.menu-cta:hover,.menu-cta:focus-visible{background:linear-gradient(90deg,#951927,#b51f2f);color:#fff !important;}
/* sub-menu (desktop hover dropdown card; per #11) */
.sub-menu{
  list-style:none;padding:12px;min-width:220px;border-radius:22px;
  background:linear-gradient(180deg,#0b1f34 0%,#102b46 56%,#1c3b57 100%);
  border:1px solid rgba(255,255,255,.12);
  position:absolute;top:100%;left:0;opacity:0;visibility:hidden;transform:translateY(10px);
  box-shadow:var(--dropdown-shadow);transition:.25s ease;z-index:20;
}
.menu-item-has-children:hover>.sub-menu{opacity:1;visibility:visible;transform:translateY(0);}
.sub-menu .menu-item{position:relative;}
.sub-menu .menu-item__trigger>a{flex:1 1 auto;}
.sub-menu .menu-item>a,
.sub-menu .menu-item__trigger>a{display:block;padding:12px 14px;border-radius:12px;color:#fff;font-weight:500;}
.sub-menu .menu-item>a:hover,
.sub-menu .menu-item__trigger:hover>a{background:rgba(255,255,255,.12);color:#fff;}
/* nested (third-level) sub-menu flies out to the right on hover (lighter navy per UI standard) */
.sub-menu .sub-menu{top:0;left:100%;margin-left:12px;background:linear-gradient(180deg,#15334e 0%,#224c6c 100%);border-radius:20px;}
.sub-menu .menu-item-has-children:hover>.sub-menu{opacity:1;visibility:visible;transform:translateY(0);}
/* inside the dropdown the toggle is hidden on desktop (hover drives it); right-caret hints nesting */
.sub-menu .submenu-toggle{display:none;}
.sub-menu .desktop-caret--right{margin-left:auto;}

/* 5.2 shared-cta-banner (Bridge A + About Us; deep blue gradient band, centered copy) */
.shared-cta-banner{
  position:relative;overflow:hidden;color:#fff;
  background:linear-gradient(115deg,rgba(64,96,129,.95) 0%,rgba(30,57,84,.96) 42%,rgba(11,28,47,.98) 100%);
}
.shared-cta-banner__inner{max-width:var(--content-max);margin:0 auto;display:flex;flex-direction:column;align-items:center;}
.shared-cta-banner .section-head h2,
.shared-cta-banner .section-head p,
.shared-cta-banner__text p{color:#fff;}
.shared-cta-banner__text{max-width:var(--content-text-max);margin:0 auto 32px;text-align:left;}
.shared-cta-banner__text p{color:rgba(255,255,255,.92);}

/* 5.3 shared-split-cta-banner (Bridge B/C; lighter blue gradient, split box with side action) */
.shared-split-cta-banner{
  background:linear-gradient(115deg,rgba(82,117,152,.88) 0%,rgba(42,73,104,.94) 40%,rgba(13,31,51,.98) 100%);
}
.shared-split-cta-banner__box{
  max-width:var(--content-max);margin:0 auto;
  display:grid;grid-template-columns:1.4fr .6fr;gap:48px;align-items:center;
  padding:54px 40px;color:#fff;
}
.shared-split-cta-banner__box h2,
.shared-split-cta-banner__text p{color:#fff;}
.shared-split-cta-banner__text p{color:rgba(255,255,255,.9);}
.shared-split-cta-banner__action{text-align:center;background:rgba(255,255,255,.08);border:1px solid rgba(232,239,255,.26);padding:32px;border-radius:28px;backdrop-filter:blur(6px);box-shadow:0 14px 36px rgba(7,19,47,.18);}
.shared-split-cta-banner__action p{color:#fff;font-weight:600;margin:0 0 20px;}
.shared-split-cta-banner__secondary-btn{white-space:normal;line-height:1.2;}

/* 5.4 shared-models-tabs (BS5 tabs; chip-style nav; panel top-to-bottom reading flow) */
.shared-models-tabs .models-tabs-nav{display:flex;flex-wrap:wrap;justify-content:center;gap:16px;margin-bottom:34px;border:0;}
.shared-models-tabs .models-tabs-nav .nav-item{flex:1 1 320px;max-width:420px;min-width:0;}
.shared-models-tabs .models-tabs-nav .nav-link{
  width:100%;min-height:48px;display:flex;align-items:center;justify-content:center;text-align:center;
  border:1px solid rgba(16,43,70,.26);border-radius:var(--radius-pill);padding:0 24px;
  font-size:16px;font-weight:500;line-height:1.2;color:var(--primary);background:rgba(16,43,70,.08);
  transition:.2s ease;
}
.shared-models-tabs .models-tabs-nav .nav-link.active,
.shared-models-tabs .models-tabs-nav .nav-link[aria-selected="true"]{
  background:linear-gradient(90deg,var(--primary-2),var(--primary));border-color:transparent;color:#fff;
}
.models-tab-panel{
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);padding:28px;
}
.models-tab-panel>img{width:100%;height:auto;border-radius:20px;margin-bottom:28px;display:block;}
.models-tab-content h3{margin-bottom:10px;}
.models-tab-label{font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);font-weight:600;margin-bottom:6px;}
.models-tab-content ul{padding-left:22px;color:var(--text);}
.models-tab-content li{margin-bottom:6px;}
.models-tab-panel__secondary{margin-top:16px;}

/* 5.5 shared-models-compare — reproduces stage03 #11 home compare FORM (geometry / typography
 * verbatim from #11's live .shared-models-compare layer); COLOR conforms to #10 tokens.
 * §40 deliberate deviations: (a) §Resolution color — featured card deep-navy fill + inverted
 *   white content, "Most Recommended" ribbon RED, featured CTA RED (all geometry stays #11);
 * (b) the per-fact tooltip is a BS5 popover (skinned in the .compare-popover block below). */
.shared-models-compare .container{max-width:1320px;}
.compare-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:28px;align-items:stretch;padding-top:34px;}
.compare-column{display:flex;flex-direction:column;}
.compare-card{
  margin:0;padding:0;position:relative;display:flex;flex-direction:column;height:100%;overflow:visible;
  background:#fff;border:1px solid var(--line);border-radius:28px;box-shadow:0 18px 48px rgba(21,41,88,.08);
}
/* §Resolution: featured = deep-navy fill + inverted content; top corners square so the ribbon meets the card */
.compare-card--featured{
  background:var(--primary);border:2px solid var(--primary);
  border-top-left-radius:0;border-top-right-radius:0;box-shadow:0 22px 56px rgba(16,43,70,.12);
}
.compare-card--featured::after{
  content:"";position:absolute;left:24px;right:24px;bottom:-24px;height:96px;border-radius:999px;
  background:radial-gradient(circle at center,rgba(16,43,70,.18) 0%,rgba(16,43,70,0) 74%);
  filter:blur(18px);opacity:.78;pointer-events:none;z-index:-1;
}
/* §40 C1 ribbon: lift above card with flush top corners; §Resolution makes the fill RED */
.compare-card__recommend{
  position:absolute;left:-2px;right:-2px;top:-50px;min-height:50px;padding:0 20px;
  display:flex;align-items:center;justify-content:center;border-radius:28px 28px 0 0;
  font-size:17px;line-height:1.2;font-weight:700;letter-spacing:.03em;text-transform:uppercase;text-align:center;
  color:#fff;background:var(--accent);
}
.compare-card__recommend--empty{display:none;}
.compare-card__body{display:flex;flex-direction:column;min-width:0;padding:28px 26px 26px;}
.compare-card h3{
  display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;
  align-items:flex-start;justify-content:center;text-align:center;min-height:60px;margin:0 0 16px;
  font-size:clamp(32px,2.2vw,40px);line-height:1.08;font-weight:700;letter-spacing:-.02em;color:var(--heading);
}
.compare-card--featured h3{color:#fff;min-height:0;margin-bottom:18px;}
.compare-card__media{
  display:block;width:100%;margin:0 0 20px;
  border-radius:22px;overflow:hidden;background:var(--surface-2);
}
.compare-card__media img{display:block;width:100%;height:auto;max-width:100%;border-radius:20px;}
.compare-card__summary{min-height:120px;margin:0 0 20px;font-size:17px;line-height:1.78;font-weight:400;color:var(--muted);}
.compare-card--featured .compare-card__summary{color:rgba(255,255,255,.86);}
/* §40 C/R1 CTA: geometry from #11; side cards = navy outline, featured = RED fill (only the colour swaps) */
.compare-card__cta{
  display:inline-flex;align-items:center;justify-content:center;width:100%;min-height:52px;
  margin:0 0 24px;padding:14px 22px;border:1px solid var(--primary);border-radius:var(--radius-pill);
  background:#fff;color:var(--primary);font-size:18px;line-height:1.2;font-weight:500;box-shadow:none;
}
.compare-card__cta:hover,.compare-card__cta:focus-visible{background:var(--primary);border-color:var(--primary);color:#fff;}
.compare-card__cta:active{background:var(--primary-3);border-color:var(--primary-3);color:#fff;}
.compare-card__cta--featured{background:var(--accent);border-color:var(--accent);color:#fff;}
.compare-card__cta--featured:hover,.compare-card__cta--featured:focus-visible{background:var(--accent-2);border-color:var(--accent-2);color:#fff;}
.compare-facts{margin:0;border-top:1px solid var(--line-soft);}
.compare-card--featured .compare-facts{border-top-color:rgba(255,255,255,.20);}
.compare-fact-row{display:grid;grid-template-columns:118px minmax(0,1fr);gap:18px;align-items:start;min-height:94px;padding:16px 0;border-bottom:1px solid var(--line-soft);}
.compare-card--featured .compare-fact-row{border-bottom-color:rgba(255,255,255,.20);}
.compare-fact-row dt,.compare-fact-row dd{margin:0;text-align:left;}
.compare-fact-row dt{font-size:16px;line-height:1.5;font-weight:700;color:var(--heading);}
.compare-fact-row dd{font-size:16px;line-height:1.7;color:var(--text);}
.compare-card--featured .compare-fact-row dt,.compare-card--featured .compare-card__detail-title{color:#fff;}
.compare-card--featured .compare-fact-row dd,.compare-card--featured .compare-detail-list li{color:rgba(255,255,255,.84);}
.compare-tip-trigger{
  display:inline-flex;align-items:center;gap:6px;margin-left:6px;padding:0;border:0;background:none;cursor:pointer;
  color:var(--primary);font-size:.95em;line-height:1.5;font-weight:500;
  text-decoration:underline dotted rgba(16,43,70,.32);text-underline-offset:4px;
}
.compare-tip-trigger:hover,.compare-tip-trigger:focus-visible{color:var(--primary-3);text-decoration-color:rgba(16,43,70,.42);outline:none;}
.compare-card--featured .compare-tip-trigger{color:#fff;text-decoration-color:rgba(255,255,255,.5);}
.compare-card--featured .compare-tip-trigger:hover,.compare-card--featured .compare-tip-trigger:focus-visible{color:#fff;text-decoration-color:rgba(255,255,255,.78);}
.compare-card__detail-title{margin:22px 0 14px;font-size:20px;line-height:1.4;font-weight:700;color:var(--heading);}
.compare-detail-list{margin:0;padding:0;list-style:none;}
.compare-detail-list li{display:flex;align-items:flex-start;gap:12px;margin:0 0 14px;font-size:16px;line-height:1.7;color:var(--text);}
.compare-detail-list i{margin-top:6px;color:var(--success);}

/* compare popover (BS5 Popover, customClass compare-popover; #10 dark bubble look) */
.compare-popover.popover{
  --bs-popover-bg:var(--primary-2);
  --bs-popover-border-color:rgba(255,255,255,.12);
  --bs-popover-max-width:280px;
  --bs-popover-body-color:#fff;
  --bs-popover-body-padding-x:16px;
  --bs-popover-body-padding-y:14px;
  box-shadow:var(--shadow-deep);border-radius:var(--radius-sm);
}
.compare-popover.popover .popover-arrow::after{border-bottom-color:var(--primary-2);border-top-color:var(--primary-2);}

/* 5.6 shared-stats-banner (deep blue diagonal gradient band) */
.shared-stats-banner{
  position:relative;overflow:hidden;color:#fff;
  background:linear-gradient(115deg,rgba(46,82,115,.95) 0%,rgba(22,47,72,.97) 38%,rgba(8,23,39,.99) 100%);
}
.stats-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:24px;text-align:center;align-items:start;}
.stats-grid>div{padding:8px 18px;}
.stats-grid strong{font-size:58px;font-weight:700;color:#fff;line-height:1;display:block;margin-bottom:6px;}
.stats-grid span{color:rgba(236,243,255,.92);font-size:17px;}

/* 5.7 shared-workflow (8-step accordion; #11 lays the list VERTICALLY: flex column, one per row) */
.workflow-list{list-style:none;margin:0;padding:0;counter-reset:wf;display:flex;flex-direction:column;flex-wrap:nowrap;gap:18px;}
.workflow-list>li{counter-increment:wf;}
.workflow-step__surface{background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:0 14px 38px rgba(12,28,56,.06);overflow:hidden;transition:border-color .2s ease,box-shadow .2s ease,background-color .2s ease;}
.workflow-step__surface:hover{border-color:rgba(16,43,70,.18);box-shadow:0 18px 42px rgba(12,28,56,.08);}
/* C5 (operator-confirmed): expanded step gets the #11 light-blue page-soft fill, matching the FAQ open state */
.workflow-step__surface:has(.workflow-step__trigger[aria-expanded="true"]){border-color:#cfe0f5;background:var(--page-soft);box-shadow:0 12px 30px rgba(20,34,63,.05);}
.workflow-step__intro{padding:8px 24px 20px;}
.workflow-step__eyebrow::before{content:"Step " counter(wf);font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--accent);}
.workflow-step__heading{margin:0;}
.workflow-step__trigger{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;
  background:none;border:0;padding:16px 0 0;cursor:pointer;text-align:left;color:var(--heading);
}
.workflow-step__title-group{display:flex;align-items:center;gap:14px;}
.workflow-step__icon{width:46px;height:46px;border-radius:50%;display:grid;place-items:center;background:rgba(16,43,70,.08);color:var(--primary);font-size:18px;flex:none;}
.workflow-step__title{font-size:20px;font-weight:600;color:var(--heading);}
.workflow-step__toggle{display:grid;place-items:center;width:52px;height:52px;flex:0 0 52px;border-radius:50%;border:1px solid var(--line);background:var(--surface);color:var(--primary);transition:background .2s ease,border-color .2s ease,color .2s ease,transform .2s ease;}
.workflow-step__toggle::before{content:"+";font-size:28px;font-weight:500;line-height:1;}
.workflow-step__trigger:hover .workflow-step__toggle,
.workflow-step__trigger:focus-visible .workflow-step__toggle{background:rgba(16,43,70,.08);border-color:rgba(16,43,70,.2);}
.workflow-step__trigger[aria-expanded="true"] .workflow-step__toggle{background:var(--primary);border-color:var(--primary);color:#fff;transform:rotate(180deg);}
.workflow-step__trigger[aria-expanded="true"] .workflow-step__toggle::before{content:"\2212";}
.workflow-step__lead,.workflow-step__time{display:flex;gap:10px;margin:14px 0 0;}
.workflow-step__label{flex:none;min-width:74px;font-size:12px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--muted);padding-top:2px;}
.workflow-step__text{color:var(--text);}
.workflow-step__text a{color:var(--primary);font-weight:600;border-bottom:1px solid rgba(16,43,70,.28);}
.workflow-step__text a:hover{color:var(--accent);}
.workflow-step__detail-inner{padding:0 24px 22px;border-top:1px solid var(--line-soft);}
.workflow-step__surface:has(.workflow-step__trigger[aria-expanded="true"]) .workflow-step__detail-inner{border-top-color:rgba(16,43,70,.08);}
.workflow-step__detail-inner p{margin-top:16px;color:var(--text);}
.workflow-step__detail-inner ul{padding-left:22px;color:var(--text);}
.workflow-step__detail-inner li{margin-bottom:8px;}

/* 5.8 shared-why-choose (3-col; 64px round icon; #11 values) */
.shared-why-choose{background:#fff;}
.why-choose-list{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(3,1fr);gap:36px 46px;}
.why-choose-list li{display:grid;grid-template-columns:76px 1fr;gap:18px;align-items:start;}
.why-choose-list li>span{width:64px;height:64px;border-radius:50%;display:grid;place-items:center;background:rgba(16,43,70,.08);color:var(--primary);font-size:24px;}
.why-choose-list h3{font-size:22px;line-height:1.15;margin:0 0 12px;font-weight:700;}
.why-choose-list p{margin:0;color:var(--muted);}

/* 5.9 shared-testimonials (BS5 carousel; #11 puts a deep-navy band on __surface, white text) */
.shared-testimonials{position:relative;padding-top:96px;}
.shared-testimonials__surface{
  background:linear-gradient(180deg,var(--primary-2) 0%,var(--primary) 52%,var(--primary-3) 100%);
  color:#fff;padding:52px 72px 76px;
  border-top:1px solid rgba(232,239,255,.14);border-bottom:1px solid rgba(232,239,255,.12);
}
.shared-testimonials__carousel{position:relative;max-width:1240px;margin:0 auto;padding:0 86px;}
.shared-testimonials__inner{min-height:392px;}
.shared-testimonials .carousel-item{min-height:392px;}
.shared-testimonials__item{max-width:940px;min-height:392px;margin:0 auto;text-align:center;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:6px;}
.shared-testimonials__item img{width:84px;height:84px;border-radius:50%;object-fit:cover;margin:0 auto 20px;border:4px solid rgba(255,255,255,.14);}
.shared-testimonials__item blockquote{margin:0 auto 18px;font-size:22px;line-height:1.82;color:rgba(245,248,255,.96);max-width:960px;}
.shared-testimonials__item strong{color:#fff;font-weight:700;font-size:20px;display:block;margin-bottom:6px;}
.shared-testimonials__item span{color:#d7e6ff;font-size:17px;display:block;}
.shared-testimonials__control{position:absolute;top:50%;transform:translateY(-50%);width:48px;height:48px;border:0;background:none;opacity:.82;color:rgba(255,255,255,.78);}
.shared-testimonials__control:hover,.shared-testimonials__control:focus{opacity:1;color:#fff;}
.shared-testimonials__control i{font-size:32px;}
.carousel-control-prev.shared-testimonials__control{left:12px;}
.carousel-control-next.shared-testimonials__control{right:12px;}

/* 5.10 shared-contact-us (secondary contact entry: map + wide card) */
.shared-contact-us{position:relative;background:linear-gradient(180deg,var(--surface) 0%,#fff 100%);}
.shared-contact-us__map{line-height:0;}
.shared-contact-us__map iframe{width:100%;border:0;display:block;}
.shared-contact-us__card-layer{max-width:var(--content-max);margin:0 auto;padding:0 24px;transform:translateY(-90px);}
.shared-contact-us__card{max-width:900px;margin:0 auto;background:#fff;border:1px solid var(--line);border-radius:32px;padding:48px 48px 44px;box-shadow:var(--shadow);}
/* C9 — UI-conformance to #11 (operator: non-color, so carrier token colours are kept):
   centered card + centered h2 + label-column / value-column rows, eliminating the empty right side. */
.shared-contact-us__card h2{font-size:clamp(40px,4.2vw,48px);font-weight:700;line-height:1.06;margin:0 0 30px;letter-spacing:-.02em;text-align:center;}
.shared-contact-us__details{margin:0;padding:0;display:grid;gap:18px;}
.shared-contact-us__row{display:grid;grid-template-columns:minmax(168px,220px) 1fr;align-items:start;column-gap:18px;}
.shared-contact-us__row dt,.shared-contact-us__row dd{margin:0;font-size:17px;line-height:1.8;letter-spacing:-.01em;}
.shared-contact-us__row dt{display:inline-flex;align-items:center;gap:12px;font-weight:700;color:var(--muted);}
.shared-contact-us__row dt i{flex:0 0 auto;font-size:18px;line-height:1;color:var(--accent);}
.shared-contact-us__row dd{font-weight:500;color:var(--heading);}
.shared-contact-us__actions{margin-top:28px;display:flex;flex-direction:column;align-items:center;gap:18px;}
.shared-contact-us__email-button{
  display:inline-flex;align-items:center;gap:10px;min-height:54px;padding:14px 26px;border-radius:var(--radius-pill);
  font-weight:600;background:linear-gradient(90deg,var(--accent-2),var(--accent));color:#fff;box-shadow:0 14px 30px rgba(198,40,57,.18);
}
.shared-contact-us__email-button:hover{background:linear-gradient(90deg,#951927,#b51f2f);color:#fff;}

/* 5.11 shared-footer-links (deep gradient + subtle red radial; custom 4-col grid) */
.shared-footer-links{
  background:
    radial-gradient(circle at 80% 0%,rgba(198,40,57,.14),rgba(198,40,57,0) 24%),
    linear-gradient(135deg,var(--deep-band) 0%,var(--primary-2) 44%,var(--primary) 100%);
  color:#fff;padding:72px 0 24px;
}
.footer-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:28px;}
.shared-footer-links .footer-col-title{font-size:22px;font-weight:700;line-height:1.12;letter-spacing:-.02em;color:#fff;margin:0 0 16px;}
.shared-footer-links ul{list-style:none;margin:0;padding:0;display:grid;gap:10px;}
.shared-footer-links a{color:rgba(255,255,255,.78);}
.shared-footer-links a:hover{color:#fff;}
.footer-copyright{margin-top:40px;padding-top:24px;border-top:1px solid rgba(255,255,255,.12);font-size:14px;color:rgba(255,255,255,.6);}

/* 5.12 shared-contact-float (custom multi-screen floating widget) */
.shared-contact-float{position:fixed;right:24px;bottom:24px;z-index:1040;}
.shared-contact-float__trigger{
  display:inline-flex;align-items:center;gap:10px;min-height:54px;padding:14px 22px;border-radius:var(--radius-pill);border:0;cursor:pointer;
  background:linear-gradient(90deg,var(--accent-2),var(--accent));color:#fff;box-shadow:var(--shadow-deep);font-weight:600;font-size:16px;
}
.shared-contact-float__trigger-icon{font-size:18px;}
.shared-contact-float__overlay{position:fixed;inset:0;background:rgba(8,20,34,.5);opacity:0;visibility:hidden;transition:.2s ease;z-index:-1;}
.shared-contact-float__panel{
  position:fixed;right:24px;bottom:24px;width:440px;max-height:calc(100vh - 48px);display:flex;flex-direction:column;overflow:hidden;
  background:#fff;border:1px solid var(--line);border-radius:26px;box-shadow:var(--shadow-deep);
  opacity:0;visibility:hidden;transform:translateY(16px);transition:.22s ease;
}
.shared-contact-float__appbar{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:16px 20px;background:linear-gradient(90deg,var(--primary-2),var(--primary));color:#fff;}
.shared-contact-float__appbar-title{font-weight:600;}
.shared-contact-float__icon-btn{width:36px;height:36px;border-radius:50%;border:0;cursor:pointer;background:rgba(255,255,255,.14);color:#fff;}
.shared-contact-float__screen{display:none;flex:1;overflow-y:auto;}
.shared-contact-float[data-state="entry"] .shared-contact-float__screen--entry{display:block;}
.shared-contact-float[data-state="answer"] .shared-contact-float__screen--answer{display:block;}
.shared-contact-float__screen-body{padding:20px;}
.shared-contact-float__intro-card{background:var(--surface);border:1px solid var(--line-soft);border-radius:18px;padding:16px;margin-bottom:16px;}
.shared-contact-float__intro-card h3{font-size:20px;margin-bottom:8px;}
.shared-contact-float__intro-card p{color:var(--muted);margin-bottom:0;font-size:14px;}
/* composer: textarea fixed at one row height so the send button aligns flush with it */
.shared-contact-float__composer{display:flex;gap:10px;align-items:stretch;margin-bottom:18px;}
.shared-contact-float__composer textarea{flex:1;height:54px;min-height:54px;max-height:120px;padding:15px 16px;resize:vertical;border:1px solid var(--line);border-radius:var(--radius-sm);font:inherit;line-height:1.4;color:var(--text);outline:0;}
.shared-contact-float__composer textarea:focus{border-color:var(--primary);box-shadow:0 0 0 4px rgba(16,43,70,.10);}
.shared-contact-float__composer-submit{align-self:stretch;width:54px;flex:none;border-radius:var(--radius-sm);border:0;cursor:pointer;background:linear-gradient(90deg,var(--accent-2),var(--accent));color:#fff;font-size:18px;display:grid;place-items:center;}
.shared-contact-float__instant-title{font-size:12px;letter-spacing:.06em;text-transform:uppercase;color:var(--muted);font-weight:700;margin-bottom:10px;}
.shared-contact-float__faq-list{display:grid;gap:10px;}
/* quick-question buttons: light-blue pill, visually distinct from the white square composer */
.shared-contact-float__faq-btn{padding:13px 18px;border-radius:var(--radius-pill);border:1px solid var(--primary);background:var(--page-soft);text-align:left;color:var(--primary);font-weight:500;line-height:1.35;cursor:pointer;transition:background .2s ease,color .2s ease,border-color .2s ease;}
.shared-contact-float__faq-btn:hover,.shared-contact-float__faq-btn:focus-visible{border-color:var(--primary);background:var(--primary);color:#fff;outline:none;}
.shared-contact-float__answer-card{background:var(--surface);border:1px solid var(--line-soft);border-radius:18px;padding:16px;margin-bottom:16px;}
.shared-contact-float__answer-source{font-size:12px;letter-spacing:.06em;text-transform:uppercase;color:var(--accent);font-weight:700;margin-bottom:6px;}
.shared-contact-float__answer-body p{color:var(--text);font-size:14px;line-height:1.75;margin-bottom:12px;}
.shared-contact-float__answer-body p:last-child{margin-bottom:0;}
.shared-contact-float__answer-body ol,
.shared-contact-float__answer-body ul{margin:8px 0 0;padding-left:22px;color:var(--text);font-size:14px;line-height:1.7;}
.shared-contact-float__answer-body li{margin-bottom:8px;}
.shared-contact-float__answer-body li:last-child{margin-bottom:0;}
.shared-contact-float__answer-invite{margin-top:14px;padding-top:12px;border-top:1px dashed var(--line);font-weight:600;color:var(--heading);line-height:1.6;}
/* float-scoped form: single column, smaller text, tighter padding (composer/answer panel is narrow) */
.shared-contact-float__form-card .quform-row{grid-template-columns:1fr;gap:14px;}
.shared-contact-float__form-card .quform-elements{gap:14px;}
.shared-contact-float__form-card .quform-label,
.shared-contact-float__form-card .quform-label-text{font-size:13px;margin-bottom:5px;}
.shared-contact-float__form-card .quform-input,
.shared-contact-float__form-card .quform-select,
.shared-contact-float__form-card .quform-textarea{min-height:44px;padding:10px 12px;font-size:14px;border-radius:12px;}
.shared-contact-float__form-card .quform-textarea{min-height:84px;}
.shared-contact-float__form-card .quform-captcha-input{min-height:42px;padding:9px 12px;font-size:14px;}
.shared-contact-float__form-card .quform-button{width:100%;min-height:48px;font-size:15px;}
.shared-contact-float__context-note{margin-top:10px;font-size:12px;color:var(--muted);padding-top:10px;border-top:1px dashed var(--line);}
.shared-contact-float__form-card h4{font-size:18px;margin-bottom:8px;}
.shared-contact-float__form-card>p{color:var(--muted);font-size:13px;margin-bottom:14px;}
.shared-contact-float__success{display:none;margin-top:14px;padding:14px 16px;border-radius:var(--radius-sm);background:rgba(23,139,89,.10);border:1px solid rgba(23,139,89,.3);color:var(--success);font-size:14px;}
.shared-contact-float__close-fab{position:absolute;top:14px;right:14px;width:36px;height:36px;border-radius:50%;border:0;cursor:pointer;background:rgba(255,255,255,.14);color:#fff;font-size:16px;}

/* 5.13 Quform minimal skin (third-party boundary; token-driven) */
.quform-form-inner{display:block;}
.quform-elements{display:grid;gap:16px;}
.quform-child-elements{display:grid;gap:16px;}
.quform-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.quform-hidden{display:none;}
.quform-label,.quform-label-text{display:block;font-size:14px;font-weight:600;color:var(--heading);margin-bottom:8px;}
.quform-required{color:var(--accent);}
.quform-field,.quform-input,.quform-select,.quform-textarea{width:100%;min-height:52px;padding:14px 16px;border:1px solid var(--line);border-radius:var(--radius-sm);background:#fff;color:var(--text);font:inherit;outline:0;}
.quform-textarea{min-height:120px;resize:vertical;}
.quform-field:focus,.quform-input:focus,.quform-select:focus,.quform-textarea:focus{border-color:var(--primary);box-shadow:0 0 0 4px rgba(16,43,70,.10);}
.quform-description,.quform-disclaimer,.quform-captcha-note{font-size:13px;color:var(--muted);margin-top:8px;}
.quform-captcha-box{border:1px dashed var(--line);border-radius:var(--radius-sm);padding:14px;background:var(--surface);}
.quform-captcha-input{width:100%;min-height:48px;padding:12px 14px;margin-top:10px;border:1px solid var(--line);border-radius:12px;font:inherit;}
.quform-submit{display:block;margin-top:4px;}
.quform-button{display:inline-flex;align-items:center;justify-content:center;gap:10px;min-height:54px;padding:14px 28px;border-radius:var(--radius-pill);border:0;cursor:pointer;background:linear-gradient(90deg,var(--accent-2),var(--accent));color:#fff;font-weight:600;font-size:16px;}
.quform-button-wrapper{margin-top:4px;}
.quform--compact .quform-field{min-height:48px;}
/* END section 5 */

/* ============================================================
 * BEGIN section 6 — home- modules
 * ============================================================ */

/* 6.1 home-hero (full-viewport photo background + overlay + CENTERED content; per #11) */
.home-hero{
  position:relative;min-height:100vh;display:flex;align-items:center;overflow:hidden;
  padding-top:138px;
  background:url("https://www.backlitletters.com/wp-content/uploads/2020/01/backlit-letters.jpg") center center / cover no-repeat;
}
.home-hero__overlay{
  position:absolute;inset:0;pointer-events:none;
  background:
    linear-gradient(180deg,rgba(8,20,34,.42) 0%,rgba(8,20,34,.54) 24%,rgba(11,31,52,.80) 100%),
    radial-gradient(circle at 80% 0%,rgba(198,40,57,.14),rgba(198,40,57,0) 24%),
    radial-gradient(circle at 18% 18%,rgba(255,255,255,.07),rgba(255,255,255,0) 32%);
}
.home-hero__content{position:relative;z-index:1;max-width:980px;margin:0 auto;text-align:center;color:#fff;padding:112px 0 92px;}
.home-hero__eyebrow{display:block;margin:0 0 18px;color:rgba(255,255,255,.88);font-size:20px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;}
.home-hero h1{margin:0 auto 24px;max-width:960px;color:#fff;font-size:56px;font-weight:700;line-height:.98;text-shadow:0 14px 36px rgba(7,18,33,.22);}
.home-hero p{max-width:860px;margin:0 auto 34px;color:rgba(255,255,255,.9);font-size:20px;line-height:1.75;}
/* hero CTA: per #11 the hero primary button is a solid WHITE pill with deep-navy text */
.home-hero .btn-primary{background:#fff;border:1px solid rgba(255,255,255,.14);color:var(--primary);box-shadow:0 14px 30px rgba(16,43,70,.18);}
.home-hero .btn-primary:hover,.home-hero .btn-primary:focus-visible{background:rgba(255,255,255,.9);color:var(--primary);}

/* 6.2 home-info-form-split (very light bg; left rich content + right sticky Quform card) */
.home-info-form-split{background:#fbfcfe;}
.home-info-form-split__aside{position:relative;}
.home-info-form-split__sticky{position:sticky;top:110px;}
.quick-form-card{display:block;background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);padding:30px;box-shadow:var(--shadow-soft);}
.quick-form-card>h2{font-size:24px;margin-bottom:18px;}

/* 6.3 home-case-gallery (thumbnail grid; #11 thumb img height 240, contain) */
.case-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;}
.case-thumb{padding:0;border:0;background:none;cursor:pointer;border-radius:20px;overflow:hidden;}
.case-thumb img{width:100%;height:auto;border-radius:20px;display:block;}
.home-case-gallery__actions{margin-top:48px;text-align:center;}

/* 6.4 home-faq (BS5 tabs categories + accordion answers; +/- marker via #11) */
.home-faq .faq-layout{display:grid;grid-template-columns:minmax(220px,1fr) 2.6fr;gap:38px;align-items:start;}
.faq-categories{display:flex;flex-direction:column;gap:10px;border:0;}
.faq-category{text-align:left;padding:14px 18px;border-radius:var(--radius-sm);border:1px solid var(--line);background:#fff;color:var(--heading);font-weight:600;cursor:pointer;}
.faq-category.active{background:linear-gradient(90deg,var(--primary-2),var(--primary));border-color:transparent;color:#fff;}
.faq-content .accordion{display:grid;gap:12px;}
.faq-content .accordion-item{border:1px solid var(--line);border-radius:var(--radius-sm);overflow:hidden;}
.faq-content .accordion-button{font-weight:600;color:var(--heading);}
.faq-content .accordion-button:not(.collapsed){background:var(--surface);color:var(--primary);box-shadow:none;}
.faq-content .accordion-button:focus{box-shadow:none;border-color:var(--line);}
.faq-content .accordion-button::after{content:"+";background:none;transform:none;width:auto;height:auto;font-size:28px;font-weight:300;color:var(--primary);}
.faq-content .accordion-button:not(.collapsed)::after{content:"-";}
.faq-content .accordion-body{color:var(--muted);}

/* 6.5 case-modal (BS5 modal-fullscreen content skin; home-case-gallery companion) — C2: full-screen reader per #11, colors mapped to #10 tokens */
.case-modal-shell .modal-dialog{margin:0;max-width:none;}
.case-modal{min-height:100vh;border:0;border-radius:0;background:rgba(246,248,251,.98);box-shadow:none;}
.case-modal__viewport{height:100vh;overflow-y:auto;padding:132px 24px 80px;}
.case-modal__safe-area{position:relative;margin:0 auto;max-width:1180px;padding:0 0 56px;}
.case-modal__close{position:fixed;top:18px;right:18px;width:56px;height:56px;border-radius:50%;border:0;cursor:pointer;background:rgba(255,255,255,.96);backdrop-filter:blur(8px);color:var(--primary);font-size:22px;box-shadow:var(--shadow-soft);}
.case-modal__content{max-width:980px;margin:0 auto;}
.case-modal__content h3{font-size:clamp(30px,3.4vw,40px);line-height:1.1;margin-bottom:18px;color:var(--heading);letter-spacing:-.02em;}
.case-modal__image-wrap{border-radius:18px;overflow:hidden;margin-bottom:18px;}
/* C6: unify modal hero to fixed-height cover box (#11 uses contain — see ledger) */
.case-modal__image-wrap img{display:block;width:100%;height:auto;}
.case-modal__content p{color:var(--text);line-height:1.8;}
.case-modal__content ul{padding-left:22px;color:var(--text);}
.case-modal__content li{margin-bottom:6px;}
.case-modal__actions{margin-top:28px;}
/* END section 6 */

/* ============================================================
 * BEGIN section 6R — Responsive (BS5 breakpoints; #11 uses 1199 / 991 / 767)
 * ============================================================ */
@media (max-width:1199px){
  .case-grid{grid-template-columns:repeat(3,1fr);}
  .stats-grid,.why-choose-list,.footer-grid{grid-template-columns:repeat(2,1fr);}
  .shared-split-cta-banner__box,.home-faq .faq-layout{grid-template-columns:1fr;}
  /* compare keeps 3 columns until 991 (per #11); tighten geometry here */
  .shared-models-compare .compare-card h3{font-size:clamp(28px,2.8vw,36px);min-height:56px;}
  
  .shared-models-compare .compare-card__summary{min-height:140px;}
  .shared-models-compare .compare-fact-row{grid-template-columns:104px minmax(0,1fr);gap:14px;min-height:104px;}
}
@media (max-width:991px){
  .shared-header__toggle{display:flex;}
  /* mobile: nav becomes a full-bleed dark panel filling the viewport (per #11 — left/right:0, no radius) */
  .shared-header__nav.collapse:not(.show){display:none;}
  .shared-header__nav.collapse.show{display:block;position:fixed;top:68px;left:0;right:0;bottom:0;overflow-y:auto;background:#061531;border-radius:0;padding:26px 22px 32px;box-shadow:none;z-index:1040;}
  .menu{flex-direction:column;align-items:stretch;gap:12px;}
  .menu>li{padding:6px 0;}
  .menu-item__trigger{display:flex;align-items:center;justify-content:space-between;gap:12px;}
  .menu>li>.menu-item__trigger>a,.menu>li>a,.menu>li>.menu-cta{display:block;font-size:18px;font-weight:500;line-height:1.5;padding:8px 0;color:#fff;}
  /* mobile uses the submenu-toggle button as the single disclosure control */
  .desktop-caret{display:none;}
  .submenu-toggle{display:inline-flex;flex:0 0 36px;}
  /* sub-menus stack statically and indent; closed by default, opened via .is-open */
  .menu-item-has-children>.sub-menu{display:none;position:static;opacity:1;visibility:visible;transform:none;background:none;border:0;border-radius:0;box-shadow:none;min-width:0;padding:10px 0 0 18px;margin-top:6px;}
  .menu-item-has-children.is-open>.sub-menu{display:block;}
  .menu-item-has-children>.sub-menu a,
  .menu-item-has-children>.sub-menu .menu-item__trigger>a{font-size:16px;font-weight:500;line-height:1.65;padding:8px 0;display:block;color:#eef4fb;}
  .menu-item-has-children>.sub-menu .submenu-toggle{display:inline-flex;flex:0 0 32px;width:32px;height:32px;}
  .menu-item-has-children>.sub-menu .sub-menu{display:none;padding:10px 0 0 18px;margin-top:0;background:none;}
  .menu-item-has-children>.sub-menu .menu-item-has-children.is-open>.sub-menu{display:block;}
  /* Models submenu: simple indent, no boxed panel (per #11 mobile) */
  /* Models submenu: boxed panel per #11 (rgb(8,24,58) + subtle border + 24px radius) */
  .menu-item-models.is-open>.sub-menu{background:linear-gradient(180deg,#0b1f34 0%,#102b46 56%,#1c3b57 100%);border:1px solid rgba(255,255,255,.14);border-radius:24px;padding:14px 18px;margin-top:8px;box-shadow:none;}
  .menu-item-models.is-open>.sub-menu>.menu-item{padding:4px 0;}
  .menu-item-models.is-open>.sub-menu>.menu-item-has-children.is-open>.sub-menu{background:linear-gradient(180deg,#15334e 0%,#224c6c 100%);border:1px solid rgba(255,255,255,.12);border-radius:22px;padding:12px 18px;margin-top:10px;margin-left:10px;box-shadow:0 16px 36px rgba(5,16,42,.18);}
  .menu-cta{margin-top:6px;}
  .menu-cta,.menu a.menu-cta{display:inline-flex !important;width:100%;justify-content:center;padding:16px 24px;font-size:18px;}
  .home-info-form-split__sticky{position:static;}
  .home-faq .faq-categories{flex-direction:row;flex-wrap:wrap;}
  .case-grid{grid-template-columns:repeat(2,1fr);}
  .home-hero{padding-top:110px;}
  .stats-grid,.why-choose-list,.footer-grid{grid-template-columns:1fr;}
  /* C9: collapse contact-us label/value pairs to one column (#11) — 220px label col is too cramped on mobile */
  .shared-contact-us__row{grid-template-columns:1fr;row-gap:2px;}
  /* compare collapses to one column at 991 (per #11); ribbon sits statically above each card */
  .shared-models-compare .compare-grid{grid-template-columns:1fr;padding-top:0;}
  .shared-models-compare .compare-card--featured{border-top-left-radius:28px;border-top-right-radius:28px;}
  .shared-models-compare .compare-card__recommend{position:static;left:auto;right:auto;top:auto;border-radius:28px 28px 0 0;}
  .shared-models-compare .compare-card__recommend--empty{display:none !important;}
  .shared-models-compare .compare-card h3,
  .shared-models-compare .compare-card__summary,
  .shared-models-compare .compare-fact-row{min-height:0;}
  
}
@media (max-width:767px){
  .section-pad{padding-top:60px;padding-bottom:60px;}
  .section-head h2,.section-rich-content h2{font-size:36px;}
  .home-hero h1{font-size:clamp(42px,12vw,56px);}
  .home-hero p{font-size:16px;}
  .case-grid{grid-template-columns:1fr;}
  .shared-split-cta-banner__box{padding:30px 22px;}
  .shared-contact-float__panel{width:calc(100vw - 32px);right:16px;bottom:16px;}
  .shared-contact-float{right:16px;bottom:16px;}
  /* compare small-screen */
  .shared-models-compare .compare-card__body{padding:22px 18px 22px;}
  .shared-models-compare .compare-card__media{border-radius:18px;}
  .shared-models-compare .compare-card h3{font-size:clamp(26px,8vw,34px);margin-bottom:14px;}
  .shared-models-compare .compare-card__summary{margin-bottom:16px;font-size:15px;line-height:1.75;}
  .shared-models-compare .compare-fact-row{grid-template-columns:1fr;gap:6px;padding:14px 0;}
  .shared-models-compare .compare-card__recommend{border-radius:24px 24px 0 0;}
}
/* END section 6R */

/* ===== PAGE: product-family · page-item-family-* (additive only; all rules above are the confirmed homepage CSS and are untouched) ===== */
/* Hero breadcrumb (shared across all page-type heroes; matched by aria-label inside the confirmed .home-hero visual). */
.home-hero__content nav[aria-label="Breadcrumb"]{margin:0 0 18px;}
.home-hero__content nav[aria-label="Breadcrumb"] ol{display:flex;flex-wrap:wrap;justify-content:center;gap:8px;margin:0;padding:0;list-style:none;font-size:15px;letter-spacing:.04em;}
.home-hero__content nav[aria-label="Breadcrumb"] li{display:flex;align-items:center;color:rgba(255,255,255,.78);}
.home-hero__content nav[aria-label="Breadcrumb"] li+li::before{content:"/";margin-right:8px;color:rgba(255,255,255,.5);}
.home-hero__content nav[aria-label="Breadcrumb"] a{color:rgba(255,255,255,.9);border-bottom:1px solid rgba(255,255,255,.32);}
.home-hero__content nav[aria-label="Breadcrumb"] a:hover,.home-hero__content nav[aria-label="Breadcrumb"] a:focus-visible{color:#fff;border-color:#fff;}
.home-hero__content nav[aria-label="Breadcrumb"] [aria-current="page"]{color:#fff;font-weight:600;}

/* ===== nav-pills brand color (shared; used by the gallery model filter) ===== */
.nav-pills .nav-link{color:var(--primary);}
.nav-pills .nav-link:hover,.nav-pills .nav-link:focus-visible{color:var(--accent);}
.nav-pills .nav-link.active{background:var(--primary);border-color:var(--primary);color:#fff;}

/* ============================================================
 * BEGIN section 7 - page-* additions (v0.1.90; additive only).
 * Every selector below is matched ONLY by classes that exist on the
 * 5 non-home pages; the homepage DOM contains none of these classes,
 * so homepage rendering is unchanged. All rules above this line are
 * the confirmed homepage CSS and are untouched.
 * ============================================================ */

/* 7.1 page-* hero height system (ported from stage03 #11).
 * #11 truth: only the homepage hero is forced full-viewport; every
 * other page type uses a clamp() height ladder with bottom-anchored
 * content (align-items:flex-end). Desktop min-heights per #11:
 * family/application 69vh, items 81vh, quote/gallery 62vh; the
 * responsive ladder (460/420/360 clamps) is identical across all
 * five page types in #11. These rules override the .home-hero
 * full-viewport defaults via the dual class on each page hero. */
.page-item-family-hero,
.page-application-hero,
.page-items-hero,
.page-quote-hero,
.page-gallery-hero{min-height:clamp(520px,69vh,860px);align-items:flex-end;padding-top:132px;padding-bottom:56px;}
.page-items-hero{min-height:clamp(520px,81vh,980px);}
.page-quote-hero,
.page-gallery-hero{min-height:clamp(520px,62vh,760px);}
.page-item-family-hero .home-hero__content,
.page-application-hero .home-hero__content,
.page-items-hero .home-hero__content,
.page-quote-hero .home-hero__content,
.page-gallery-hero .home-hero__content{padding-top:34px;padding-bottom:22px;}
@media (max-width:1199px){
  .page-item-family-hero,.page-application-hero,.page-items-hero,.page-quote-hero,.page-gallery-hero{min-height:clamp(460px,56vh,620px);padding-top:126px;padding-bottom:46px;}
  .page-item-family-hero .home-hero__content,.page-application-hero .home-hero__content,.page-items-hero .home-hero__content,.page-quote-hero .home-hero__content,.page-gallery-hero .home-hero__content{padding-top:28px;padding-bottom:18px;}
}
@media (max-width:991px){
  .page-item-family-hero,.page-application-hero,.page-items-hero,.page-quote-hero,.page-gallery-hero{min-height:clamp(420px,54vh,560px);padding-top:118px;padding-bottom:40px;}
  .page-item-family-hero .home-hero__content,.page-application-hero .home-hero__content,.page-items-hero .home-hero__content,.page-quote-hero .home-hero__content,.page-gallery-hero .home-hero__content{padding-top:26px;padding-bottom:14px;}
}
@media (max-width:767px){
  .page-item-family-hero,.page-application-hero,.page-items-hero,.page-quote-hero,.page-gallery-hero{min-height:clamp(360px,50vh,520px);padding-top:108px;padding-bottom:34px;}
  .page-item-family-hero .home-hero__content,.page-application-hero .home-hero__content,.page-items-hero .home-hero__content,.page-quote-hero .home-hero__content,.page-gallery-hero .home-hero__content{padding-top:22px;padding-bottom:10px;}
}

/* 7.2 page-* info-form-split rich-content components (family /
 * application / items). Structure and values ported from stage03 #11
 * (section-intro / content-image / dl fact blocks / content-note-list /
 * section-bridge / application-options-grid + option cards). Scoped to
 * the three page-owned split modules so home, quote, and gallery are
 * untouched. The --two grid modifier is new (family page carries only
 * the two metal-route cards; acrylic stays a text boundary note). */
.page-item-family-info-form-split .section-rich-content .section-intro,
.page-application-info-form-split .section-rich-content .section-intro,
.page-items-info-form-split .section-rich-content .section-intro{font-size:19px;line-height:1.82;color:#53657f;max-width:62ch;margin:0 0 28px;}
.page-item-family-info-form-split .content-image,
.page-application-info-form-split .content-image,
.page-items-info-form-split .content-image{overflow:hidden;border-radius:32px;border:1px solid rgba(43,79,115,.10);background:#fff;box-shadow:0 8px 24px rgba(20,34,63,.06);margin:0 0 8px;}
.page-item-family-info-form-split .content-image img,
.page-application-info-form-split .content-image img,
.page-items-info-form-split .content-image img{display:block;width:100%;height:auto;}
.page-item-family-info-form-split .section-rich-content .content-image + h3,
.page-application-info-form-split .section-rich-content .content-image + h3,
.page-items-info-form-split .section-rich-content .content-image + h3,
.page-item-family-info-form-split .section-rich-content dl + h3,
.page-application-info-form-split .section-rich-content dl + h3,
.page-items-info-form-split .section-rich-content dl + h3,
.page-item-family-info-form-split .section-rich-content .content-note-list + h3,
.page-application-info-form-split .section-rich-content .content-note-list + h3,
.page-items-info-form-split .section-rich-content .content-note-list + h3,
.page-item-family-info-form-split .section-rich-content .application-options-grid + h3,
.page-application-info-form-split .section-rich-content .application-options-grid + h3,
.page-items-info-form-split .section-rich-content .application-options-grid + h3{margin-top:46px;}
.page-item-family-info-form-split .section-rich-content h3 + dl,
.page-application-info-form-split .section-rich-content h3 + dl,
.page-items-info-form-split .section-rich-content h3 + dl,
.page-item-family-info-form-split .section-rich-content h3 + .section-bridge,
.page-application-info-form-split .section-rich-content h3 + .section-bridge,
.page-items-info-form-split .section-rich-content h3 + .section-bridge{margin-top:18px;}
.page-item-family-info-form-split .section-rich-content dl,
.page-application-info-form-split .section-rich-content dl,
.page-items-info-form-split .section-rich-content dl{display:grid;grid-template-columns:minmax(220px,.92fr) minmax(0,1.08fr);margin:0 0 16px;border:1px solid rgba(43,79,115,.10);border-radius:28px;overflow:hidden;background:#fff;box-shadow:0 8px 24px rgba(20,34,63,.04);}
.page-item-family-info-form-split .section-rich-content dl > *,
.page-application-info-form-split .section-rich-content dl > *,
.page-items-info-form-split .section-rich-content dl > *{margin:0;padding:18px 24px;border-top:1px solid #e6edf5;font-size:17px;line-height:1.78;}
.page-item-family-info-form-split .section-rich-content dl > :first-child,
.page-application-info-form-split .section-rich-content dl > :first-child,
.page-items-info-form-split .section-rich-content dl > :first-child,
.page-item-family-info-form-split .section-rich-content dl > :nth-child(2),
.page-application-info-form-split .section-rich-content dl > :nth-child(2),
.page-items-info-form-split .section-rich-content dl > :nth-child(2){border-top:0;}
.page-item-family-info-form-split .section-rich-content dl > dt,
.page-application-info-form-split .section-rich-content dl > dt,
.page-items-info-form-split .section-rich-content dl > dt{font-weight:600;color:#18324d;background:#f8fafd;}
.page-item-family-info-form-split .section-rich-content dl > dd,
.page-application-info-form-split .section-rich-content dl > dd,
.page-items-info-form-split .section-rich-content dl > dd{background:#fff;color:#41506a;}
.page-item-family-info-form-split .section-rich-content dl > dt,
.page-application-info-form-split .section-rich-content dl > dt,
.page-items-info-form-split .section-rich-content dl > dt{grid-column:1;}
.page-item-family-info-form-split .section-rich-content dl > dd,
.page-application-info-form-split .section-rich-content dl > dd,
.page-items-info-form-split .section-rich-content dl > dd{grid-column:2;}
.page-item-family-info-form-split .section-rich-content dl.dl-stacked,
.page-application-info-form-split .section-rich-content dl.dl-stacked,
.page-items-info-form-split .section-rich-content dl.dl-stacked{grid-template-columns:minmax(0,1fr);}
.page-item-family-info-form-split .section-rich-content dl.dl-stacked > dt,
.page-application-info-form-split .section-rich-content dl.dl-stacked > dt,
.page-items-info-form-split .section-rich-content dl.dl-stacked > dt,
.page-item-family-info-form-split .section-rich-content dl.dl-stacked > dd,
.page-application-info-form-split .section-rich-content dl.dl-stacked > dd,
.page-items-info-form-split .section-rich-content dl.dl-stacked > dd{grid-column:auto;}
.page-item-family-info-form-split .section-rich-content dl.dl-stacked > dt,
.page-application-info-form-split .section-rich-content dl.dl-stacked > dt,
.page-items-info-form-split .section-rich-content dl.dl-stacked > dt{padding-bottom:14px;}
.page-item-family-info-form-split .section-rich-content dl.dl-stacked > :nth-child(2),
.page-application-info-form-split .section-rich-content dl.dl-stacked > :nth-child(2),
.page-items-info-form-split .section-rich-content dl.dl-stacked > :nth-child(2){border-top:1px solid #e6edf5;}
.page-item-family-info-form-split .content-note-list,
.page-application-info-form-split .content-note-list,
.page-items-info-form-split .content-note-list{list-style:none;margin:0 0 16px;padding:22px 24px;background:#f8fafd;border:1px solid rgba(43,79,115,.10);border-radius:28px;color:#41506a;}
.page-item-family-info-form-split .content-note-list li,
.page-application-info-form-split .content-note-list li,
.page-items-info-form-split .content-note-list li{position:relative;padding-left:18px;font-size:16px;line-height:1.8;color:#53657f;margin-bottom:8px;}
.page-item-family-info-form-split .content-note-list li:last-child,
.page-application-info-form-split .content-note-list li:last-child,
.page-items-info-form-split .content-note-list li:last-child{margin-bottom:0;}
.page-item-family-info-form-split .content-note-list li::before,
.page-application-info-form-split .content-note-list li::before,
.page-items-info-form-split .content-note-list li::before{content:"";position:absolute;left:0;top:.92em;width:7px;height:7px;border-radius:999px;background:#587391;transform:translateY(-50%);}
.page-item-family-info-form-split .section-bridge,
.page-application-info-form-split .section-bridge,
.page-items-info-form-split .section-bridge{padding:22px 24px;border:1px solid rgba(43,79,115,.10);border-radius:28px;background:linear-gradient(135deg,#f7fbff 0%,#eef5fd 100%);box-shadow:0 8px 24px rgba(20,34,63,.04);margin:0 0 20px;}
.page-item-family-info-form-split .section-bridge p,
.page-application-info-form-split .section-bridge p,
.page-items-info-form-split .section-bridge p{margin:0;font-size:17px;line-height:1.78;color:#4d617d;}
.page-item-family-info-form-split .application-options-grid,
.page-application-info-form-split .application-options-grid,
.page-items-info-form-split .application-options-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;margin:0 0 16px;}
.page-item-family-info-form-split .application-options-grid--two,
.page-application-info-form-split .application-options-grid--two,
.page-items-info-form-split .application-options-grid--two{grid-template-columns:repeat(2,minmax(0,1fr));}
.page-item-family-info-form-split .application-options-grid + .content-note-list,
.page-application-info-form-split .application-options-grid + .content-note-list,
.page-items-info-form-split .application-options-grid + .content-note-list{margin-top:36px;}
.page-item-family-info-form-split .application-option-card,
.page-application-info-form-split .application-option-card,
.page-items-info-form-split .application-option-card{display:flex;flex-direction:column;min-height:100%;border:1px solid rgba(43,79,115,.10);border-radius:28px;overflow:hidden;background:#fff;box-shadow:0 10px 26px rgba(20,34,63,.05);}
.page-item-family-info-form-split .application-option-card__body,
.page-application-info-form-split .application-option-card__body,
.page-items-info-form-split .application-option-card__body{display:flex;flex-direction:column;gap:12px;padding:20px 22px 24px;min-height:100%;height:100%;}
.page-item-family-info-form-split .application-option-card__body h4,
.page-application-info-form-split .application-option-card__body h4,
.page-items-info-form-split .application-option-card__body h4{margin:0;font-size:24px;line-height:1.22;font-weight:600;letter-spacing:-.02em;color:#183b66;}
.page-item-family-info-form-split .application-option-card__media,
.page-application-info-form-split .application-option-card__media,
.page-items-info-form-split .application-option-card__media{aspect-ratio:4/3;overflow:hidden;background:#eaf1f8;border-radius:20px;}
.page-item-family-info-form-split .application-option-card__media img,
.page-application-info-form-split .application-option-card__media img,
.page-items-info-form-split .application-option-card__media img{display:block;width:100%;height:100%;object-fit:cover;}
.page-item-family-info-form-split .application-option-card__body p,
.page-application-info-form-split .application-option-card__body p,
.page-items-info-form-split .application-option-card__body p{margin:0;font-size:16px;line-height:1.8;color:#53657f;}
.page-item-family-info-form-split .application-option-card__link,
.page-application-info-form-split .application-option-card__link,
.page-items-info-form-split .application-option-card__link{display:inline-flex;align-items:center;gap:8px;margin-top:auto;padding-top:18px;font-size:15px;line-height:1.5;font-weight:600;color:#1f4f86;text-decoration:none;border-bottom:0;}
.page-item-family-info-form-split .application-option-card__link::after,
.page-application-info-form-split .application-option-card__link::after,
.page-items-info-form-split .application-option-card__link::after{content:"->";font-size:14px;line-height:1;}
.page-item-family-info-form-split .application-option-card__link:hover,
.page-application-info-form-split .application-option-card__link:hover,
.page-items-info-form-split .application-option-card__link:hover,
.page-item-family-info-form-split .application-option-card__link:focus-visible,
.page-application-info-form-split .application-option-card__link:focus-visible,
.page-items-info-form-split .application-option-card__link:focus-visible{color:#0f2f57;text-decoration:underline;border-bottom:0;}
@media (min-width:992px){
  .page-item-family-info-form-split .application-option-card__body h4,
  .page-application-info-form-split .application-option-card__body h4,
  .page-items-info-form-split .application-option-card__body h4{min-height:3.66em;}
}
@media (max-width:991px){
  .page-item-family-info-form-split .section-rich-content dl,
  .page-application-info-form-split .section-rich-content dl,
  .page-items-info-form-split .section-rich-content dl{grid-template-columns:minmax(0,1fr);}
  .page-item-family-info-form-split .section-rich-content dl > dt,
  .page-application-info-form-split .section-rich-content dl > dt,
  .page-items-info-form-split .section-rich-content dl > dt{padding-bottom:6px;}
  .page-item-family-info-form-split .section-rich-content dl > dd,
  .page-application-info-form-split .section-rich-content dl > dd,
  .page-items-info-form-split .section-rich-content dl > dd{padding-top:6px;}
  .page-item-family-info-form-split .section-rich-content dl > :nth-child(2),
  .page-application-info-form-split .section-rich-content dl > :nth-child(2),
  .page-items-info-form-split .section-rich-content dl > :nth-child(2){border-top:1px solid #e7edf4;}
  .page-item-family-info-form-split .section-rich-content dl > dt,
  .page-application-info-form-split .section-rich-content dl > dt,
  .page-items-info-form-split .section-rich-content dl > dt,
  .page-item-family-info-form-split .section-rich-content dl > dd,
  .page-application-info-form-split .section-rich-content dl > dd,
  .page-items-info-form-split .section-rich-content dl > dd{grid-column:auto;}
  .page-item-family-info-form-split .application-options-grid,
  .page-application-info-form-split .application-options-grid,
  .page-items-info-form-split .application-options-grid{grid-template-columns:1fr;}
}
@media (max-width:575px){
  .page-item-family-info-form-split .section-rich-content dl > *,
  .page-application-info-form-split .section-rich-content dl > *,
  .page-items-info-form-split .section-rich-content dl > *{padding:15px 18px;}
  .page-item-family-info-form-split .content-note-list,
  .page-application-info-form-split .content-note-list,
  .page-items-info-form-split .content-note-list{padding:20px 18px;}
  .page-item-family-info-form-split .section-bridge,
  .page-application-info-form-split .section-bridge,
  .page-items-info-form-split .section-bridge{padding:20px 18px;}
  .page-item-family-info-form-split .application-option-card__body,
  .page-application-info-form-split .application-option-card__body,
  .page-items-info-form-split .application-option-card__body{padding:18px 18px 22px;}
  .page-item-family-info-form-split .application-option-card__body h4,
  .page-application-info-form-split .application-option-card__body h4,
  .page-items-info-form-split .application-option-card__body h4{font-size:22px;min-height:auto;}
}
/* END section 7 */

/* ============================================================
 * BEGIN section 8 - batch2 fixes (v0.1.91-draft; additive)
 * ============================================================ */

/* 8.1 problem 1: floating contact window, answer screen.
 * Screen 2 (typed: received) and Screen 3 (quick answer) share one
 * answer-card DOM; this single rule gives both the dashed divider
 * with breathing room between the heading and the body, mirroring
 * the existing invite-line treatment (line 527). */
.shared-contact-float__answer-body{margin-top:14px;padding-top:12px;border-top:1px dashed var(--line);}

/* 8.2 problem 8: hero content side padding (all 6 pages incl. home).
 * Base rule (line 582) zeroes horizontal padding via 3-value
 * shorthand; section 7.1 now uses top/bottom longhand only, so the
 * sides are governed here. max-width 980 -> 1028 absorbs the 48px,
 * keeping desktop text width pixel-identical while mobile gains the
 * site-standard 24px gutters. */
.home-hero__content{max-width:1028px;padding-left:24px;padding-right:24px;}

/* 8.3 problems 2.2 + 4.2: light visual emphasis for the Luxury option
 * card (operator wants buyers nudged toward Luxury; soft tint only,
 * deliberately NOT the deep-navy compare-card--featured treatment). */
.page-item-family-info-form-split .application-option-card--featured,
.page-application-info-form-split .application-option-card--featured{background:linear-gradient(135deg,#f7fbff 0%,#e7f1fc 100%);border-color:rgba(43,79,115,.28);box-shadow:0 12px 30px rgba(20,34,63,.09);}

/* 8.4 problem 6.2: quote-page form heading, lifted out of the form
 * card to column level and sized to match the right-column h2 (40px,
 * 36px under 768px, tracking line 693's rich-content step-down). */
.page-quote-form-split__form-heading{font-size:40px;margin:0 0 14px;}
@media (max-width:767px){
  .page-quote-form-split__form-heading{font-size:36px;}
}

/* 8.5 problem 7: shared-split-cta-banner, all 11 instances. The h2 is
 * hoisted to the first child of __box and spans both grid columns;
 * the grid gap splits into 28px rows / 48px columns so the heading
 * gets clear separation from the body (was effectively zero: global
 * h2 margin:0 with no module supplement). Overrides frozen line 256
 * by later-source order. */
.shared-split-cta-banner__box{gap:28px 48px;}
.shared-split-cta-banner__box > h2{grid-column:1 / -1;}


/* 8.6 problem 5.3: gallery Resources module (page-gallery-resources).
 * Skeleton cloned from the case-filter gallery; thumbs reuse
 * .case-thumb and add a bottom title strip so the 32 finishes stay
 * identifiable. Per-item static BS5 modals (resModal-*) reuse the
 * case-modal shell; home.js untouched. */
.resource-thumb{position:relative;}
.resource-thumb .resource-thumb__label{position:absolute;left:0;right:0;bottom:0;padding:8px 12px;background:linear-gradient(180deg,rgba(10,22,40,0) 0%,rgba(10,22,40,.78) 100%);color:#fff;font-size:14px;font-weight:600;line-height:1.3;text-align:left;pointer-events:none;}

/* 8.7 problem 9: compare popover rich-content skin. The Popover init
 * in home.js now passes html:true with the BS5 default sanitizer,
 * whose allowList covers p / a[href|target|rel|title] / ul / ol / li.
 * These rules give that content readable spacing and a visible link
 * color on the dark bubble. Existing plain-text tips render as before. */
.compare-popover .popover-body p{margin:0 0 10px;}
.compare-popover .popover-body p:last-child{margin-bottom:0;}
.compare-popover .popover-body ul,
.compare-popover .popover-body ol{margin:8px 0 0;padding-left:18px;}
.compare-popover .popover-body li{margin-bottom:6px;}
.compare-popover .popover-body li:last-child{margin-bottom:0;}
.compare-popover .popover-body a{color:#9ec5ff;text-decoration:underline;}

/* 8.8 addendum 11: spec dls ported from probe #11 follow the
 * dt + N*dd rule for multi-value groups (finish categories x5,
 * lighting colors x4, included accessories x6). Continuation dd rows
 * cluster under their first value with no separator; dd+dd adjacency
 * never occurs in alternating pair dls and dl-stacked is excluded,
 * so both existing dl looks are untouched. dt-rows-N spans the gray
 * label cell across its value group (rowspan look); spans reset to
 * auto in the single-column layout under 992px. */
.page-item-family-info-form-split .section-rich-content dl:not(.dl-stacked) > dd + dd,
.page-application-info-form-split .section-rich-content dl:not(.dl-stacked) > dd + dd,
.page-items-info-form-split .section-rich-content dl:not(.dl-stacked) > dd + dd{border-top:0;padding-top:0;}
.page-item-family-info-form-split .section-rich-content dl > dt.dt-rows-4,
.page-application-info-form-split .section-rich-content dl > dt.dt-rows-4,
.page-items-info-form-split .section-rich-content dl > dt.dt-rows-4{grid-row:span 4;}
.page-item-family-info-form-split .section-rich-content dl > dt.dt-rows-5,
.page-application-info-form-split .section-rich-content dl > dt.dt-rows-5,
.page-items-info-form-split .section-rich-content dl > dt.dt-rows-5{grid-row:span 5;}
.page-item-family-info-form-split .section-rich-content dl > dt.dt-rows-6,
.page-application-info-form-split .section-rich-content dl > dt.dt-rows-6,
.page-items-info-form-split .section-rich-content dl > dt.dt-rows-6{grid-row:span 6;}
@media (max-width:991px){
  .page-item-family-info-form-split .section-rich-content dl > dt.dt-rows-4,
  .page-application-info-form-split .section-rich-content dl > dt.dt-rows-4,
  .page-items-info-form-split .section-rich-content dl > dt.dt-rows-4,
  .page-item-family-info-form-split .section-rich-content dl > dt.dt-rows-5,
  .page-application-info-form-split .section-rich-content dl > dt.dt-rows-5,
  .page-items-info-form-split .section-rich-content dl > dt.dt-rows-5,
  .page-item-family-info-form-split .section-rich-content dl > dt.dt-rows-6,
  .page-application-info-form-split .section-rich-content dl > dt.dt-rows-6,
  .page-items-info-form-split .section-rich-content dl > dt.dt-rows-6{grid-row:auto;}
}
