/* ============================================
   ALAIA Patrimoine — Prevoyance TNS Bordeaux
   Design System : Navy / Creme / Or
   Typo : Fraunces (titres) + Inter (corps)
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0B3D2E;
  --navy-dark: #082B20;
  --cream: #F5F7F3;
  --cream-alt: #E8EDE4;
  --gold: #2E8B6E;
  --ink: #0C1B14;
  --text-soft: #3D5E4F;
  --white: #FFFFFF;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(11,61,46,.08);
  --shadow-hover: 0 6px 24px rgba(11,61,46,.14);
  --transition: .25s ease;
  --max-width: 1140px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: 'Fraunces', serif; font-weight: 600; line-height: 1.25; color: var(--navy); }

h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 20px; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 16px; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }

p { margin-bottom: 16px; color: var(--text-soft); }
p:last-child { margin-bottom: 0; }

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.italic { font-style: italic; font-family: 'Fraunces', serif; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .3px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #24725A;
  border-color: #24725A;
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,247,243,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11,61,46,.06);
  padding: 0 24px;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: 24px;
}
.header-logo img { height: 54px; width: auto; }
.header-logo .city-badge {
  font-family: 'Fraunces', serif;
  font-size: .68rem;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  letter-spacing: .5px;
  border-left: 1px solid rgba(11,61,46,.15);
  padding-left: 10px;
  line-height: 1.2;
  white-space: nowrap;
}

.header-nav { display: flex; align-items: center; gap: 6px; }

.header-nav a {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-soft);
  padding: 6px 10px;
  border-radius: 4px;
  transition: all var(--transition);
  white-space: nowrap;
}
.header-nav a:hover { color: var(--navy); background: rgba(11,61,46,.04); }

.header-phone {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: .95rem;
  color: var(--navy);
  white-space: nowrap;
  margin-left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-phone svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; }

/* Burger */
.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: var(--transition);
}

/* --- Hero Accueil --- */
.hero {
  position: relative;
  padding: 72px 24px 64px;
  background: var(--navy-dark);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,43,32,.88) 0%, rgba(11,61,46,.78) 50%, rgba(8,43,32,.85) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 40px;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-content { text-align: left; }

.hero-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero h1 { color: var(--cream); }
.hero h1 .highlight {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(245,247,243,.82);
  max-width: 50ch;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn-primary {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}
.hero .btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
}
.hero .btn-outline {
  color: var(--cream);
  border-color: rgba(245,247,243,.4);
}
.hero .btn-outline:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}

/* Hero form */
.hero-form {
  background: rgba(245,247,243,.97);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  max-width: 380px;
  margin-left: auto;
}
.hero-form h2 {
  font-size: 1.05rem;
  margin-bottom: 2px;
  color: var(--navy);
}
.hero-form .form-note-top {
  font-size: .78rem;
  color: var(--text-soft);
  margin-bottom: 16px;
}
.hero-form .form-group { margin-bottom: 14px; }
.hero-form .form-group legend,
.hero-form .form-group label.form-label {
  font-size: .85rem;
  margin-bottom: 6px;
}
.hero-form .form-options { gap: 6px; }
.hero-form .form-options span {
  padding: 6px 11px;
  font-size: .78rem;
}
.hero-form .form-input {
  padding: 8px 12px;
  font-size: .85rem;
}
.hero-form .form-fields { gap: 10px; }
.hero-form .form-submit {
  margin-top: 4px;
  padding: 14px 24px;
  font-size: .95rem;
  font-weight: 600;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  letter-spacing: .3px;
  box-shadow: 0 4px 16px rgba(11,61,46,.25);
}
.hero-form .form-note { font-size: .7rem; margin-top: 10px; }
.hero-form .form-note a { color: var(--navy); }

/* --- Social Proof (inside hero) --- */
.proof-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(245,247,243,.12);
}

.proof-stat { text-align: left; }

.proof-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 4px;
}

.proof-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245,247,243,.4);
}

.proof-press {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.proof-press-label {
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245,247,243,.3);
  margin-right: 4px;
}

.proof-press-name {
  font-family: 'Fraunces', serif;
  font-size: .95rem;
  font-weight: 600;
  color: rgba(245,247,243,.45);
}

@media (max-width: 640px) {
  .proof-stats { gap: 24px; }
  .proof-number { font-size: 1.4rem; }
  .proof-press { gap: 16px; }
}

/* --- Hero Pages thematiques --- */
.hero-page {
  padding: 40px 24px 48px;
  text-align: center;
  background: var(--cream);
}

