/* ============================================
   ALAIA Patrimoine — Bordeaux
   Design: Modern Editorial Luxury
   ============================================ */

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

:root {
  --dark: #0C1B2A;
  --navy: #1B3A5C;
  --gold: #C49A5C;
  --gold-soft: rgba(196,154,92,.12);
  --text: #3A4A58;
  --text-light: #7A8A98;
  --bg: #F7F7F5;
  --white: #FFFFFF;
  --border: rgba(0,0,0,.06);
  --r: 14px;
  --r-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 24px rgba(0,0,0,.06);
  --shadow-up: 0 8px 40px rgba(0,0,0,.08);
  --ease: cubic-bezier(.4, 0, .2, 1);
  --mw: 1100px;
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }

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

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

h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); line-height: 1.08; letter-spacing: -.03em; margin-bottom: 24px; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.12; letter-spacing: -.02em; margin-bottom: 16px; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.3; margin-bottom: 10px; }
h4 { font-size: 1rem; line-height: 1.3; margin-bottom: 8px; }

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 80px;
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s var(--ease);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--dark);
  color: var(--white);
}
.btn-primary:hover {
  background: #162a3e;
  box-shadow: 0 6px 24px rgba(12,27,42,.2);
  transform: translateY(-1px);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  box-shadow: inset 0 0 0 1.5px rgba(12,27,42,.15);
}
.btn-outline:hover {
  box-shadow: inset 0 0 0 1.5px var(--dark);
  color: var(--dark);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: #b08748;
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
}
.btn-white:hover {
  background: var(--bg);
  color: var(--dark);
  transform: translateY(-1px);
}

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-logo img { height: 52px; width: auto; }
.header-logo .city-badge {
  font-family: 'Fraunces', serif;
  font-size: .82rem;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  letter-spacing: .5px;
  border-left: 1.5px solid var(--border);
  padding-left: 12px;
  line-height: 1;
}

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

.header-nav > a {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 6px 10px;
  border-radius: 8px;
  transition: all .15s;
  white-space: nowrap;
}
.header-nav > a:hover { color: var(--dark); background: var(--bg); }

.header-phone {
  font-size: .85rem;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
  margin-left: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-phone svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--dark);
  margin: 5px 0;
  border-radius: 1px;
}

/* --- Dropdown Navigation --- */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: none;
  border: none;
  font-family: inherit;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  padding: 6px 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .15s;
}
.nav-dropdown-toggle:hover { color: var(--dark); }
.nav-dropdown-toggle::after {
  content: '';
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 3.5px solid currentColor;
  opacity: .4;
  transition: transform .2s;
}
.nav-dropdown:hover .nav-dropdown-toggle::after { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -12px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(0,0,0,.1), 0 0 0 1px rgba(0,0,0,.04);
  padding: 8px;
  padding-top: 12px;
  min-width: 220px;
  z-index: 100;
}
/* Invisible bridge between toggle and menu to prevent hover gap */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: var(--text);
  font-size: .87rem;
  border-radius: 8px;
  transition: all .12s;
}
.nav-dropdown-menu a:hover {
  background: var(--bg);
  color: var(--dark);
}
.header-cta {
  background: var(--gold);
  color: white !important;
  padding: 9px 20px;
  border-radius: 80px;
  font-size: .82rem;
  font-weight: 600;
  transition: all .2s var(--ease);
  margin-left: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-cta:hover {
  background: #b08748;
  box-shadow: 0 4px 16px rgba(196,154,92,.3);
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    padding: 0 0 0 16px;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 1rem;
  }
}

/* ============================================
   HERO — Full impact
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
  padding: 0 24px;
}

/* Gradient orb top-right */
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,92,.12) 0%, transparent 65%);
  pointer-events: none;
}
/* Gradient orb bottom-left */
.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,58,92,.15) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
  max-width: var(--mw);
  margin: 0 auto;
  width: 100%;
  padding: 80px 0 64px;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  font-weight: 500;
}
.hero h1 .highlight {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), #e0c18d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.5);
  max-width: 48ch;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .btn-primary {
  background: var(--white);
  color: var(--dark);
}
.hero .btn-primary:hover {
  background: var(--bg);
  color: var(--dark);
  box-shadow: 0 6px 24px rgba(255,255,255,.15);
}
.hero .btn-outline {
  color: rgba(255,255,255,.7);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.15);
}
.hero .btn-outline:hover {
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.4);
  color: var(--white);
}

