/* CBC cbcins.com /LargeGroup LANDING + inlined REQUEST-DEMO lead form — FULL-PARITY remake (T2, C2).
   Stamp: marketing chrome + brand tokens from the cbcins exemplars (B1 homepage + B2 individual-funnel);
   layout archetype (landing + inlined 2-step demo form) from the T1 large-group-landing/large-group builds.
   Brand: CBC Red #D32E2F, self-hosted Futura PT (Jost fallback), .glass/.rise, B2 form-kit chrome.
   LANE: T2 cbcins ONLY — zero Costco tokens. Mobile-first, WCAG 2.2 AA. No third-party CSS, no pixels. */

/* ===== Self-hosted Futura PT (brand primary) ===== */
@font-face{font-family:"Futura PT";src:url("assets/FuturaPT-Light.woff2") format("woff2");font-weight:300;font-style:normal;font-display:swap}
@font-face{font-family:"Futura PT";src:url("assets/FuturaPT-Book.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:"Futura PT";src:url("assets/FuturaPT-Medium.woff2") format("woff2");font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:"Futura PT";src:url("assets/FuturaPT-Demi.woff2") format("woff2");font-weight:600;font-style:normal;font-display:swap}
@font-face{font-family:"Futura PT";src:url("assets/FuturaPT-Heavy.woff2") format("woff2");font-weight:800;font-style:normal;font-display:swap}

:root{
  --red:#D32E2F; --red-dark:#b02324;          /* THE accent — CTA + bands. One red primary per view. */
  --black:#000; --ink:#15171a;
  --body:#3f444b; --muted:#6a7077;            /* greyscale body (>= AA on white) */
  --line:#dadde1; --gray:#E7E7E7; --soft:#f5f6f7; --bg:#fff;
  --darkblue:#1a4f8a;                         /* "More Languages..." link, AA on light */
  --green:#2e7d32; --green-dark:#256528;      /* ghost "Learn More" CTAs (live greenButton) */
  --font:"Futura PT","Jost",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  --maxw:1180px; --radius:16px;
  --h2:clamp(1.6rem,3.2vw,2.1rem);
  --glass-edge:rgba(255,255,255,.75);
  --shadow:0 10px 34px rgba(15,20,30,.12),0 2px 6px rgba(15,20,30,.06);
}
/* ONE H2 scale across every section title (C3). */
h2,.infoBox__head,.costContain__head,.dataAdmin__head,.vip__head,.scale__head,.card__title{
  font-family:var(--font);font-weight:800;line-height:1.12}
h2,.infoBox__head,.costContain__head,.dataAdmin__head,.vip__head,.scale__head{font-size:var(--h2)}
*{box-sizing:border-box}
/* scroll-behavior:auto per the stamp (capture-safe; CTAs jump to #here without a scroll-anim that the gate can race). */
html{-webkit-text-size-adjust:100%;scroll-behavior:auto}
body{margin:0;background:var(--bg);color:var(--body);font-family:var(--font);
  font-size:16px;line-height:1.55;font-weight:400}
img{max-width:100%;display:block}
a{color:var(--red);text-decoration:none}
a:hover{text-decoration:underline}
.wrap{width:100%;max-width:var(--maxw);margin:0 auto;padding:0 22px}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.red{color:var(--red)}
/* skip-to-content link (WCAG 2.4.1): slid off the top edge until focused (no -9999px,
   which the overflow gate reads as clipped); slides into view on keyboard focus. */
.skip-link{position:fixed;left:8px;top:-48px;z-index:100;background:var(--red);color:#fff;
  padding:12px 18px;border-radius:0 0 10px 10px;font-weight:700;transition:top .15s}
.skip-link:focus{top:0;text-decoration:none;outline:3px solid #fff;outline-offset:-3px}

/* ============================================================================
   LIQUID GLASS (B1 recipe). Top-edge sheen via ::before. Reduced-motion + non-Chromium fallbacks.
   ============================================================================ */
.glass{position:relative;background:rgba(255,255,255,.62);
  -webkit-backdrop-filter:blur(18px) saturate(1.5);backdrop-filter:blur(18px) saturate(1.5);
  border:1px solid var(--glass-edge);border-radius:var(--radius);
  box-shadow:0 1px 1px rgba(255,255,255,.9) inset,0 10px 34px rgba(211,46,47,.07),0 1px 0 rgba(10,10,10,.04);
  overflow:hidden}
.glass::before{content:"";position:absolute;inset:0 0 auto 0;height:46%;pointer-events:none;z-index:0;
  background:linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,0));border-radius:var(--radius) var(--radius) 0 0}
.glass > *{position:relative;z-index:1}
.glass__sheen{display:none}
@media (prefers-reduced-motion: reduce){
  .glass{-webkit-backdrop-filter:blur(4px) saturate(1.12) brightness(1.03);
    backdrop-filter:blur(4px) saturate(1.12) brightness(1.03);background:rgba(255,255,255,.9)}
}
@supports not ((-webkit-backdrop-filter:blur(1px)) or (backdrop-filter:blur(1px))){
  .glass{background:rgba(255,255,255,.95);
    -webkit-backdrop-filter:blur(4px) saturate(1.12) brightness(1.03);
    backdrop-filter:blur(4px) saturate(1.12) brightness(1.03)}
}

/* ============================================================================
   ENTRANCE REVEAL. Capture-safe (opacity stays 1; only transform animates).
   ============================================================================ */
@keyframes rise{from{transform:translateY(16px)}to{transform:translateY(0)}}
.js .rise{opacity:1;transform:translateY(16px)}
.js .rise.is-in{transform:translateY(0);animation:rise .9s cubic-bezier(.2,.7,.2,1) forwards}
.js .rise.d1.is-in{animation-delay:.05s}
.js .rise.d2.is-in{animation-delay:.16s}
.js .rise.d3.is-in{animation-delay:.27s}
@media (prefers-reduced-motion: reduce){
  .js .rise{opacity:1 !important;animation:none !important;transform:none !important}
}

/* ============================================================================
   SECTION 0 - HEADER (black masthead)
   ============================================================================ */
.masthead{background:var(--black);position:sticky;top:0;z-index:40}
.masthead .wrap{display:flex;align-items:center;justify-content:space-between;gap:16px;min-height:72px}
.masthead__logo{display:inline-flex;align-items:center;min-height:44px;flex:0 0 auto}
.masthead__logo img{height:84px;width:auto;flex:0 0 auto}
.masthead__right{display:flex;align-items:center;gap:10px;min-width:0}
.socials{display:flex;align-items:center;gap:10px}
.socials a{display:inline-flex;align-items:center;gap:9px;color:#fff;padding:8px 10px;min-height:44px;border-radius:var(--radius)}
.socials a:hover{color:var(--red);background:rgba(255,255,255,.08);text-decoration:none}
.socials .sep{color:var(--red);font-weight:800}
.socials svg{width:20px;height:20px;display:block}
.masthead__news .hdrLinkTxt,.masthead__contact .hdrLinkTxt{font-weight:500}
.masthead__news,.masthead__contact{display:inline-flex;align-items:center;gap:9px;color:#fff;
  padding:8px 10px;min-height:44px;border-radius:var(--radius)}
.masthead__news:hover,.masthead__contact:hover{background:rgba(255,255,255,.10);text-decoration:none}
.masthead__news .news,.masthead__contact .env{width:18px;height:18px}
.masthead__home{display:inline-flex;align-items:center;color:#fff;padding:8px;min-height:44px;border-radius:var(--radius)}
.masthead__home:hover{background:rgba(255,255,255,.10)}
.masthead__home svg{width:20px;height:20px}
.nav__toggle{display:none;background:none;border:0;color:#fff;cursor:pointer;
  width:48px;height:48px;border-radius:var(--radius);align-items:center;justify-content:center}
.nav__toggle:hover{background:rgba(255,255,255,.10)}
.nav__toggle svg{width:26px;height:26px;display:block}
@media(max-width:900px){
  .masthead__logo img{height:56px}
  .socials .masthead__news .hdrLinkTxt{display:none}
}
@media(max-width:600px){
  .socials{display:none}
  .masthead__contact .hdrLinkTxt{display:none}
  .masthead__home{display:none}
}
/* CJK fallback for ACA language names (Futura PT has no CJK glyphs). */
.footerDisclaimer{font-family:var(--font),"Hiragino Sans","Hiragino Kaku Gothic ProN","Yu Gothic","Meiryo","PingFang SC","Microsoft YaHei","Malgun Gothic","Noto Sans CJK SC","Noto Sans CJK JP","Noto Sans CJK KR",sans-serif}

/* ============================================================================
   SECTION 1 - TOP NAV (dynamic; rendered from JS data array)
   ============================================================================ */
.businessNav{background:#15171a;border-top:1px solid rgba(255,255,255,.08);position:relative;z-index:30}
.businessNav__list{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;justify-content:flex-end;gap:0}
.businessNav__item{position:relative;color:#fff}
.businessNav__item > a{display:inline-flex;align-items:center;gap:9px;background:#15171a;color:#fff;font-weight:500;
  font-size:.92rem;padding:13px 15px;min-height:48px;line-height:1.15;
  border-right:1px solid rgba(255,255,255,.10)}
.businessNav__item.current > a{background:var(--red)}
.businessNav__item.current > a:hover{background:var(--red-dark)}
.businessNav__item > a:hover{background:rgba(255,255,255,.08);text-decoration:none}
.businessNav__item > a .navText{white-space:normal}
.businessNav__sub{list-style:none;margin:0;padding:8px 0;position:absolute;top:100%;left:0;min-width:250px;
  background:#fff;box-shadow:var(--shadow);border-radius:0 0 var(--radius) var(--radius);border-top:3px solid var(--red);
  display:none;z-index:50}
.businessNav__item:hover > .businessNav__sub,
.businessNav__item:focus-within > .businessNav__sub{display:block}
.businessNav__sub a{display:block;color:var(--ink);font-size:.9rem;padding:9px 18px}
.businessNav__sub a:hover{background:var(--soft);color:var(--red);text-decoration:none}
@media(max-width:900px){
  .nav__toggle{display:inline-flex}
  .businessNav{display:none}
  .businessNav.open{display:block}
  .businessNav__list{flex-direction:column;align-items:stretch}
  .businessNav__item > a{border-right:0;border-bottom:1px solid rgba(255,255,255,.10);justify-content:flex-start;font-size:1.02rem}
  .businessNav__sub{position:static;display:block;box-shadow:none;border-radius:0;border-top:0;
    background:rgba(255,255,255,.04);min-width:0}
  .businessNav__sub a{color:rgba(255,255,255,.85);padding-left:42px}
  .businessNav__sub a:hover{background:rgba(255,255,255,.08);color:#fff}
}

/* ============================================================================
   SECTION 2 - SECONDARY NAV (Large Business sub-tabs)
   ============================================================================ */
.subNav{background:var(--soft);border-bottom:1px solid var(--line)}
.subNav__inner{display:flex;flex-wrap:wrap;gap:10px;padding:6px 22px}
.subNav__tab{display:inline-flex;align-items:center;min-height:44px;padding:11px 16px;color:var(--ink);
  font-weight:500;font-size:.94rem;border-radius:10px}
.subNav__tab:hover{background:#fff;color:var(--red);text-decoration:none;box-shadow:0 1px 4px rgba(15,20,30,.1)}
@media(max-width:600px){ .subNav__tab{font-size:.86rem;padding:10px 12px} }

/* ============================================================================
   CBC BUTTONS — one red HERO primary; section "Learn More" use the live green ghost style.
   ============================================================================ */
.cbcBtn{display:inline-flex;align-items:center;gap:9px;font-family:inherit;font-weight:700;font-size:1rem;
  border-radius:11px;padding:13px 22px;min-height:50px;cursor:pointer;text-decoration:none;
  transition:background .12s,transform .04s,color .12s}
.cbcBtn:active{transform:translateY(1px)}
.cbcBtn:focus-visible{outline:3px solid var(--red);outline-offset:2px}
.cbcBtn .chev{font-weight:700}
.cbcBtn--hero{background:var(--red);color:#fff;font-size:1.1rem;padding:15px 28px;min-height:54px}
.cbcBtn--hero:hover{background:var(--red-dark);color:#fff;text-decoration:none}
.cbcBtn--ghost{background:var(--green);color:#fff}
.cbcBtn--ghost:hover{background:var(--green-dark);color:#fff;text-decoration:none}

/* ============================================================================
   SECTION 3 - HERO (dark photographic, white headline, single red CTA)
   ============================================================================ */
.hero{position:relative;background:#101216;overflow:hidden;isolation:isolate;color:#fff;min-height:380px}
.hero__bg{position:absolute;inset:0;background:#101216 url("assets/HomeHero3.jpg") right center/cover no-repeat;z-index:-2}
.hero__scrim{position:absolute;inset:0;z-index:-1;
  background:linear-gradient(100deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.62) 44%, rgba(0,0,0,.28) 74%, rgba(0,0,0,.10) 100%),
             linear-gradient(0deg, rgba(211,46,47,.20), rgba(211,46,47,.05))}
.hero__inner{position:relative;padding:54px 22px 60px;max-width:var(--maxw);margin:0 auto}
.hero__h1{font-weight:800;letter-spacing:-.01em;font-size:clamp(1.9rem,5vw,3rem);line-height:1.08;margin:0;
  text-shadow:0 2px 14px rgba(0,0,0,.5);max-width:18ch;color:#fff}
.hero__lede{margin:1.05rem 0 0;font-size:clamp(1.02rem,2.4vw,1.22rem);font-weight:400;line-height:1.5;
  max-width:46ch;color:#f1f1f1;text-shadow:0 1px 8px rgba(0,0,0,.45)}
.hero__inner .cbcBtn--hero{margin-top:1.6rem}
@media(max-width:600px){ .hero{min-height:300px} .hero__inner{padding:40px 20px 44px} .hero__bg{background-position:72% center} }

/* ============================================================================
   SECTION 4 - RED BAND
   ============================================================================ */
.redband{background:var(--red);color:#fff;text-align:center;font-weight:700;
  font-size:clamp(1.15rem,2.6vw,1.5rem);padding:20px 22px;line-height:1.25}

/* ============================================================================
   SHARED checklist (red check / caret bullets)
   ============================================================================ */
.checklist{list-style:none;margin:0;padding:0}
.checklist li{position:relative;padding:5px 0 5px 30px;color:var(--body);line-height:1.5}
.checklist li::before{content:"\2714";position:absolute;left:0;top:5px;color:var(--red);font-weight:700}
.checklist--caret li::before{content:"\27A4";font-size:.9em;top:6px}
.checklist li strong{color:var(--ink)}

/* ============================================================================
   SECTION 5 + 6 - CHOICE + ENROLLMENT (two glass info boxes)
   ============================================================================ */
.twoCol{padding:54px 0}
.twoCol__grid{display:grid;grid-template-columns:1fr 1fr;gap:26px}
@media(max-width:860px){ .twoCol__grid{grid-template-columns:1fr} }
.infoBox{padding:26px 26px 28px}
.infoBox__circle{width:120px;height:120px;border-radius:50%;background-size:cover;background-position:center;
  margin:0 0 14px;box-shadow:0 6px 20px rgba(15,20,30,.18);border:3px solid #fff}
.infoBox__circle--choice{background-image:url("assets/SmallGroupsLPChoicePic.jpg")}
.infoBox__circle--enroll{background-image:url("assets/LPCirclePic_LrgGroups.jpg")}
.infoBox__head{color:var(--ink);margin:0 0 .4em}
.infoBox__intro{margin:0 0 1em;color:var(--body)}
.infoBox__cols{display:grid;grid-template-columns:1fr 1fr;gap:0 22px;margin-bottom:1.1em}
@media(max-width:480px){ .infoBox__cols{grid-template-columns:1fr} }

/* ============================================================================
   SECTION 7 - COST CONTAINMENT (3 arrows + glass content)
   ============================================================================ */
.costContain{background:#15171a;padding:54px 0;color:#fff}
.costContain__wrap{display:grid;grid-template-columns:auto 1fr;gap:34px;align-items:center}
@media(max-width:860px){ .costContain__wrap{grid-template-columns:1fr} }
.costContain__gfx{display:flex;align-items:flex-end;justify-content:center;gap:6px;min-height:230px}
.ccArrow{width:78px;height:auto;align-self:flex-end;background-repeat:no-repeat;background-size:contain;background-position:bottom center;
  display:flex;align-items:flex-start;justify-content:center;padding-top:8px}
.ccArrow strong{color:#fff;font-size:.78rem;letter-spacing:.04em;writing-mode:vertical-rl;transform:rotate(180deg);
  padding-top:14px;text-shadow:0 1px 3px rgba(0,0,0,.5)}
.ccArrow--red{height:230px;background-image:url("assets/LG_CC_redArrow.png")}
.ccArrow--orange{height:200px;background-image:url("assets/LG_CC_orangeArrow.png")}
.ccArrow--green{height:260px;background-image:url("assets/LG_CC_greenArrow.png")}
.costContain__content{padding:26px 28px 28px}
.costContain__head{color:var(--ink);margin:0 0 .4em}
.costContain__p{margin:0 0 1em;color:var(--body)}
.costContain__list{list-style:none;margin:0 0 1.1em;padding:0}
.costContain__list li{position:relative;padding:5px 0 5px 24px;color:var(--body)}
.costContain__list li::before{content:"";position:absolute;left:0;top:13px;width:9px;height:9px;border-radius:50%;background:var(--red)}

/* ============================================================================
   SECTION 8 - DATA CONTROL & ADMINISTRATION
   ============================================================================ */
.dataAdmin{padding:54px 0;background:var(--soft)}
.dataAdmin__wrap{display:grid;grid-template-columns:minmax(0,46%) 1fr;gap:34px;align-items:center}
@media(max-width:860px){ .dataAdmin__wrap{grid-template-columns:1fr} }
.dataAdmin__pic img{width:100%;height:auto;border-radius:10px}
.dataAdmin__txt{padding:26px 28px 28px}
.dataAdmin__head{color:var(--ink);margin:0 0 .5em}
.dataAdmin__body{margin:0 0 1em;color:var(--body)}
.dataAdmin__body strong{color:var(--ink)}
.sup-tm{font-size:.5em;vertical-align:super}

/* ============================================================================
   SECTION 9 - V.I.P. SERVICE & SUPPORT (grey band + side photo)
   ============================================================================ */
.vip{position:relative;background:var(--gray);padding:54px 0;overflow:hidden}
/* full-bleed support photo on the right half of the band (behind the content's right edge) */
.vip__pic{position:absolute;top:0;right:0;bottom:0;width:42%;
  background:#cfd2d6 url("assets/LargeGroupsService.jpg") center/cover no-repeat}
.vip__inner{position:relative;z-index:1}
.vip__content{max-width:660px;padding:26px 28px 28px}
.vip__head{color:var(--ink);margin:0 0 .4em}
.vip__p{margin:0 0 1em;color:var(--body)}
.vip__list{list-style:none;margin:0;padding:0}
.vip__list li{position:relative;padding:7px 0 7px 24px;color:var(--body);line-height:1.5}
.vip__list li::before{content:"\2714";position:absolute;left:0;top:7px;color:var(--red);font-weight:700}
.vip__list li strong{color:var(--ink)}
@media(max-width:860px){ .vip__pic{display:none} .vip__content{max-width:none} }

/* ============================================================================
   SECTION 10 - SOLUTIONS THAT SCALE (background photo + glass checklist + demo CTA)
   ============================================================================ */
.scale{position:relative;padding:54px 0;background:#0e1014}
.scale__pic{position:absolute;inset:0;background:#0e1014 url("assets/scalabilitypic.jpg") center/cover no-repeat;opacity:.5;z-index:0}
.scale__wrap{position:relative;z-index:1}
.scale__content{padding:30px 30px 32px;max-width:840px}
.scale__head{color:var(--ink);margin:0 0 .7em}
.scale__sub{color:var(--ink);font-size:1.15rem;font-weight:700;margin:1em 0 .5em;line-height:1.25}
.scale__cta-lead{font-weight:700;color:var(--ink);font-size:1.1rem;margin:1.2em 0 .8em}
.scale__notation{margin:1.2em 0 0;font-size:.85rem;color:var(--body);line-height:1.5}
.scale__notation strong{color:var(--ink)}

/* ============================================================================
   SECTION 11 - INLINED DEMO FORM (B2 form-kit chrome, cbcins skin)
   ============================================================================ */
.form-section{background:var(--soft);padding:54px 0}
.form-section__wrap{max-width:760px;margin:0 auto}
/* the narrow card centers inside the full .wrap container so the band's container edges
   match the standard .wrap width (C1/C2 coherence); the card itself stays a readable 760px. */
.card{background:rgba(255,255,255,.92)}
.card__pad{padding:32px 30px}
@media(max-width:480px){ .card__pad{padding:24px 18px} }
.card__head{display:flex;justify-content:flex-end;margin-bottom:6px}
span.step{font-size:.82rem;font-weight:600;color:var(--muted);white-space:nowrap}
.card__title{color:var(--ink);font-size:clamp(1.3rem,3.6vw,1.6rem);line-height:1.14;margin:.1em 0 .6em}

.prog{display:flex;gap:8px;margin:0 0 22px}
.prog span{flex:1;height:6px;border-radius:999px;background:var(--gray)}
.prog span.on{background:var(--red)}

fieldset{border:0;margin:0;padding:0;min-width:0}
legend{padding:0;font-weight:600;color:var(--ink);font-size:1.08rem;margin-bottom:.85rem}
.lede-sm{color:var(--body);font-size:.95rem;line-height:1.5;margin:2px 0 14px;
  background:#fff;border-left:4px solid var(--red);border-radius:10px;padding:11px 14px}

.grid{display:grid;grid-template-columns:1fr 1fr;gap:15px 16px}
.full{grid-column:1/-1}
@media(max-width:560px){ .grid{grid-template-columns:1fr} }

.field{display:flex;flex-direction:column;gap:6px;min-width:0}
.field label{font-weight:500;color:var(--ink);font-size:.92rem}
.req{color:var(--red);font-weight:700}
.field input,.field textarea{font-family:inherit;font-size:16px;color:var(--ink);background:#fff;
  border:1px solid var(--line);border-radius:10px;padding:13px 14px;width:100%;min-height:50px;
  transition:border-color .12s,box-shadow .12s}
.field textarea{min-height:120px;resize:vertical}
.field input::placeholder{color:#9aa0a8}
.field input:focus,.field textarea:focus{outline:none;border-color:var(--red);
  box-shadow:0 0 0 3px rgba(211,46,47,.16)}
.field input[aria-invalid="true"]{border-color:var(--red);background:#fff7f7}

.who{display:flex;justify-content:space-between;align-items:center;gap:10px;background:#fff;
  border:1px solid var(--line);border-radius:10px;padding:11px 14px;margin-bottom:18px;font-size:.9rem}
.who b{color:var(--ink)} .who a{color:var(--red);font-weight:600;text-decoration:none}
.who a:hover{text-decoration:underline}

.errs{display:none;border:1px solid var(--red);background:#fff5f5;border-radius:10px;padding:13px 15px;margin-bottom:18px}
.errs.show{display:block} .errs h3{margin:0 0 6px;font-size:.95rem;color:var(--red)}
.errs ul{margin:0;padding-left:18px} .errs a{color:var(--red)}

.actions{display:flex;gap:12px;align-items:center;margin-top:26px;flex-wrap:wrap}
.btn{font-family:inherit;font-weight:700;font-size:1.02rem;border:0;border-radius:11px;padding:15px 24px;
  cursor:pointer;min-height:52px;display:inline-flex;align-items:center;gap:9px;justify-content:center;
  text-decoration:none;transition:background .12s,transform .04s}
.btn:active{transform:translateY(1px)}
.btn--primary{background:var(--red);color:#fff} .btn--primary:hover{background:var(--red-dark)}
.btn--send{background:var(--red);color:#fff} .btn--send:hover{background:var(--red-dark)}
.btn:focus-visible{outline:3px solid var(--red);outline-offset:2px}
.btn--back{background:none;color:var(--muted);font-weight:600;padding:15px 6px;min-height:52px}
.btn--back:hover{color:var(--ink)}
@media(max-width:480px){ .actions{flex-direction:column-reverse;align-items:stretch} .btn{width:100%} }
.step[hidden]{display:none}

.done{text-align:center;padding:22px 4px 8px}
.done__mark{width:66px;height:66px;border-radius:50%;background:rgba(211,46,47,.10);color:var(--red);
  display:grid;place-items:center;margin:0 auto 16px;font-size:32px;font-weight:800}
.done h2{margin:0 0 .4em;color:var(--ink);font-weight:800;font-size:1.6rem}
.done p{font-size:1.05rem;max-width:46ch;margin:0 auto;line-height:1.55}

/* ============================================================================
   SECTION 12 - FOOTER (cbcins B1 footer chrome + this page's links/disclosures)
   ============================================================================ */
.footer{background:var(--black);color:#cfd2d6}
.footer a{color:#e6e8ea}
.footer a:hover{color:#fff}
.footer__top{display:grid;grid-template-columns:1fr auto;gap:30px;padding:34px 22px 26px}
@media(max-width:760px){ .footer__top{grid-template-columns:1fr} }
.footer__copy{margin:0 0 10px;font-size:.92rem;line-height:1.7;color:#e6e8ea}
.footer__copy .lightRed{color:var(--red)}
.footer__brandline{margin:0 0 16px;font-size:.85rem;color:#aeb2b7}
.footer__other{display:flex;gap:48px;flex-wrap:wrap}
.footer__other ul{list-style:none;margin:0;padding:0}
.footer__other li{font-size:.86rem;padding:3px 0}
.footer__cta{display:flex;flex-direction:column;gap:10px;align-items:flex-start}
.footer__email{display:inline-flex;align-items:center;background:var(--red);color:#fff !important;font-weight:700;
  padding:11px 18px;border-radius:10px;min-height:46px}
.footer__email span{color:#fff}
.footer__email:hover{background:var(--red-dark);color:#fff !important;text-decoration:none}
.footer__chatline{font-size:.86rem;color:#aeb2b7}
.footer__phone{font-size:.88rem;line-height:1.5}

.footerDisclaimer{background:#0c0d0f;color:#b6babf;padding:30px 0;font-size:.84rem;line-height:1.6}
.footerDisclaimer .wrap{max-width:var(--maxw)}
.lang__head{margin:0 0 14px} .lang__head strong{color:#e6e8ea;font-size:1.05rem}
.lang__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0 22px}
@media(max-width:860px){ .lang__grid{grid-template-columns:repeat(2,1fr)} }
@media(max-width:480px){ .lang__grid{grid-template-columns:1fr} }
.lang__col p{margin:0 0 8px}
.footerDisclaimer a{color:#9fc3ef}
.footerDisclaimer a:hover{color:#cfe0f7}
.darkblue{color:#9fc3ef;font-weight:600}
.lang__more[hidden]{display:none}
.lang__more{margin-top:14px}
.content_section{margin-top:18px}
.attn{margin:0 0 12px;color:#b6babf}
.attn__lead{color:#e6e8ea}
.moretext[hidden]{display:none}
.moreless-button{background:none;border:1px solid #3a3d42;color:#e6e8ea;font-family:inherit;font-weight:600;
  font-size:.88rem;padding:9px 16px;border-radius:10px;cursor:pointer;min-height:42px}
.moreless-button:hover{background:rgba(255,255,255,.06)}

/* a11y helper */
