/* ============================================================================
   Brampton Dentists — marketing site styles
   Brand blue + Apple-style "liquid glass" buttons, fully responsive.
   ========================================================================== */
:root {
  --blue: #1E50C8;
  --blue-700: #163C97;
  --blue-50: #EAF0FC;
  --ink: #0F1B33;
  --ink-2: #3A4A66;
  --muted: #6B7790;
  --line: #E7ECF5;
  --bg: #FFFFFF;
  --bg-soft: #F6F8FE;
  --teal: #0E9E8E;
  --amber: #E08A3C;
  --purple: #7B57D6;
  --green: #2E9E5B;
  --pink: #D6557E;
  --radius: 18px;
  --shadow: 0 18px 40px -18px rgba(20, 40, 90, 0.28);
  --maxw: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
section { padding: 78px 0; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); }
h2.section-title { font-size: clamp(26px, 4vw, 38px); font-weight: 800; }
.eyebrow { color: var(--blue); font-weight: 800; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.lead { color: var(--ink-2); font-size: 18px; max-width: 640px; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---- Buttons (liquid glass + pill) ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 800; font-size: 15px; padding: 14px 24px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #2D63E0 0%, var(--blue) 60%, var(--blue-700) 100%);
  box-shadow: 0 12px 26px -10px rgba(30, 80, 200, 0.6);
  border-color: rgba(255,255,255,0.25);
}
.btn-primary:hover { box-shadow: 0 16px 32px -10px rgba(30, 80, 200, 0.7); }
.btn-glass {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 24px -14px rgba(20, 40, 90, 0.5);
}
.btn-glass-dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn-outline { color: var(--blue); background: #fff; border: 1.5px solid var(--blue); }
.btn-outline:hover { background: var(--blue-50); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn .i { width: 18px; height: 18px; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.8);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 18px; color: var(--ink); }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.brand small { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; }
/* Tubelight pill nav — frosted pill with a glowing "lamp" that glides to the
   active/hovered tab. Vanilla port of the React/framer-motion tubelight-navbar:
   the .tl-pill-bg + .tl-lamp are moved/sized by nav.js; the glow is pure CSS. */
.tubelight-nav {
  position: relative; display: flex; align-items: center; gap: 2px; padding: 5px;
  border-radius: 999px; background: rgba(255,255,255,0.55);
  border: 1px solid rgba(30,80,200,0.14);
  -webkit-backdrop-filter: blur(14px) saturate(160%); backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 10px 30px rgba(22,60,151,0.12), inset 0 1px 0 rgba(255,255,255,0.7);
}
.tl-item {
  position: relative; z-index: 2; font-family: var(--font-sans); font-weight: 700;
  font-size: 14.5px; line-height: 1; color: var(--ink-2); padding: 10px 18px;
  border-radius: 999px; white-space: nowrap; transition: color .25s ease;
}
.tl-item:hover, .tl-item.active { color: var(--blue); }
/* frosted highlight that slides behind the active/hovered tab */
.tl-pill-bg {
  position: absolute; top: 5px; bottom: 5px; left: 0; width: 0; z-index: 1;
  border-radius: 999px; background: rgba(30,80,200,0.08); pointer-events: none;
  transform: translateX(0);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), width .4s cubic-bezier(.34,1.56,.64,1);
}
/* the glowing tube light above the active/hovered tab */
.tl-lamp {
  position: absolute; top: -5px; left: 0; width: 0; z-index: 3; opacity: 0;
  display: flex; justify-content: center; pointer-events: none; transform: translateX(0);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), width .4s cubic-bezier(.34,1.56,.64,1), opacity .25s ease;
}
.tubelight-nav.lit .tl-lamp { opacity: 1; }
.tl-lamp .bar {
  position: relative; width: 36px; height: 4px; background: var(--blue);
  border-radius: 0 0 8px 8px; box-shadow: 0 1px 8px rgba(30,80,200,0.55);
}
.tl-lamp .bar i { position: absolute; display: block; border-radius: 999px; background: rgba(30,80,200,0.22); }
.tl-lamp .bar .g1 { width: 56px; height: 28px; filter: blur(14px); top: -10px; left: -10px; }
.tl-lamp .bar .g2 { width: 36px; height: 24px; filter: blur(12px); top: -6px; left: 0; }
.tl-lamp .bar .g3 { width: 18px; height: 16px; filter: blur(7px); top: -2px; left: 9px; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .2s; }