/* Hero form */
.hero-form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,.2);
  max-width: 400px;
  margin-left: auto;
}
.hero-form h2 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.hero-form .form-note-top {
  font-size: .78rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.hero-form .form-group { margin-bottom: 16px; }
.hero-form .form-group legend,
.hero-form .form-group label.form-label {
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
}
.hero-form .form-options { gap: 6px; }
.hero-form .form-options span {
  padding: 8px 14px;
  font-size: .78rem;
  border-radius: 8px;
  border: 1.5px solid rgba(0,0,0,.1);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.hero-form .form-input {
  padding: 11px 14px;
  font-size: .85rem;
  border-radius: 10px;
  border: 1.5px solid rgba(0,0,0,.15);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.hero-form .form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,154,92,.15);
}
.hero-form .form-fields { gap: 10px; }
.hero-form .form-submit {
  margin-top: 8px;
  padding: 14px 24px;
  font-size: .9rem;
  font-weight: 600;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), #d4aa6e);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196,154,92,.35);
}
.hero-form .form-submit:hover {
  background: linear-gradient(135deg, #b08748, var(--gold));
  box-shadow: 0 6px 24px rgba(196,154,92,.45);
  transform: translateY(-1px);
}
.hero-form .form-note { font-size: .7rem; margin-top: 12px; }
.hero-form .form-note a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--border); text-underline-offset: 2px; }

