:root {
  /* ---- Brand palette (refined) ---- */
  --navy-1: #0f1b30;
  --navy-2: #1d3a63;
  --teal: #217c9d;
  --emerald: #1f9d74;
  --lilac: #8b6fd1;
  --bg: #fbfcfe;
  --card: #ffffff;
  --fg: #182238;
  --muted: #5c6883;
  --border: #e4e9f1;
  --secondary: #eef3f9;
  --radius: 16px;
  --shadow-soft: 0 1px 2px rgba(15, 27, 48, .06), 0 14px 32px -16px rgba(15, 27, 48, .20);
  --shadow-lift: 0 24px 50px -20px rgba(15, 27, 48, .36);
  --gradient-brand: linear-gradient(120deg, var(--lilac) 0%, var(--teal) 48%, var(--emerald) 100%);
  --gradient-navy: linear-gradient(150deg, #0f1b30 0%, #22406e 100%);
  --font-display: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-sans: "Figtree", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -.02em; line-height: 1.15; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.125rem; font-weight: 600; }
p { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* Accessible focus ring across all interactive elements */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); }
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--gradient-brand); flex: none; }
.lead { color: var(--muted); margin-top: 16px; max-width: 60ch; }
.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.muted { color: var(--muted); }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--navy-2); color: #fff; box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--navy-1); box-shadow: var(--shadow-lift); }

.btn-outline { border-color: var(--border); background: #fff; color: var(--fg); }
.btn-outline:hover { background: var(--secondary); border-color: var(--teal); color: var(--teal); }

.btn-ghost-light { border-color: rgba(255,255,255,.32); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.5); }

