/* =========================================================================
   AC Vida Segura — Landing (mobile first)
   Paleta general: branding AXA (azul #00008F / rojo #FF1721)
   Formulario:     branding del logo Vida Segura (verdes + dorado)
   Breakpoints:    base = móvil · 700px = tablet · 1000px = escritorio
   ========================================================================= */

:root {
  /* AXA */
  --axa-blue: #00008f;
  --axa-blue-700: #16169e;
  --axa-red: #ff1721;
  --axa-red-dark: #d90d16;
  --axa-mint: #99f0eb;
  --axa-sand: #f5f2ef;

  /* Vida Segura (logo) */
  --vs-green-dark: #00913c;
  --vs-green: #8cc63f;
  --vs-green-soft: #eef7e3;
  --vs-gold: #f9c000;
  --vs-gold-dark: #b98c00;
  --wa: #25d366;

  /* Neutros */
  --ink: #14142b;
  --ink-soft: #4a4a63;
  --muted: #6b6b80;
  --line: #e3e3ea;
  --bg: #ffffff;
  --bg-alt: #f6f7fb;

  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(20, 20, 43, .06), 0 4px 12px rgba(20, 20, 43, .05);
  --shadow-md: 0 10px 30px rgba(20, 20, 43, .10);

  --font: "Source Sans 3", "Source Sans Pro", -apple-system, BlinkMacSystemFont,
          "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --header-h: 60px;
  --gutter: 1.15rem;
  --maxw: 1120px;

  /* Alto de la barra fija inferior en móvil */
  --cta-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 8px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 145, 60, .15);
  /* Espacio para que la barra fija no tape el pie */
  padding-bottom: calc(var(--cta-h) + env(safe-area-inset-bottom, 0px));
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--axa-blue); }

h1, h2, h3 { line-height: 1.2; letter-spacing: -.02em; margin: 0 0 .5em; overflow-wrap: break-word; }
h1 { font-size: clamp(1.85rem, 7vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 5.2vw, 2.2rem); font-weight: 800; }
h3 { font-size: 1.05rem; font-weight: 700; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: 720px; }
.muted { color: var(--muted); }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--axa-blue); color: #fff;
  padding: .75rem 1.25rem; z-index: 100;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--vs-gold); outline-offset: 2px; border-radius: 4px; }

/* ------------------------------------------------------------------ botones */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  min-height: 48px; padding: .7rem 1.35rem;
  font-weight: 700; font-size: 1rem; text-decoration: none; cursor: pointer;
  border-radius: 999px; border: 2px solid transparent;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn-sm { min-height: 40px; padding: .45rem 1.05rem; font-size: .92rem; }
.btn-lg { min-height: 52px; font-size: 1.05rem; }