/* --- Hero Trust (stats + press) --- */
.hero-trust {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.hero-trust-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 28px;
}
.hero-trust-stat { text-align: left; }
.hero-trust-value {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.hero-trust-label {
  display: block;
  font-size: .68rem;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.hero-trust-press {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-trust-press-label {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  white-space: nowrap;
  flex-shrink: 0;
}
.hero-trust-press-logos {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-trust-press-logos a {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.hero-trust-press-logos img {
  height: 20px;
  width: auto;
  opacity: .3;
  filter: brightness(0) invert(1);
  transition: opacity .2s;
}
.hero-trust-press-logos img[alt="La Tribune"] { height: 14px; }
.hero-trust-press-logos img:hover { opacity: .65; }

/* ============================================
   SECTIONS — Spacious & clean
   ============================================ */
.section { padding: 88px 24px; }
.section-alt { background: #EFEEEB; }
.section-cream { background: #EFEEEB; }

.section-dark {
  background: var(--dark);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.6); }
.section-dark a { color: var(--gold); }

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

.section-header .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-header .label::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* --- Hero Pages thematiques --- */
.hero-page {
  padding: 72px 24px 64px;
  text-align: center;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

/* Gradient orbs like main hero */
.hero-page::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,92,.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero-page::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -15%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,58,92,.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-page .container { position: relative; z-index: 1; }

.hero-page h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  font-weight: 500;
}
.hero-page h1 .highlight {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), #e0c18d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-page .hero-subtitle {
  font-size: 1.05rem;
  margin: 12px auto 28px;
  max-width: 620px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}

.hero-page .btn-primary {
  background: var(--white);
  color: var(--dark);
}
.hero-page .btn-primary:hover {
  background: var(--bg);
  color: var(--dark);
  box-shadow: 0 6px 24px rgba(255,255,255,.15);
}

/* Breadcrumb */
.breadcrumb { padding: 12px 0; background: var(--cream); border-bottom: 1px solid rgba(12,27,42,.06); }
.breadcrumb ol { display: flex; align-items: center; gap: 8px; list-style: none; padding: 0 5%; margin: 0; font-size: .85rem; font-family: var(--font-body); color: var(--text-light); flex-wrap: wrap; }
.breadcrumb li + li::before { content: "›"; margin-right: 8px; color: var(--text-light); opacity: .5; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--dark); font-weight: 500; }

/* ============================================
   BENTO GRID — Solutions cards
   ============================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 12px;
  max-width: var(--mw);
  margin: 0 auto;
}

.bento-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  transition: all .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  box-shadow: var(--shadow-up);
  border-color: transparent;
}
.bento-card.span-2 {
  grid-column: span 2;
}

.bento-card .card-number {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--bg);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -.04em;
}

.bento-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.bento-card h3 a { color: var(--dark); }
.bento-card h3 a:hover { color: var(--gold); }
.bento-card p { font-size: .9rem; line-height: 1.65; color: var(--text-light); }

/* Fallback: old .cards-grid still works */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: var(--mw);
  margin: 0 auto;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  transition: all .25s var(--ease);
}
.card:hover {
  box-shadow: var(--shadow-up);
  border-color: transparent;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-soft);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.card h3 a { color: var(--dark); }
.card h3 a:hover { color: var(--gold); }
.card p { font-size: .9rem; line-height: 1.65; color: var(--text-light); }

/* ============================================
   STEPS — Numbered cards
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: var(--mw);
  margin: 0 auto;
  counter-reset: step;
}

.step {
  counter-increment: step;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  position: relative;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--bg);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
  letter-spacing: -.04em;
}

.step h3 { color: var(--dark); font-size: 1.05rem; }
.step p { font-size: .9rem; color: var(--text-light); line-height: 1.65; }

/* ============================================
   TESTIMONIALS — Clean cards
   ============================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: var(--mw);
  margin: 0 auto;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial blockquote {
  flex: 1;
  margin-bottom: 20px;
}
.testimonial blockquote p {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}

.testimonial cite {
  font-size: .82rem;
  font-style: normal;
  font-weight: 600;
  color: var(--dark);
}
.testimonial cite span {
  font-weight: 400;
  color: var(--text-light);
}

/* ============================================
   CONSEILLER
   ============================================ */
.conseiller-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 32px;
}
.conseiller-photo { text-align: center; }
.conseiller-photo img {
  width: 260px;
  height: auto;
  border-radius: var(--r-lg);
  object-fit: cover;
}
.conseiller-caption {
  margin-top: 16px;
  font-size: .82rem;
  color: var(--text-light);
}
.conseiller-caption strong {
  color: var(--dark);
  font-size: .9rem;
  display: block;
}
.conseiller-text p {
  margin-bottom: 16px;
  color: var(--text);
  font-size: .95rem;
  line-height: 1.8;
}

/* ============================================
   FAQ — Minimal
   ============================================ */
.faq { max-width: 680px; margin: 0 auto; }

.faq details {
  border-bottom: 1px solid var(--border);
}

.faq summary {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark);
  padding: 22px 40px 22px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.4;
  transition: color .2s;
}
.faq summary:hover { color: var(--gold); }
.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.1rem;
  font-weight: 300;
  color: var(--text-light);
  transition: all .2s;
}
.faq details[open] summary::after {
  content: "\2212";
  color: var(--gold);
}

.faq .faq-answer {
  padding: 0 0 22px;
  font-size: .93rem;
  line-height: 1.75;
  color: var(--text);
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section {
  text-align: center;
  padding: 72px 24px;
  background: var(--bg);
}
.cta-section h2 { margin-bottom: 12px; }
.cta-section p { max-width: 48ch; margin: 0 auto 32px; color: var(--text-light); }

.cta-phone {
  text-align: center;
  padding: 52px 24px;
  background: var(--dark);
}
.cta-phone h2 { color: var(--white); margin-bottom: 8px; }
.cta-phone h2 a {
  color: var(--gold);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}
.cta-phone h2 a:hover { color: #d4aa6e; }
.cta-phone p {
  color: rgba(255,255,255,.4);
  font-size: .92rem;
  max-width: 48ch;
  margin: 0 auto;
}

/* ============================================
   FORMS
   ============================================ */
.form-section { padding: 72px 24px; }

.form-wrapper {
  max-width: 620px;
  margin: 0 auto;
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 40px 36px;
}

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

.form-group legend,
.form-group label.form-label {
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  color: var(--dark);
  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: 1.5px solid rgba(0,0,0,.12);
  border-radius: 10px;
  font-size: .87rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  transition: all .2s var(--ease);
  line-height: 1.3;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
  cursor: pointer;
}

.form-options label:hover span {
  border-color: var(--gold);
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(196,154,92,.15);
  transform: translateY(-1px);
}

.form-options input:checked + span {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold), #d4aa6e);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(196,154,92,.3);
}

.form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-fields .full { grid-column: 1 / -1; }

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(0,0,0,.15);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--dark);
  background: var(--white);
  transition: all .2s var(--ease);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,154,92,.15);
}
.form-input::placeholder { color: rgba(58,74,88,.4); }