/* ---- Hero ---- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1200px 500px at 80% -10%, #2D63E0 0%, var(--blue) 45%, var(--blue-700) 100%);
  color: #fff; padding: 86px 0 96px;
}
.hero::after {
  content: ''; position: absolute; right: -120px; top: -120px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 60%); border-radius: 50%;
}
.hero .eyebrow { color: #Bfd2ff; }
.hero h1 { font-size: clamp(34px, 6vw, 58px); font-weight: 900; color: #fff; margin: 14px 0 16px; max-width: 720px; }
.hero p { font-size: clamp(16px, 2.4vw, 20px); color: rgba(255,255,255,0.9); max-width: 580px; margin-bottom: 28px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px; }
.hero-badges span { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.92); font-size: 14px; font-weight: 600; }
.hero-badges span::before { content: '✓'; display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,0.2); font-size: 12px; }

/* ---- Trust strip ---- */
.trust { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.trust .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding-top: 26px; padding-bottom: 26px; }
.trust .stat { text-align: center; }
.trust .stat b { display: block; font-size: 26px; font-weight: 900; color: var(--blue); }
.trust .stat span { font-size: 13px; color: var(--muted); font-weight: 600; }

/* ---- Cards / grids ---- */
.grid { display: grid; gap: 18px; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
  box-shadow: 0 10px 30px -22px rgba(20,40,90,.35); transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.svc-icon { width: 88px; height: 88px; border-radius: 50%; display: grid; place-items: center; font-size: 26px; margin-bottom: 16px; }
.svc-icon img { width: 100%; height: 100%; object-fit: contain; display: block; border-radius: 50%; filter: drop-shadow(0 6px 14px rgba(15, 27, 51, 0.18)); }
.card h3 { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.card p { color: var(--ink-2); font-size: 14.5px; }
.card ul { list-style: none; margin-top: 12px; }
.card ul li { position: relative; padding-left: 20px; color: var(--ink-2); font-size: 14.5px; margin-bottom: 6px; }
.card ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.tag { display: inline-block; font-size: 11px; font-weight: 800; color: var(--blue); background: var(--blue-50); padding: 3px 9px; border-radius: 999px; margin-top: 10px; }

/* tints */
.t-blue { background: var(--blue-50); } .c-blue { color: var(--blue); }
.t-teal { background: #E6F6F3; } .c-teal { color: var(--teal); }
.t-amber { background: #FDF0E7; } .c-amber { color: var(--amber); }
.t-purple { background: #F1ECFB; } .c-purple { color: var(--purple); }
.t-green { background: #E9F7EE; } .c-green { color: var(--green); }
.t-pink { background: #FCECF2; } .c-pink { color: var(--pink); }

/* ---- Section header ---- */
.sec-head { max-width: 640px; margin-bottom: 36px; }
.sec-head.center { margin-left: auto; margin-right: auto; }

/* ---- Clinic cards ---- */
.clinic { display: flex; flex-direction: column; }
.clinic .city { font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.clinic h3 { margin: 4px 0 8px; }
.clinic .addr { color: var(--ink-2); font-size: 14.5px; }
.clinic .hours { margin: 14px 0; border-top: 1px solid var(--line); padding-top: 12px; }
.clinic .hours .row { display: flex; justify-content: space-between; font-size: 13.5px; padding: 3px 0; }
.clinic .hours .row span:first-child { color: var(--muted); }
.clinic .actions { display: flex; gap: 8px; margin-top: auto; padding-top: 8px; flex-wrap: wrap; }
.clinic .actions .btn { flex: 1; min-width: 120px; }

/* ---- App band ---- */
.appband {
  background: radial-gradient(900px 400px at 10% 120%, #2D63E0 0%, var(--blue) 50%, var(--blue-700) 100%);
  color: #fff; border-radius: 28px; padding: 48px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; align-items: center;
}
.appband h2 { color: #fff; font-size: clamp(24px, 3.4vw, 34px); font-weight: 900; }
.appband p { color: rgba(255,255,255,0.9); margin: 12px 0 22px; }
.store-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 14px;
  background: rgba(0,0,0,0.28); border: 1px solid rgba(255,255,255,0.25); color: #fff;
}
.store-btn .big { font-size: 16px; font-weight: 800; line-height: 1; }
.store-btn .small { font-size: 11px; opacity: .85; }
.appband .phone-mock { justify-self: center; width: 230px; height: 470px; border-radius: 38px; background: #050914; border: 6px solid rgba(255,255,255,0.85); box-shadow: 0 24px 60px rgba(0,0,0,0.35); overflow: hidden; display: grid; place-items: center; }
.appband .phone-mock img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 0; display: block; }

/* ---- CTA band ---- */
.cta-band { background: var(--bg-soft); }
.cta-card { text-align: center; padding: 56px 24px; }
.cta-card h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 900; }
.cta-card p { color: var(--ink-2); font-size: 18px; margin: 12px auto 26px; max-width: 560px; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- Page hero (inner pages) ---- */
.page-hero { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: 56px 0; }
.page-hero h1 { font-size: clamp(30px, 5vw, 46px); font-weight: 900; }
.page-hero p { color: var(--ink-2); font-size: 18px; max-width: 620px; margin-top: 10px; }

/* ---- Feature rows ---- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.feature .panel { background: linear-gradient(160deg, var(--blue-50), #fff); border: 1px solid var(--line); border-radius: 24px; min-height: 280px; display: grid; place-items: center; font-size: 96px; }
.checklist { list-style: none; margin-top: 18px; }
.checklist li { position: relative; padding-left: 32px; margin-bottom: 14px; color: var(--ink-2); }
.checklist li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 800; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-50); color: var(--blue); display: grid; place-items: center; font-size: 20px; flex-shrink: 0; }
.contact-item b { display: block; }
.contact-item a { color: var(--blue); font-weight: 700; }

/* ---- Footer ---- */
.site-footer { background: #0E1A33; color: #C7D2E8; padding: 56px 0 28px; }
.site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.site-footer h4 { color: #fff; font-size: 14px; margin-bottom: 14px; letter-spacing: .04em; text-transform: uppercase; }
.site-footer a { display: block; color: #AEBCD8; font-size: 14px; margin-bottom: 9px; }
.site-footer a:hover { color: #fff; }
.site-footer .brand { color: #fff; margin-bottom: 12px; }
.site-footer .brand small { color: #8294b8; }
.site-footer p { font-size: 14px; color: #8294b8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 36px; padding-top: 22px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: #8294b8; }

/* ---- Legal pages ---- */
.legal { max-width: 760px; }
.legal h2 { font-size: 22px; margin: 30px 0 10px; }
.legal p, .legal li { color: var(--ink-2); margin-bottom: 10px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .cols-3 { grid-template-columns: 1fr 1fr; }
  .feature, .appband, .contact-grid { grid-template-columns: 1fr; }
  .appband .phone-mock { display: none; }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
  .trust .wrap { grid-template-columns: 1fr 1fr; gap: 22px; }
}
@media (max-width: 680px) {
  .tubelight-nav, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }
  /* On mobile the pill collapses into a tap-to-open dropdown (no lamp/glow). */
  .tubelight-nav.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: 72px; left: 0; right: 0; background: #fff; padding: 12px 16px;
    border: none; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    border-radius: 0; -webkit-backdrop-filter: none; backdrop-filter: none;
  }
  .tubelight-nav.open .tl-item { padding: 13px 12px; font-size: 16px; }
  .tubelight-nav.open .tl-pill-bg, .tubelight-nav.open .tl-lamp { display: none; }
  .cols-3, .cols-2, .contact-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .appband { padding: 32px; }
  .site-footer .cols { grid-template-columns: 1fr; }
}

/* ============================================================================
   FLAGSHIP UPGRADE — premium type, glass cards, scroll reveals, hero visual,
   stat counters, reviews, before/after slider, team, sticky CTA.
   ========================================================================== */
:root { --font-display: 'Fraunces', Georgia, serif; --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }
body { font-family: var(--font-sans); }
h1, h2, h3, .brand span { font-family: var(--font-display); letter-spacing: -0.015em; }
.btn, .eyebrow, .tl-item, .tag, .city, .store-btn .big { font-family: var(--font-sans); }
.hero h1 { font-weight: 600; font-optical-sizing: auto; }
h2.section-title { font-weight: 600; }

/* Scroll reveal (only hidden when JS is active, so no-JS still shows content) */
.js .reveal { opacity: 0; transform: translateY(32px) scale(0.985); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.js .reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Hero — split layout with a floating glass credibility card */
.hero { padding-bottom: 120px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
.hero-visual { position: relative; min-height: 360px; }
.glass-panel {
  background: rgba(255,255,255,0.12); -webkit-backdrop-filter: blur(18px) saturate(150%); backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.30); border-radius: 26px; padding: 26px; color: #fff;
  box-shadow: 0 30px 60px -28px rgba(8,20,55,0.6);
}
.rating-card { display: flex; align-items: center; gap: 16px; }
.rating-card .num { font-family: var(--font-display); font-size: 46px; font-weight: 600; line-height: 1; }
.rating-card .stars { color: #FFCB5B; font-size: 16px; letter-spacing: 2px; }
.rating-card .meta { font-size: 13px; opacity: .9; }
.float-card { position: absolute; }
.float-1 { top: 0; left: 0; right: 40px; }
.float-2 { bottom: -28px; right: 0; left: 90px; display: flex; align-items: center; gap: 14px; }
.float-2 .ic { width: 46px; height: 46px; border-radius: 14px; background: rgba(255,255,255,0.2); display: grid; place-items: center; font-size: 22px; }
.float-2 b { font-family: var(--font-display); font-size: 18px; }
.float-2 span { font-size: 13px; opacity: .9; display: block; }

/* Counters */
.counters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.counter { text-align: center; padding: 24px 12px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 10px 30px -22px rgba(20,40,90,.3); }
.counter b { display: block; font-family: var(--font-display); font-size: clamp(30px, 5vw, 44px); font-weight: 600; color: var(--blue); line-height: 1; }
.counter span { font-size: 13.5px; color: var(--muted); font-weight: 600; margin-top: 6px; display: block; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 26px; box-shadow: 0 14px 40px -28px rgba(20,40,90,.4); display: flex; flex-direction: column; }
.review-card .stars { color: #FFB400; letter-spacing: 2px; margin-bottom: 12px; }
.review-card p { color: var(--ink-2); font-size: 15.5px; line-height: 1.65; }
.review-card .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review-card .av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; font-family: var(--font-sans); }
.review-card .who b { font-size: 14.5px; }
.review-card .who span { font-size: 12.5px; color: var(--muted); display: block; }
.google-badge { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-weight: 700; font-size: 14px; box-shadow: 0 8px 20px -14px rgba(20,40,90,.4); }
.google-badge .g { font-weight: 800; }
.google-badge .g b:nth-child(1){color:#4285F4}

/* Before / after slider */
.ba { max-width: 760px; margin: 0 auto; }
.ba-wrap { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 16/10; border: 1px solid var(--line); box-shadow: var(--shadow); user-select: none; }
.ba-img { position: absolute; inset: 0; display: grid; place-items: center; font-size: 80px; }
.ba-before { background: linear-gradient(135deg, #d9c7a8, #c8b08a); }
.ba-after { background: linear-gradient(135deg, #eaf3ff, #cfe2ff); clip-path: inset(0 0 0 50%); }
.ba-label { position: absolute; bottom: 14px; padding: 5px 12px; border-radius: 999px; font-size: 12px; font-weight: 800; color: #fff; background: rgba(15,27,51,.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.ba-label.l { left: 14px; } .ba-label.r { right: 14px; }
.ba-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(0,0,0,.05); pointer-events: none; }
.ba-knob { position: absolute; top: 50%; left: 50%; width: 44px; height: 44px; margin: -22px; border-radius: 50%; background: #fff; box-shadow: 0 6px 18px rgba(0,0,0,.25); display: grid; place-items: center; color: var(--blue); font-weight: 900; pointer-events: none; }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.member { text-align: center; }
.member .av { width: 110px; height: 110px; border-radius: 28px; margin: 0 auto 14px; display: grid; place-items: center; font-size: 44px; color: #fff; box-shadow: 0 16px 36px -18px rgba(20,40,90,.5); }
.member b { font-size: 16px; display: block; }
.member span { font-size: 13px; color: var(--muted); }

/* Insurance / financing band */
.logo-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 8px; }
.logo-chip { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px 18px; font-weight: 700; color: var(--ink-2); box-shadow: 0 8px 20px -16px rgba(20,40,90,.4); }

/* Sticky mobile CTA */
.sticky-cta { display: none; }
@media (max-width: 680px) {
  .sticky-cta { display: flex; position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 60; gap: 10px; }
  .sticky-cta .btn { flex: 1; box-shadow: 0 14px 30px -10px rgba(30,80,200,.6); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 280px; margin-top: 20px; }
  .counters { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