.hero-page h1 .highlight {
  color: var(--gold);
  font-style: italic;
}

.hero-page .hero-subtitle {
  font-size: 1.08rem;
  margin: 12px auto 28px;
  max-width: 680px;
  color: var(--navy);
  line-height: 1.7;
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 16px 24px 0;
  font-size: .82rem;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 8px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.breadcrumb li + li::before {
  content: ">";
  margin-right: 8px;
  color: var(--text-soft);
}
.breadcrumb a { color: var(--text-soft); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .current { color: var(--navy); font-weight: 500; }

/* --- Sections --- */
.section { padding: 64px 24px; }
.section-alt { background: var(--white); }
.section-cream { background: var(--cream-alt); }

.section-dark {
  background: var(--navy);
  color: var(--cream);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream); }
.section-dark p { color: rgba(245,247,243,.8); }
.section-dark a { color: var(--gold); }
.section-dark a:hover { color: #3AAF8A; }

/* Liens visibles dans le contenu */
.section p a, .section li a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(46,139,110,.35);
  text-underline-offset: 3px;
  transition: text-decoration-color .15s;
}
.section p a:hover, .section li a:hover {
  text-decoration-color: var(--gold);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-header .label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* --- Cards --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.card {
  background: var(--white);
  border: 1px solid rgba(11,61,46,.06);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.card:hover::before { transform: scaleX(1); }

.card-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.card h3 a { color: var(--navy); }
.card h3 a:hover { color: var(--gold); }

.card p { font-size: .9rem; line-height: 1.6; }

/* --- Etapes --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  counter-reset: step;
}

.step {
  counter-increment: step;
  padding: 24px;
  position: relative;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  opacity: .3;
  display: block;
  margin-bottom: 12px;
}

.step h3 { color: var(--navy); }

/* --- Avantages / Inconvenients --- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.pros-cons ul {
  list-style: none;
  padding: 0;
}
.pros-cons li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-soft);
  font-size: .95rem;
}
.pros li::before {
  content: "+";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #2a8f5a;
  font-size: 1.1rem;
}
.cons li::before {
  content: "-";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #c0392b;
  font-size: 1.1rem;
}

/* --- FAQ --- */
.faq { max-width: 780px; margin: 0 auto; }

.faq details {
  border-bottom: 1px solid rgba(11,61,46,.08);
}

.faq summary {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  padding: 20px 40px 20px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::marker { display: none; }

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq details[open] summary::after {
  content: "-";
}

.faq details .faq-answer {
  padding: 0 0 20px;
  color: var(--text-soft);
  font-size: .95rem;
  line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: 56px 24px;
  background: var(--cream-alt);
}
.cta-section h2 { margin-bottom: 12px; }
.cta-section p { max-width: 50ch; margin: 0 auto 28px; }

/* --- Bloc mots-cles (pattern SEO) --- */
.seo-links {
  padding: 40px 24px;
  background: var(--white);
  border-top: 1px solid rgba(11,61,46,.06);
}

.seo-links .container { max-width: 900px; }

.seo-links h3 {
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  color: var(--text-soft);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.seo-links p {
  font-size: .88rem;
  line-height: 2;
  color: var(--text-soft);
}

.seo-links a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.seo-links a:hover {
  color: var(--gold);
}

/* --- Related Pages --- */
.related-pages {
  padding: 48px 24px;
  background: var(--cream-alt);
}
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.related-links a {
  display: inline-block;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid rgba(11,61,46,.08);
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 500;
  color: var(--navy);
  transition: all var(--transition);
}
.related-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* --- Footer --- */
.footer {
  background: var(--navy-dark);
  color: rgba(245,247,243,.7);
  padding: 56px 24px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: nowrap;
}
.footer-brand img { height: 54px; width: auto; flex-shrink: 0; }
.footer-brand .city-badge-footer {
  font-family: 'Fraunces', serif;
  font-size: .75rem;
  font-style: italic;
  color: var(--gold);
  border-left: 1px solid rgba(245,247,243,.2);
  padding-left: 10px;
  line-height: 1.2;
}
.footer-brand p { font-size: .88rem; line-height: 1.7; }

.footer h4 {
  color: var(--cream);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.footer a { color: rgba(245,247,243,.7); }
.footer a:hover { color: var(--gold); }

.footer-contact p {
  font-size: .88rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }

.footer-legal p { font-size: .82rem; line-height: 1.7; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(245,247,243,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
}

.footer-bottom a { margin-left: 20px; }

/* --- CTA Telephone mid-page --- */
.cta-phone {
  text-align: center;
  padding: 40px 24px;
  background: var(--navy);
}
.cta-phone h2 {
  color: var(--cream);
  margin-bottom: 8px;
}
.cta-phone h2 a {
  color: var(--gold);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}
.cta-phone h2 a:hover {
  color: #3AAF8A;
}
.cta-phone p {
  color: rgba(245,247,243,.75);
  font-size: .95rem;
  max-width: 50ch;
  margin: 0 auto;
}

/* --- Reseau geo inter-sites --- */
.network-links {
  padding: 32px 24px;
  background: var(--cream-alt);
  border-top: 1px solid rgba(11,61,46,.06);
}
.network-links .container { max-width: 900px; }
.network-links h3 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  color: var(--text-soft);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-align: center;
}
.network-links p {
  font-size: .85rem;
  line-height: 2.2;
  color: var(--text-soft);
  text-align: center;
}
.network-links a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.network-links a:hover { color: var(--gold); }

/* --- Conseiller Block --- */
.conseiller-block {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-top: 32px;
}
.conseiller-photo {
  flex: 0 0 260px;
  text-align: center;
}
.conseiller-photo img {
  width: 260px;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
}
.conseiller-caption {
  margin-top: 14px;
  font-size: .85rem;
  line-height: 1.5;
  color: var(--text-soft);
}
.conseiller-caption strong {
  color: var(--navy);
  font-size: .95rem;
}
.conseiller-text p {
  margin-bottom: 16px;
  color: var(--text-soft);
}
.conseiller-text p:last-child {
  margin-bottom: 0;
}

/* --- Stat Boxes --- */
.stat-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.stat-box {
  text-align: center;
  padding: 28px 16px;
  background: rgba(245,247,243,.08);
  border: 1px solid rgba(245,247,243,.12);
  border-radius: var(--radius);
}
.stat-box .stat-number {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.stat-box .stat-label {
  font-size: .85rem;
  color: rgba(245,247,243,.75);
}

/* --- Form --- */
.form-section {
  padding: 64px 24px;
  background: var(--white);
}

.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid rgba(11,61,46,.06);
  border-radius: var(--radius);
  padding: 40px 36px;
}

.form-group { margin-bottom: 28px; }

.form-group legend,
.form-group label.form-label {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  display: block;
  margin-bottom: 12px;
}

.form-group fieldset { border: none; padding: 0; }

.form-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.form-options label {
  display: block;
  position: relative;
  cursor: pointer;
}

.form-options input { position: absolute; opacity: 0; pointer-events: none; }

.form-options span {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid rgba(11,61,46,.15);
  border-radius: var(--radius);
  font-size: .88rem;
  color: var(--text-soft);
  background: var(--white);
  transition: all var(--transition);
  line-height: 1.3;
}

.form-options input:checked + span {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.form-options label:hover span {
  border-color: var(--gold);
}

.form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-fields .full { grid-column: 1 / -1; }

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(11,61,46,.12);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-input:focus {
  outline: none;
  border-color: var(--gold);
}
.form-input::placeholder { color: rgba(61,84,102,.4); }

.form-submit {
  margin-top: 8px;
  width: 100%;
}

.form-note {
  text-align: center;
  font-size: .78rem;
  color: var(--text-soft);
  margin-top: 16px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stat-boxes { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .header-nav { display: none; }
  .burger { display: block; }

  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(245,247,243,.98);
    backdrop-filter: blur(12px);
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(11,61,46,.08);
    gap: 4px;
  }
  .header-nav.open a {
    font-size: .95rem;
    padding: 12px 16px;
    border-radius: var(--radius);
  }

  .header-logo img { height: 40px; }
  .header-logo .city-badge { font-size: .6rem; padding-left: 6px; }
  .header-phone { margin-left: auto; font-size: 0; gap: 0; padding: 8px; }
  .header-phone svg { width: 22px; height: 22px; }

  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-form { max-width: 100%; margin-left: 0; }
  .hero-content { text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .conseiller-block { flex-direction: column; align-items: center; gap: 28px; }
  .conseiller-photo { flex: none; width: 200px; }
  .conseiller-photo img { width: 200px; }
}

@media (max-width: 640px) {
  .hero { padding: 56px 20px 48px; }
  .hero-page { padding: 32px 20px 40px; }
  .section { padding: 48px 20px; }

  .cards-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .pros-cons { grid-template-columns: 1fr; }
  .stat-boxes { grid-template-columns: 1fr; }

  .hero-cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; }
  .form-wrapper { padding: 28px 20px; }
  .form-fields { grid-template-columns: 1fr; }
}

/* --- Utilities --- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