.form-submit {
  margin-top: 12px;
  width: 100%;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), #d4aa6e);
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
  padding: 16px 32px;
  box-shadow: 0 4px 16px rgba(196,154,92,.35);
  transition: all .25s var(--ease);
}
.form-submit:hover {
  background: linear-gradient(135deg, #b08748, var(--gold));
  box-shadow: 0 6px 24px rgba(196,154,92,.45);
  transform: translateY(-2px);
}

.form-note {
  text-align: center;
  font-size: .73rem;
  color: var(--text-light);
  margin-top: 14px;
}

/* ============================================
   SEO & NETWORK LINKS
   ============================================ */
.seo-links {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
}
.seo-links .container { max-width: 900px; }
.seo-links h3 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.seo-links p {
  font-size: .82rem;
  line-height: 2.2;
  color: var(--text-light);
}
.seo-links a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 3px;
}
.seo-links a:hover { color: var(--gold); text-decoration-color: var(--gold); }

.network-links {
  padding: 28px 24px;
  border-top: 1px solid var(--border);
}
.network-links .container { max-width: 900px; }
.network-links h3 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-align: center;
}
.network-links p {
  font-size: .82rem;
  line-height: 2.2;
  color: var(--text-light);
  text-align: center;
}
.network-links a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 3px;
}
.network-links a:hover { color: var(--gold); text-decoration-color: var(--gold); }

/* --- Related Pages --- */
.related-pages {
  padding: 48px 24px;
  background: var(--bg);
}
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: var(--mw);
  margin: 0 auto;
}
.related-links a {
  display: inline-block;
  padding: 9px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 80px;
  font-size: .83rem;
  font-weight: 500;
  color: var(--text);
  transition: all .2s;
}
.related-links a:hover {
  border-color: var(--dark);
  color: var(--dark);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.5);
  padding: 56px 24px 32px;
}

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

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand img { height: 48px; width: auto; flex-shrink: 0; }
.footer-brand .city-badge-footer {
  font-family: 'Fraunces', serif;
  font-size: .78rem;
  font-style: italic;
  color: var(--gold);
  border-left: 1.5px solid rgba(255,255,255,.1);
  padding-left: 12px;
  line-height: 1;
}
.footer-brand p { font-size: .83rem; line-height: 1.7; }

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

.footer a { color: rgba(255,255,255,.5); }
.footer a:hover { color: var(--gold); }

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

.footer-social { font-size: .83rem; }
.footer-social a { color: rgba(255,255,255,.75); text-decoration: none; transition: color .2s; }
.footer-social a:hover { color: var(--gold); }

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

.footer-bottom {
  max-width: var(--mw);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .72rem;
}
.footer-bottom a { margin-left: 16px; }

/* ============================================
   SOLUTION CARDS (thematic pages)
   ============================================ */
.solution-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  transition: all .25s var(--ease);
}
.solution-card:hover {
  box-shadow: var(--shadow-up);
  border-color: transparent;
}

.solution-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.solution-card h3 { font-size: 1.08rem; margin-bottom: 0; }

.rendement-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--gold-soft);
  border-radius: 80px;
  padding: 5px 14px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}
.rendement-badge .rendement-value {
  font-family: 'Fraunces', serif;
  font-size: .92rem;
  font-weight: 700;
  color: var(--gold);
}

.solution-card-features {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.solution-card-features li {
  padding: 5px 0 5px 20px;
  position: relative;
  font-size: .87rem;
  color: var(--text);
}
.solution-card-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
  font-size: .82rem;
}