.btn-primary { background: var(--axa-blue); color: #fff; }
.btn-primary:hover { background: var(--axa-blue-700); }

.btn-red { background: var(--axa-red); color: #fff; }
.btn-red:hover { background: var(--axa-red-dark); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .6); }
.btn-outline-light:hover { background: rgba(255, 255, 255, .14); }

.btn-wa { background: var(--wa); color: #05331a; }

/* ------------------------------------------------------------------ header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: .75rem; height: var(--header-h); }

.brand { display: flex; align-items: center; gap: .55rem; text-decoration: none; color: inherit; min-width: 0; }
.brand img { width: 40px; height: auto; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }
.brand-text strong { font-size: 1rem; color: var(--vs-green-dark); }
.brand-text small {
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--vs-green); font-weight: 700; white-space: nowrap;
}

.site-nav { display: none; }
.header-cta { margin-left: auto; flex-shrink: 0; }

/* -------------------------------------------------- barra fija móvil (CTA) */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; gap: .6rem;
  padding: .6rem var(--gutter);
  padding-bottom: calc(.6rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform .25s ease;
}
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta .btn { flex: 1; min-height: 46px; font-size: .95rem; padding-inline: .5rem; }

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(150deg, #00006e 0%, var(--axa-blue) 55%, #2a2ab0 100%);
  padding: 2.6rem 0 3rem;
}
.hero::after {
  content: ""; position: absolute; right: -30%; bottom: -55%;
  width: 120vw; height: 120vw; max-width: 780px; max-height: 780px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(153, 240, 235, .22), rgba(255, 23, 33, .10) 45%, transparent 70%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }

.hero h1 { color: #fff; margin-bottom: .6rem; }
.hero h1 span { color: var(--axa-mint); }
.hero .lead { font-size: 1.05rem; color: rgba(255, 255, 255, .88); max-width: 34em; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .65rem; margin: 1.6rem 0 1.75rem; }
.hero-actions .btn { flex: 1 1 auto; min-width: 150px; }

.hero-badges { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.hero-badges li {
  font-size: .82rem; font-weight: 600; color: #fff;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px; padding: .3rem .8rem;
}

/* ------------------------------------------------------------------ secciones */
.section { padding: 2.75rem 0; }
.section-alt { background: var(--bg-alt); }
.section h2 { margin-bottom: .35rem; }
.section-sub { color: var(--muted); margin-bottom: 1.6rem; }
.section h2 + .faq { margin-top: 1.6rem; }

/* ------------------------------------------------------------------ formulario */
.form-section { background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%); }

.form-card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  border: 1px solid var(--line); border-top: 6px solid var(--vs-green-dark);
  overflow: hidden; max-width: 640px; margin-inline: auto;
}
.form-card-head {
  display: flex; align-items: center; gap: .9rem; padding: 1.1rem;
  background: linear-gradient(120deg, var(--vs-green-soft) 0%, #fdfbec 100%);
  border-bottom: 1px solid var(--line);
}
.form-card-head img { width: 82px; flex-shrink: 0; }
.form-card-title { margin: 0; font-weight: 800; font-size: 1.15rem; color: var(--vs-green-dark); }
.form-card-sub { margin: .1rem 0 0; font-size: .85rem; color: var(--vs-gold-dark); font-weight: 600; }

#lead-form { padding: 1.15rem; }

.fs { border: 0; padding: 0; margin: 0 0 1.5rem; }
.fs legend { font-weight: 800; font-size: 1.02rem; color: var(--vs-green-dark); padding: 0; margin-bottom: .3rem; }
.hint { font-size: .85rem; color: var(--muted); margin: 0 0 .7rem; }
.req { color: var(--axa-red); }
.opt { color: var(--muted); font-weight: 500; font-size: .85em; }

.field { margin-bottom: .95rem; }
.field:last-child { margin-bottom: 0; }
.field label { display: block; font-weight: 600; font-size: .93rem; margin-bottom: .3rem; }
.row-2 { display: grid; gap: .95rem; }

input[type="text"], input[type="email"], input[type="tel"], input[type="password"],
select, textarea {
  width: 100%; font-family: inherit;
  /* 16px evita que iOS haga zoom al enfocar el campo */
  font-size: 16px; color: var(--ink);
  min-height: 48px; padding: .65rem .8rem;
  border: 1.5px solid var(--line); border-radius: 10px; background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
textarea { min-height: 88px; resize: vertical; line-height: 1.5; }
select { appearance: none; -webkit-appearance: none; padding-right: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b6b80' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .8rem center; background-size: 16px;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--vs-green-dark);
  box-shadow: 0 0 0 3px rgba(140, 198, 63, .3);
}
input.invalid, select.invalid, textarea.invalid { border-color: var(--axa-red); }

/* preguntas del diagnostico */
.q { margin-bottom: 1.35rem; }
.q legend { color: var(--ink); font-size: 1.02rem; line-height: 1.35; margin-bottom: .6rem; }
.q-num {
  display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%;
  background: var(--vs-green-dark); color: #fff; font-size: .8rem; font-weight: 800;
  margin-right: .35rem; vertical-align: 1px;
}

.options { display: grid; gap: .45rem; }
.option {
  display: flex; align-items: center; gap: .75rem;
  min-height: 54px; padding: .55rem .8rem;
  border: 1.5px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease;
}
.option input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt-letter {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg-alt); color: var(--muted); font-weight: 800; font-size: .84rem;
  flex-shrink: 0; transition: background-color .15s ease, color .15s ease;
}
.opt-text { font-size: .97rem; font-weight: 600; color: var(--ink-soft); }

.option input:checked ~ .opt-letter { background: var(--vs-green-dark); color: #fff; }
.option input:checked ~ .opt-text { color: var(--ink); }
.option.is-checked { border-color: var(--vs-green-dark); background: var(--vs-green-soft); }
.option:has(input:checked) { border-color: var(--vs-green-dark); background: var(--vs-green-soft); }
.option:has(input:focus-visible) { outline: 3px solid var(--vs-gold); outline-offset: 2px; }
.option.invalid { border-color: var(--axa-red); }

/* chips de productos */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: .5rem 1rem; border-radius: 999px; font-size: .93rem; font-weight: 600;
  border: 1.5px solid var(--line); color: var(--ink-soft); cursor: pointer;
  background: #fff; transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.chip input:checked + span { background: var(--vs-green-dark); border-color: var(--vs-green-dark); color: #fff; }
.chip input:focus-visible + span { outline: 3px solid var(--vs-gold); outline-offset: 2px; }

/* bloque opcional plegable */
.mas {
  border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 0 1rem; margin-bottom: 1.4rem;
}
.mas > summary {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  min-height: 52px; padding: .5rem 0; cursor: pointer; list-style: none;
  font-weight: 700; font-size: .95rem; color: var(--ink-soft);
}
.mas > summary::-webkit-details-marker { display: none; }
.mas > summary::after {
  content: "+"; font-size: 1.5rem; font-weight: 400; line-height: 1; color: var(--vs-green-dark);
}
.mas[open] > summary { border-bottom: 1px solid var(--line); margin-bottom: 1rem; }
.mas[open] > summary::after { content: "\2212"; }
.mas > *:last-child { padding-bottom: 1rem; }

/* consentimiento */
.consent-block { background: var(--vs-green-soft); border-radius: var(--radius); padding: 1rem; margin-bottom: 1.2rem; }
.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; color: var(--ink-soft); cursor: pointer; padding: .35rem 0; }
.consent + .consent { margin-top: .25rem; }
.consent input {
  width: 22px; height: 22px; margin: .15rem 0 0; flex-shrink: 0;
  accent-color: var(--vs-green-dark);
}

.error { color: var(--axa-red); font-size: .85rem; font-weight: 600; margin: .35rem 0 0; }
.error:empty { display: none; }
.error-global { text-align: center; margin-bottom: .7rem; }

.btn-submit {
  width: 100%; min-height: 54px; background: var(--vs-green-dark); color: #fff;
  border: 0; border-radius: 999px; padding: .9rem 1.25rem;
  font-family: inherit; font-size: 1.05rem; font-weight: 800; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  transition: background-color .15s ease;
}
.btn-submit:hover:not(:disabled) { background: #007a32; }
.btn-submit:disabled { opacity: .7; cursor: progress; }
.spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, .4); border-top-color: #fff;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-foot { font-size: .8rem; color: var(--muted); text-align: center; margin: .85rem 0 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ------------------------------------------------------------------ faq */
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0 1rem; margin-bottom: .6rem;
}
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 56px; padding: .6rem 0; font-weight: 700; cursor: pointer; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--axa-red); font-size: 1.5rem; line-height: 1; font-weight: 400; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin: 0 0 1rem; color: var(--muted); font-size: .93rem; }