.btn-light { background: #fff; color: var(--navy-2); box-shadow: var(--shadow-soft); }
.btn-light:hover { background: var(--navy-1); color: #fff; }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.topbar { background: var(--gradient-navy); color: #fff; font-size: .82rem; }
.topbar .container { display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; align-items: center; padding-top: 8px; padding-bottom: 8px; }
.topbar a { font-weight: 700; transition: opacity .18s ease; }
.topbar a:hover { opacity: .8; }
.topbar .hours { opacity: .85; }

.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.93); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.site-header.is-scrolled { box-shadow: var(--shadow-soft); }
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; }
.brand img { height: 46px; width: auto; aspect-ratio: 500 / 168; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a { padding: 9px 16px; border-radius: 999px; font-size: .93rem; font-weight: 500; color: #35405a; transition: background-color .2s, color .2s; }
.main-nav a:hover { background: var(--secondary); color: var(--navy-2); }
.main-nav a.active { background: var(--secondary); color: var(--navy-2); }
.main-nav .btn { margin-left: 8px; padding: 11px 22px; }
.main-nav a.btn-primary, .mobile-nav a.btn-primary { color: #fff; }
.main-nav a.btn-primary:hover, .mobile-nav a.btn-primary:hover { color: #fff; background: var(--navy-1); }
.nav-toggle { display: none; background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 9px 11px; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--fg); margin: 4px 0; border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { display: none; border-top: 1px solid var(--border); background: #fff; }
.mobile-nav a { display: block; padding: 12px 4px; font-weight: 500; border-bottom: 1px solid var(--border); }
.mobile-nav .btn { margin: 14px 0; }

/* ---------- Hero ---------- */
.hero { background: var(--gradient-navy); color: #fff; overflow: hidden; position: relative; }
.hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding-top: 48px; padding-bottom: 48px; position: relative; z-index: 1; }
.badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.1); padding: 7px 16px; border-radius: 999px; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hero h1 { margin-top: 20px; }
.hero p.hero-text { margin-top: 18px; max-width: 34rem; font-size: 1.06rem; opacity: .88; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.16); text-align: center; max-width: 32rem; }
.hero-stats .num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; }
.hero-stats .lbl { font-size: .8rem; opacity: .75; }

.hero-media { position: relative; }
.hero-media::before {
  content: ""; position: absolute; inset: -10% 4% auto -8%; height: 68%;
  background: var(--gradient-brand); filter: blur(64px); opacity: .38; z-index: 0; border-radius: 44% 56% 52% 48% / 46%;
}
.hero-media img { position: relative; z-index: 1; border-radius: 24px; border: 1px solid rgba(255,255,255,.16); box-shadow: var(--shadow-lift); object-fit: cover; width: 100%; aspect-ratio: 16/9; max-height: 380px; }
.hero-float { position: relative; z-index: 1; margin-top: 12px; border-radius: 18px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.12); backdrop-filter: blur(8px); padding: 13px 16px; }
.hero-float strong { display: block; font-size: .92rem; }
.hero-float span { font-size: .8rem; opacity: .82; }

.page-hero { background: var(--gradient-navy); color: #fff; padding: 68px 0; }
.page-hero .eyebrow { color: rgba(255,255,255,.8); }
.page-hero h1 { margin-top: 12px; max-width: 22ch; }
.page-hero p { margin-top: 16px; max-width: 62ch; opacity: .85; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow-soft); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; height: 100%; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: transparent; }
.card-body { padding: 24px; }
.card .media-wrap { overflow: hidden; }
.card img.card-media { width: 100%; height: 200px; object-fit: cover; transition: transform .5s ease; }
.card:hover img.card-media { transform: scale(1.06); }
.card p { color: var(--muted); font-size: .93rem; margin-top: 8px; }
.icon-box { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; background: var(--secondary); color: var(--teal); font-size: 1.25rem; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 600; font-size: .9rem; color: var(--teal); transition: gap .18s ease; }
.card-link:hover { text-decoration: underline; gap: 10px; }

.step { position: relative; background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 24px; box-shadow: var(--shadow-soft); height: 100%; transition: transform .25s ease, box-shadow .25s ease; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.step .num { font-family: var(--font-display); font-size: 2.3rem; font-weight: 800; background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Split rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; scroll-margin-top: 180px; }
.split + .split { margin-top: 84px; }
.split figure { position: relative; overflow: hidden; border-radius: 24px; border: 1px solid var(--border); box-shadow: var(--shadow-soft); aspect-ratio: 5 / 4; }
.split figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.split figure:hover img { transform: scale(1.05); }
.split.reverse figure { order: 2; }
.check-list { margin-top: 22px; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; font-size: .94rem; }
.check-list li::before { content: "✓"; color: var(--emerald); font-weight: 800; }

/* ---------- Testimonials ---------- */
.dark-band { background: var(--gradient-navy); color: #fff; padding: 76px 0; }
.quote { border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.1); border-radius: 20px; padding: 24px; height: 100%; transition: transform .25s ease, background-color .25s ease; }
.quote:hover { transform: translateY(-4px); background: rgba(255,255,255,.14); }
.stars { color: #ffc65c; letter-spacing: 2px; }
.quote blockquote { margin-top: 14px; font-size: .93rem; opacity: .92; }
.quote figcaption { margin-top: 16px; font-size: .9rem; font-weight: 700; }
.quote figcaption span { font-weight: 400; opacity: .7; }

/* ---------- FAQ (jQuery accordion) ---------- */
.faq-wrap { border: 1px solid var(--border); border-radius: 20px; background: var(--card); box-shadow: var(--shadow-soft); overflow: hidden; }
.faq-item + .faq-item { border-top: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; font: inherit; font-weight: 600; padding: 20px; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; transition: background-color .18s ease; }
.faq-q:hover { background: var(--secondary); }
.faq-q .sign { color: var(--teal); font-size: 1.4rem; line-height: 1; transition: transform .25s ease; flex: none; }
.faq-item.is-open .faq-q .sign { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 20px 20px; color: var(--muted); font-size: .94rem; }

/* ---------- CTA ---------- */
.cta { background: var(--gradient-brand); color: #fff; border-radius: 26px; padding: 44px; box-shadow: var(--shadow-lift); display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: center; }
.cta ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 20px; font-size: .9rem; }
.cta ul li::before { content: "✓"; margin-right: 8px; }
.cta .cta-actions { display: grid; gap: 12px; }

/* ---------- Forms ---------- */
.form-card { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 32px; box-shadow: var(--shadow-soft); scroll-margin-top: 130px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.field label { font-size: .88rem; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; margin-top: 6px; padding: 13px 16px; font: inherit; font-size: .93rem;
  border: 1px solid var(--border); border-radius: 12px; background: #fff; color: var(--fg); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(33,124,157,.16); }
.field.full { grid-column: 1 / -1; }
.field .error { display: none; color: #c0392b; font-size: .78rem; margin-top: 5px; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #c0392b; }
.field.has-error .error { display: block; }
.checkbox { display: flex; gap: 12px; align-items: flex-start; font-size: .88rem; color: var(--muted); }
.checkbox input { width: auto; margin-top: 4px; }
.form-success { display: none; margin-top: 22px; border: 1px solid rgba(31,157,116,.4); background: rgba(31,157,116,.1); border-radius: 12px; padding: 16px; font-size: .92rem; }

.contact-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 32px; }
.info-card { background: var(--gradient-navy); color: #fff; border-radius: 24px; padding: 28px; box-shadow: var(--shadow-soft); }
.info-card ul { margin-top: 18px; display: grid; gap: 14px; font-size: .93rem; }
.info-card ul a { transition: opacity .18s ease; }
.info-card ul a:hover { opacity: .8; }
.info-card .big { font-size: 1.2rem; font-weight: 700; }
.side-card { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 28px; box-shadow: var(--shadow-soft); margin-top: 22px; }

/* ---------- Legal ---------- */
.legal { max-width: 780px; }
.legal section { margin-top: 44px; scroll-margin-top: 130px; }
.legal section p { color: var(--muted); font-size: .94rem; margin-top: 12px; }
.legal a { color: var(--teal); text-decoration: underline; }

.def-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 22px; font-size: .9rem; }
.def-grid dt { font-weight: 700; }
.def-grid dd { color: var(--muted); margin-top: 4px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--gradient-navy); color: #fff; margin-top: 90px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.1fr; gap: 40px; padding-top: 56px; padding-bottom: 56px; }
.footer-grid h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; opacity: .7; }
.footer-grid ul { margin-top: 16px; display: grid; gap: 10px; font-size: .92rem; }
.footer-grid a { transition: opacity .18s ease; }
.footer-grid a:hover { opacity: .78; text-decoration: underline; }
.footer-logo { display: inline-block; background: #fff; padding: 10px 12px; border-radius: 12px; }
.footer-logo img { height: 38px; width: auto; aspect-ratio: 500 / 168; }
.footer-about { font-size: .9rem; opacity: .8; margin-top: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; opacity: .72; padding: 18px 0; }

/* ---------- Back to top ---------- */
#backToTop {
  position: fixed; right: 20px; bottom: 20px; z-index: 70; display: none;
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--navy-2); color: #fff; font-size: 1.1rem; box-shadow: var(--shadow-lift);
  transition: background-color .18s ease, transform .18s ease;
}
#backToTop:hover { background: var(--navy-1); transform: translateY(-3px); }

/* ---------- Scroll reveal (jQuery driven) ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .def-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .hero .container { grid-template-columns: 1fr; padding-top: 52px; padding-bottom: 52px; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse figure { order: 0; }
  .split figure { aspect-ratio: 16/10; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .def-grid { grid-template-columns: 1fr; }
  .cta { padding: 28px; }
  .cta ul { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; text-align: left; }
  .topbar .container { justify-content: center; text-align: center; }
  .form-card { padding: 22px; }
}

/* ---------- Icon system (replaces emoji) ---------- */
.icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.15em; flex: none; }
.icon-box .icon { width: 22px; height: 22px; vertical-align: middle; }
.badge .icon, .hero-float strong .icon { width: 14px; height: 14px; }
.topbar .icon { width: 13px; height: 13px; margin-right: 2px; }
.hero-actions .btn .icon, .cta-actions .btn .icon, .mobile-cta-bar .icon { width: 15px; height: 15px; }
.info-card .icon, .side-card .icon { width: 15px; height: 15px; }
.footer-grid .icon, .footer-about .icon { width: 14px; height: 14px; margin-right: 3px; }
.footer-grid li { display: flex; align-items: flex-start; gap: 8px; }
.footer-grid li .icon { margin-top: 3px; }
.footer-about .icon { margin-top: -2px; }
#backToTop .icon { width: 18px; height: 18px; }
.form-success .icon { width: 18px; height: 18px; margin-right: 4px; vertical-align: -0.25em; }
.stars .icon { width: 15px; height: 15px; color: #ffc65c; }
.card-link .icon { width: 14px; height: 14px; }
.btn .icon { flex: none; }

/* ---------- Utilities (replaces repeated inline styles) ---------- */
.mt-8 { margin-top: 8px; }
.mt-10 { margin-top: 10px; }
.mt-12 { margin-top: 12px; }
.mt-14 { margin-top: 14px; }
.mt-16 { margin-top: 16px; }
.mt-36 { margin-top: 36px; }
.mt-40 { margin-top: 40px; }
.text-sm { font-size: .93rem; }
.text-xs { font-size: .92rem; }
.op-8 { opacity: .8; }
.op-85 { opacity: .85; }
.op-92 { opacity: .92; }
.bg-secondary { background: var(--secondary); }
.max-w-cta { max-width: 34rem; }
.list-plain { list-style: none; padding-left: 0; }
.items-start { align-items: start; }
.fs-title { font-size: 1.35rem; }

/* ---------- Skip link (accessibility) ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--navy-2); color: #fff; padding: 12px 18px; border-radius: 10px;
  font-weight: 600; font-size: .9rem; transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Mobile nav backdrop ---------- */
.nav-backdrop {
  display: none; position: fixed; inset: 0; z-index: 55;
  background: rgba(15, 27, 48, .32); backdrop-filter: blur(2px);
}
.nav-backdrop.is-visible { display: block; }

/* ---------- Sticky mobile call bar ---------- */
.mobile-cta-bar { display: none; }
@media (max-width: 640px) {
  .mobile-cta-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 65;
    background: var(--border); box-shadow: 0 -8px 24px -8px rgba(15,27,48,.22);
  }
  .mobile-cta-bar a {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 10px; font-weight: 700; font-size: .9rem; background: #fff; color: var(--navy-2);
  }
  .mobile-cta-bar a.call { background: var(--navy-2); color: #fff; }
  /* keep the fixed bar from covering the last section or the back-to-top button */
  body { padding-bottom: 62px; }
  #backToTop { bottom: 78px; }
}

/* ---------- Quick nav pills (nos-assurances page) ---------- */
.quick-nav { position: sticky; top: 78px; z-index: 40; background: rgba(251,252,254,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.quick-nav .container { display: flex; gap: 8px; flex-wrap: wrap; padding: 14px 20px; }
.quick-nav a { padding: 8px 16px; border-radius: 999px; font-size: .85rem; font-weight: 600; background: var(--secondary); color: var(--navy-2); transition: background-color .18s ease, color .18s ease; white-space: nowrap; }
.quick-nav a:hover { background: var(--navy-2); color: #fff; }
.quick-nav a.is-current { background: var(--gradient-brand); color: #fff; }
@media (max-width: 640px) {
  .quick-nav .container { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 12px 16px; }
  .quick-nav a { flex: none; }
}

/* ---------- Category accent tint per insurance type ---------- */
.split figure { position: relative; }
.split figure::after { content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .3s ease; }
.split:hover figure::after { opacity: .08; }
.split[data-accent="auto"] figure::after,
.split[data-accent="auto"] .icon-box { background: var(--teal); }
.split[data-accent="sante"] figure::after,
.split[data-accent="sante"] .icon-box { background: var(--emerald); }
.split[data-accent="animaux"] figure::after,
.split[data-accent="animaux"] .icon-box { background: var(--lilac); }
.split[data-accent="pro"] figure::after,
.split[data-accent="pro"] .icon-box { background: var(--navy-2); }
.split[data-accent="habitation"] figure::after,
.split[data-accent="habitation"] .icon-box { background: var(--teal); }
.split[data-accent="prevoyance"] figure::after,
.split[data-accent="prevoyance"] .icon-box { background: var(--lilac); }
.split .icon-box { width: 46px; height: 46px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.25rem; color: #fff; margin-bottom: 14px; }

/* ---------- Card image overlay for cohesion with brand ---------- */
.card .media-wrap, .card { position: relative; }
.card img.card-media { filter: saturate(1.02); }

/* ---------- FAQ accordion a11y polish ---------- */
.faq-q[aria-expanded="true"] .sign { transform: rotate(45deg); }

/* ---------- Form live-region + input polish ---------- */
.field input[autocomplete], .field select, .field textarea { scroll-margin-top: 140px; }

/* ---------- Motion & accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}