.solution-card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.solution-card-footer .btn {
  padding: 10px 24px;
  font-size: .85rem;
}

/* ============================================
   SIMULATOR
   ============================================ */
.simulator {
  max-width: 660px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
}

.simulator h3 { text-align: center; margin-bottom: 28px; }

.simulator-field { margin-bottom: 24px; }
.simulator-field label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: .92rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.simulator-field label output,
.simulator-field label .sim-value {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-soft);
  padding: 2px 12px;
  border-radius: 6px;
}

.simulator-field input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
}
.simulator-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--dark);
  border: 3px solid var(--white);
  box-shadow: 0 1px 6px rgba(0,0,0,.15);
  cursor: pointer;
}
.simulator-field input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--dark);
  border: 3px solid var(--white);
  cursor: pointer;
}

.simulator-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--dark);
  background: var(--bg);
  cursor: pointer;
}

.simulator-results {
  margin-top: 28px;
  padding: 24px;
  background: var(--dark);
  border-radius: var(--r);
  text-align: center;
}
.simulator-results h4 {
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.simulator-results .sim-big-number {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}
.simulator-results .sim-detail {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 4px;
}

.simulator-disclaimer {
  margin-top: 14px;
  font-size: .72rem;
  color: var(--text-light);
  text-align: center;
}
.simulator-cta { text-align: center; margin-top: 24px; }

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--mw);
  margin: 0 auto;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 0;
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.blog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--card-accent, var(--gold));
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.blog-card:hover {
  box-shadow: 0 12px 40px rgba(12,27,42,.1);
  border-color: transparent;
  transform: translateY(-4px);
}
.blog-card.hidden { display: none; }

.blog-card-body {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card .blog-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 14px;
  width: fit-content;
  background: var(--badge-bg, rgba(196,154,92,.1));
  color: var(--badge-color, var(--gold));
}

.blog-card h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 12px;
}
.blog-card h2 a { color: var(--dark); }
.blog-card h2 a:hover { color: var(--gold); }