/* ------------------------------------------------------------------ footer */
.site-footer { background: #0b0b2e; color: rgba(255, 255, 255, .75); padding: 2.5rem 0 1.5rem; font-size: .92rem; }
.footer-grid { display: grid; gap: 1.75rem; padding-bottom: 1.75rem; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.footer-brand img { background: #fff; border-radius: 12px; padding: 8px 10px; margin-bottom: .7rem; }
.footer-agent { font-size: .84rem; line-height: 1.55; color: rgba(255, 255, 255, .8); }
.footer-agent span { color: rgba(255, 255, 255, .55); }
.footer-agent strong { color: rgba(255, 255, 255, .85); }
.site-footer h3 { color: #fff; font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: .7rem; }
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: .1rem; }
.footer-list a, .site-footer a { color: rgba(255, 255, 255, .8); text-decoration: none; display: inline-block; padding: .35rem 0; }
.footer-list a:hover, .site-footer a:hover { color: #fff; text-decoration: underline; }
.legal-note { padding-top: 1.4rem; font-size: .76rem; color: rgba(255, 255, 255, .5); line-height: 1.6; }
.copyright { margin: 1rem 0 0; }

/* ------------------------------------------------------------------ legales */
.legal-hero { background: var(--axa-blue); color: #fff; padding: 2.2rem 0 1.8rem; }
.legal-hero h1 { font-size: clamp(1.6rem, 5.5vw, 2.4rem); }
.legal-hero p { color: rgba(255, 255, 255, .8); margin: 0; font-size: .92rem; }
.legal-body { padding: 2.2rem 0 3rem; }
.legal-body h2 { font-size: 1.25rem; color: var(--axa-blue); margin-top: 2.2rem; }
.legal-body h3 { font-size: 1.02rem; margin-top: 1.5rem; }
.legal-body ul, .legal-body ol { padding-left: 1.2rem; color: var(--ink-soft); }
.legal-body li { margin-bottom: .5rem; }
.legal-body p { color: var(--ink-soft); }
.legal-toc {
  background: var(--bg-alt); border-left: 4px solid var(--vs-green);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 1.1rem 1.2rem; margin-bottom: 1.8rem;
}
.legal-toc ol { margin: .5rem 0 0; }
.legal-toc a { display: inline-block; padding: .2rem 0; }
.legal-meta { font-size: .86rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 1.2rem; margin-top: 2.2rem; }
.callout { background: var(--vs-green-soft); border-radius: var(--radius); padding: 1rem 1.15rem; font-size: .92rem; color: var(--ink-soft); }

/* ------------------------------------------------------------------ gracias */
.thanks { text-align: center; padding: 3rem 0; }
.thanks-icon {
  width: 78px; height: 78px; border-radius: 50%; display: grid; place-items: center;
  margin: 0 auto 1.3rem; background: var(--vs-green-soft); border: 3px solid var(--vs-green);
}
.thanks-icon svg { width: 38px; height: 38px; color: var(--vs-green-dark); }
.thanks h1 { color: var(--axa-blue); }
.thanks p { color: var(--ink-soft); }
.thanks-actions { display: flex; flex-direction: column; gap: .65rem; margin-top: 1.6rem; }

/* ------------------------------------------------------------------ admin */
.admin-body { background: var(--bg-alt); padding-bottom: 2rem; }
.admin-head { background: var(--axa-blue); color: #fff; padding: 1.1rem 0; }
.admin-head-inner { display: flex; align-items: center; justify-content: space-between; gap: .75rem; flex-wrap: wrap; }
.admin-head h1 { font-size: 1.2rem; margin: 0; }
.admin-stats { display: flex; gap: .7rem; flex-wrap: wrap; margin: 1.4rem 0; }
.stat { background: #fff; border-radius: var(--radius); padding: .8rem 1.1rem; box-shadow: var(--shadow-sm); flex: 1 1 130px; }
.stat b { display: block; font-size: 1.5rem; color: var(--axa-blue); line-height: 1.1; }
.stat span { font-size: .8rem; color: var(--muted); }
.admin-filters { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
.admin-filters input, .admin-filters select { flex: 1 1 180px; width: auto; }
.table-wrap { overflow-x: auto; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); -webkit-overflow-scrolling: touch; }
table.leads { width: 100%; border-collapse: collapse; font-size: .86rem; min-width: 940px; }
table.leads th, table.leads td { padding: .65rem .75rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
table.leads th { background: var(--bg-alt); font-size: .72rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.tag { display: inline-block; font-size: .72rem; font-weight: 700; padding: .15rem .5rem; border-radius: 999px; background: var(--vs-green-soft); color: var(--vs-green-dark); margin: 0 .25rem .25rem 0; }
.badge { display: inline-block; font-size: .72rem; font-weight: 700; padding: .2rem .55rem; border-radius: 999px; text-transform: uppercase; }
.badge.nuevo { background: #e6f0ff; color: #0044cc; }
.badge.contactado { background: #fff4d6; color: #8a6100; }
.badge.cotizado { background: #e8f6ec; color: #1a7f37; }
.badge.cerrado { background: var(--vs-green-dark); color: #fff; }
.badge.descartado { background: #f0f0f4; color: var(--muted); }
.badge.verde { background: var(--vs-green-dark); color: #fff; }
.badge.ambar { background: #fff4d6; color: #8a6100; }
.badge.rojo { background: #ffe5e6; color: #c1121a; }
.diag ol { margin: .35rem 0 0; padding-left: 1.1rem; font-size: .82rem; color: var(--muted); }
.diag li { margin-bottom: .1rem; }
.diag b { color: var(--ink); font-weight: 600; }

/* acceso al panel */
.login-wrap {
  width: 100%; max-width: 460px; margin-inline: auto;
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 2rem 1rem;
}
.login-card { width: 100%; max-width: 100%; }
.login-card form { padding: 1.5rem; }
.login-card .btn-submit { margin-top: .5rem; }

.admin-acciones { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.admin-acciones form { margin: 0; }

/* eliminar prospecto */
.aviso-borrado {
  background: #ffe5e6; border-left: 4px solid var(--axa-red); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.25rem; margin: 1.75rem 0; font-size: .93rem; color: #7a1015;
}
.aviso-borrado p:last-child { margin-bottom: 0; }
.acciones-borrado { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }
.acciones-borrado form { margin: 0; }
.diag-lista { margin: .4rem 0 0; padding-left: 1.1rem; font-size: .86rem; color: var(--muted); }
a.borrar { color: var(--axa-red); font-weight: 700; font-size: .82rem; text-decoration: none; white-space: nowrap; }
a.borrar:hover { text-decoration: underline; }

/* =========================================================================
   TABLET  (≥ 700px)
   ========================================================================= */
@media (min-width: 700px) {
  :root { --gutter: 1.75rem; }
  body { font-size: 17px; padding-bottom: 0; }

  .mobile-cta { display: none; }

  .section { padding: 3.5rem 0; }
  .hero { padding: 3.5rem 0 4rem; }
  .hero-actions .btn { flex: 0 0 auto; }

  .row-2 { grid-template-columns: 1fr 1fr; }
  #lead-form, .form-card-head { padding: 1.6rem; }
  .form-card-head img { width: 96px; }

  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; gap: 2rem; }

  .thanks-actions { flex-direction: row; justify-content: center; }
  .legal-body { padding: 3rem 0 4rem; }
}

/* =========================================================================
   ESCRITORIO  (≥ 1000px)
   ========================================================================= */
@media (min-width: 1000px) {
  :root { --header-h: 72px; }

  .brand img { width: 46px; }
  .brand-text strong { font-size: 1.08rem; }
  .brand-text small { font-size: .66rem; }

  .site-nav { display: flex; gap: 1.6rem; margin-left: auto; }
  .site-nav a {
    text-decoration: none; color: var(--ink-soft); font-weight: 600; font-size: .95rem;
    padding: .25rem 0; border-bottom: 2px solid transparent;
  }
  .site-nav a:hover { color: var(--axa-blue); border-color: var(--axa-red); }
  .header-cta { margin-left: 1.25rem; }

  .hero { padding: 4.5rem 0 5rem; }
  .hero .lead { font-size: 1.15rem; }
  .section { padding: 4.5rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

@media print {
  .site-header, .site-footer, .mobile-cta, .hero-actions, .btn { display: none !important; }
  body { font-size: 12pt; color: #000; padding-bottom: 0; }
}