.blog-card .blog-excerpt {
  font-size: .85rem;
  color: var(--text);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.blog-card-footer .blog-meta {
  font-size: .72rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 12px;
}
.blog-card-footer .blog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-card-footer .blog-meta svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.blog-card-footer .blog-read-more {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.blog-card-footer .blog-read-more::after {
  content: '→';
  transition: transform .2s;
}
.blog-card:hover .blog-read-more::after {
  transform: translateX(4px);
}

/* Category accent colors */
.blog-card[data-cat="immobilier"] { --card-accent: #2563EB; --badge-bg: rgba(37,99,235,.08); --badge-color: #2563EB; }
.blog-card[data-cat="fiscalite"] { --card-accent: #DC2626; --badge-bg: rgba(220,38,38,.08); --badge-color: #DC2626; }
.blog-card[data-cat="transmission"] { --card-accent: #7C3AED; --badge-bg: rgba(124,58,237,.08); --badge-color: #7C3AED; }
.blog-card[data-cat="placement"] { --card-accent: #059669; --badge-bg: rgba(5,150,105,.08); --badge-color: #059669; }
.blog-card[data-cat="assurance-vie"] { --card-accent: #D97706; --badge-bg: rgba(217,119,6,.08); --badge-color: #D97706; }
.blog-card[data-cat="per"] { --card-accent: #0891B2; --badge-bg: rgba(8,145,178,.08); --badge-color: #0891B2; }
.blog-card[data-cat="scpi"] { --card-accent: #4F46E5; --badge-bg: rgba(79,70,229,.08); --badge-color: #4F46E5; }
.blog-card[data-cat="prevoyance"] { --card-accent: #DB2777; --badge-bg: rgba(219,39,119,.08); --badge-color: #DB2777; }
.blog-card[data-cat="retraite"] { --card-accent: #EA580C; --badge-bg: rgba(234,88,12,.08); --badge-color: #EA580C; }
.blog-card[data-cat="conjoncture"] { --card-accent: #475569; --badge-bg: rgba(71,85,105,.08); --badge-color: #475569; }
.blog-card[data-cat="conseil"] { --card-accent: var(--gold); --badge-bg: rgba(196,154,92,.1); --badge-color: var(--gold); }
.blog-card[data-cat="famille"] { --card-accent: #9333EA; --badge-bg: rgba(147,51,234,.08); --badge-color: #9333EA; }
.blog-card[data-cat="strategie"] { --card-accent: #0D9488; --badge-bg: rgba(13,148,136,.08); --badge-color: #0D9488; }
.blog-card[data-cat="alternatif"] { --card-accent: #65A30D; --badge-bg: rgba(101,163,13,.08); --badge-color: #65A30D; }

.blog-card .blog-card-image {
  margin: 0;
  overflow: hidden;
}
.blog-card .blog-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Filters */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.filter-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 80px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--white);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .2s var(--ease);
  user-select: none;
}
.filter-tag:hover {
  border-color: var(--dark);
  color: var(--dark);
  background: var(--bg);
}
.filter-tag.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* No results message */
.blog-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
  font-size: .95rem;
}

/* Article content */
.article-content h1 { font-size: 2rem; line-height: 1.15; margin-bottom: 32px; }
.article-content h2 { font-size: 1.3rem; margin-top: 40px; margin-bottom: 16px; }
.article-content h3 { font-size: 1.08rem; margin-top: 28px; margin-bottom: 12px; }
.article-content p { font-size: .97rem; line-height: 1.8; margin-bottom: 16px; }
.article-content ul, .article-content ol { margin: 16px 0; padding-left: 24px; }
.article-content li { margin-bottom: 8px; line-height: 1.7; }
.article-content a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(196,154,92,.35);
  text-underline-offset: 3px;
  transition: text-decoration-color .15s;
}
.article-content a:hover {
  text-decoration-color: var(--gold);
}

.article-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--bg);
  border-radius: 0 var(--r) var(--r) 0;
  font-style: italic;
  color: var(--dark);
}

/* Article TOC */
.article-toc {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 24px;
}
.article-toc summary {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
}
.article-toc summary::-webkit-details-marker { display: none; }
.article-toc summary::marker { display: none; }
.article-toc summary::before {
  content: "▸ ";
  color: var(--gold);
}
.article-toc[open] summary::before {
  content: "▾ ";
}
.article-toc ol {
  margin: 14px 0 0;
  padding-left: 20px;
  counter-reset: toc;
  list-style: none;
}
.article-toc li {
  counter-increment: toc;
  margin-bottom: 6px;
}
.article-toc li::before {
  content: counter(toc) ". ";
  font-weight: 600;
  color: var(--gold);
  font-size: .85rem;
}
.article-toc a {
  font-size: .9rem;
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 3px;
}
.article-toc a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

/* Article 2-column layout */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 48px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}
.article-main { min-width: 0; }
.article-sidebar {
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
.article-sidebar .article-toc {
  border: none;
  background: transparent;
  padding: 0;
}
.article-sidebar .article-toc summary {
  font-size: .9rem;
}
.article-sidebar .article-toc a {
  font-size: .82rem;
}
.article-sidebar .article-toc ol {
  padding-left: 16px;
}

/* Author line with photo */
.article-author-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.article-author-photo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.15);
}
.article-author-info {
  font-size: .85rem;
  color: rgba(255,255,255,.35);
}

/* TL;DR block */
.article-tldr {
  background: linear-gradient(135deg, rgba(196,154,92,.08), rgba(196,154,92,.04));
  border: 1px solid rgba(196,154,92,.25);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 24px 28px;
  margin-bottom: 36px;
}
.article-tldr-label {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: .85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.article-tldr p {
  font-size: .93rem;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 0;
}
.article-tldr ul {
  margin: 8px 0 0;
  padding-left: 20px;
}
.article-tldr li {
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 4px;
  color: var(--text);
}

/* Article CTA inline */
.article-cta {
  margin: 40px 0;
  padding: 36px 32px;
  background: var(--dark);
  border-radius: var(--r-lg);
  text-align: center;
}
.article-cta .article-cta-title {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.article-cta .article-cta-text {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
}
.article-cta .btn {
  display: inline-flex;
  background: var(--white);
  color: var(--dark);
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(255,255,255,.2);
}
.article-cta .btn:hover {
  background: var(--bg);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,255,255,.3);
}

/* Simulator CTA card */
.article-simulator {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  gap: 16px;
}
.article-simulator-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), #d4aa6e);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-simulator-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}
.article-simulator-body { flex: 1; }
.article-simulator-body p {
  font-size: .88rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 6px;
}
.article-simulator-body a {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}
.article-simulator-body a:hover {
  text-decoration: underline;
}
.article-simulator-body a::after {
  content: " \2192";
}

/* Internal link block */
.article-read-also {
  margin: 28px 0;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: .9rem;
}
.article-read-also strong {
  color: var(--gold);
  font-weight: 600;
  margin-right: 6px;
}
.article-read-also a {
  color: var(--dark);
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 3px;
}
.article-read-also a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

/* Reading progress bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #d4aa6e);
  z-index: 9999;
  transition: width .1s linear;
}

/* Key figures block */
.article-keyfigures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin: 32px 0;
  padding: 24px;
  background: var(--dark);
  border-radius: var(--r-lg);
}
.article-keyfigure {
  text-align: center;
  padding: 8px 4px;
}
.article-keyfigure-value {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 4px;
}
.article-keyfigure-label {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
}

/* Article date modified */
.article-updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  margin-top: 6px;
}
.article-updated svg {
  width: 14px;
  height: 14px;
  fill: rgba(255,255,255,.3);
}

/* Share buttons */
.article-share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 32px 0;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.article-share-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-light);
  margin-right: 4px;
}
.article-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  transition: all .15s;
  cursor: pointer;
}
.article-share-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,154,92,.06);
}
.article-share-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Author bio block */
.article-author-bio {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 48px 0 0;
  padding: 28px;
  background: var(--bg);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.article-author-bio-photo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.article-author-bio-info { flex: 1; }
.article-author-bio-name {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}
.article-author-bio-role {
  font-size: .8rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}
.article-author-bio-text {
  font-size: .85rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 10px;
}
.article-author-bio-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
}
.article-author-bio-link:hover {
  color: var(--gold);
}
.article-author-bio-link::after {
  content: " \2192";
}

/* Article prev/next nav */
.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 auto;
  max-width: 1060px;
  padding: 0 24px;
}
.article-nav-item {
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: all .2s;
}
.article-nav-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(196,154,92,.1);
}
.article-nav-item.prev { text-align: left; }
.article-nav-item.next { text-align: right; }
.article-nav-direction {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 6px;
}
.article-nav-title {
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.4;
}
.article-nav-item:hover .article-nav-title {
  color: var(--gold);
}

/* FAQ accordion */
.article-faq {
  margin: 40px 0;
}
.article-faq-item {
  border-bottom: 1px solid var(--border);
}
.article-faq-item:first-child {
  border-top: 1px solid var(--border);
}
.article-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  line-height: 1.4;
}
.article-faq-question::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--gold);
  margin-left: 16px;
  transition: transform .2s;
}
.article-faq-item.open .article-faq-question::after {
  content: "\2212";
}
.article-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.article-faq-item.open .article-faq-answer {
  max-height: 500px;
}
.article-faq-answer p {
  padding: 0 0 18px;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text);
}

/* Old article-card format */
.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: all .25s var(--ease);
}
.article-card:hover { box-shadow: var(--shadow-up); border-color: transparent; }
.article-card-image { position: relative; padding-top: 56.25%; overflow: hidden; background: var(--bg); }
.article-card-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.article-card:hover .article-card-image img { transform: scale(1.03); }
.article-card-image .article-category {
  position: absolute; top: 12px; left: 12px;
  background: var(--dark); color: var(--white);
  font-size: .68rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 80px; z-index: 1;
}
.article-card-body { padding: 22px; }
.article-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: .75rem; color: var(--text-light); }
.article-meta .reading-time { color: var(--gold); font-weight: 500; }
.article-meta .separator { width: 3px; height: 3px; border-radius: 50%; background: var(--text-light); opacity: .3; }
.article-card h3 { font-size: 1.02rem; margin-bottom: 8px; line-height: 1.4; }
.article-card h3 a { color: var(--dark); }
.article-card h3 a:hover { color: var(--gold); }
.article-card .article-excerpt { font-size: .87rem; line-height: 1.6; color: var(--text-light); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.article-card .read-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: .82rem; font-weight: 600; color: var(--dark); transition: all .15s; }
.article-card .read-more::after { content: "\2192"; transition: transform .15s; }
.article-card .read-more:hover { color: var(--gold); }
.article-card .read-more:hover::after { transform: translateX(4px); }

.blog-grid .article-card.featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.2fr 1fr; }
.blog-grid .article-card.featured .article-card-image { padding-top: 0; min-height: 300px; }
.blog-grid .article-card.featured .article-card-body { display: flex; flex-direction: column; justify-content: center; padding: 28px 24px; }
.blog-grid .article-card.featured h3 { font-size: 1.3rem; }

.blog-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 48px; }
.blog-pagination a, .blog-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px; font-size: .85rem; font-weight: 500;
  color: var(--text-light); border: 1px solid var(--border); transition: all .15s;
}
.blog-pagination a:hover { border-color: var(--dark); color: var(--dark); }
.blog-pagination .current { background: var(--dark); color: var(--white); border-color: var(--dark); }

/* --- Press logos --- */
.press-logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 36px; max-width: var(--mw); margin: 0 auto; padding: 20px 0;
}
.press-logos img { height: 30px; width: auto; opacity: .3; filter: grayscale(100%); transition: all .2s; }
.press-logos img:hover { opacity: .7; filter: grayscale(0%); }
.press-logos a { display: inline-block; }

/* ============================================
   PROS/CONS
   ============================================ */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: var(--mw);
  margin: 0 auto;
}
.pros-cons ul { list-style: none; padding: 0; }
.pros-cons li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text);
  font-size: .93rem;
}
.pros li::before { content: "+"; position: absolute; left: 0; font-weight: 700; color: #2a8f5a; }
.cons li::before { content: "\2212"; position: absolute; left: 0; font-weight: 700; color: #c0392b; }

/* ============================================
   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; }

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .cards-grid, .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card.span-2 { grid-column: span 1; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .article-sidebar {
    position: relative;
    top: auto;
    max-height: none;
    padding: 32px 0 0;
    order: -1;
  }
  .article-sidebar .article-toc {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 20px 24px;
  }
  .article-nav { grid-template-columns: 1fr; }
  .article-nav-item.next { text-align: left; }
  .article-author-bio { flex-direction: column; text-align: center; }
  .article-keyfigures { 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: 60px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(24px);
    padding: 12px 24px 20px;
    border-bottom: 1px solid var(--border);
    gap: 2px;
    box-shadow: 0 12px 40px rgba(0,0,0,.06);
  }
  .header-nav.open a {
    font-size: .93rem;
    padding: 12px 16px;
    border-radius: 10px;
  }

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

  .hero { min-height: auto; padding: 64px 24px 56px; }
  .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; }
  .hero-trust-stats { justify-content: center; }
  .hero-trust-press { flex-direction: column; gap: 8px; }
  .hero-trust-press-logos { flex-wrap: wrap; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  .blog-grid .article-card.featured { grid-template-columns: 1fr; }
  .blog-grid .article-card.featured .article-card-image { padding-top: 56.25%; min-height: auto; }
}

@media (max-width: 768px) {
  .conseiller-block {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
  }
  .conseiller-photo { width: 180px; }
  .conseiller-photo img { width: 180px; border-radius: var(--r); }
  .testimonials { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .article-content h1 { font-size: 1.5rem; }
  .press-logos { gap: 20px; }
  .press-logos img { height: 24px; }
}

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

  .cards-grid, .bento-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 10px; }
  .pros-cons { grid-template-columns: 1fr; }

  .hero-cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 340px; }

  .hero-trust-stats { flex-direction: column; gap: 16px; align-items: center; }

  .simulator { padding: 24px 18px; }
  .form-wrapper { padding: 28px 20px; }
  .form-fields { grid-template-columns: 1fr; }

  .press-logos { gap: 16px; }
  .press-logos img { height: 20px; }
}
