/* ============================================================
   OBSÈQUES DIRECT — CSS Principal v1.0.0
   ============================================================ */

/* ── Variables & Reset ──────────────────────────────────── */
:root {
  --blue:        #0F2D4A;
  --blue-mid:    #1A4A72;
  --blue-light:  #E8F1F8;
  --gold:        #C9A84C;
  --gold-dark:   #B8943E;
  --gold-light:  #F5EDD6;
  --white:       #FFFFFF;
  --grey:        #F5F7FA;
  --grey-border: #E2E8F0;
  --text:        #1A1A2E;
  --text-muted:  #6B7A8D;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Outfit', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }

/* ── HEADER ────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
  box-shadow: 0 2px 20px rgba(15,45,74,.08);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px; height: 68px;
  display: flex; align-items: center; gap: 20px;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.site-logo img { height: 55px; width: auto; }
.logo-icon {
  width: 34px; height: 34px; background: var(--blue);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--gold); stroke-width: 2; }
.logo-text {
  font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700;
  color: var(--blue); letter-spacing: -0.3px; white-space: nowrap;
}
.logo-text span { color: var(--gold); }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; margin-left: auto; }

.btn-devis-header {
  display: flex; align-items: center; gap: 8px;
  background: var(--gold-light); color: var(--gold);
  padding: 9px 16px; border-radius: 8px;
  font-size: 13.5px; font-weight: 700;
  border: 1px solid rgba(201,168,76,.35);
  transition: all .2s var(--ease); white-space: nowrap; flex-shrink: 0;
}
.btn-devis-header:hover { background: var(--gold); color: var(--white); }

.btn-phone {
  display: flex; align-items: center; gap: 10px;
  background: var(--blue); color: var(--white);
  padding: 10px 18px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  transition: all .2s var(--ease); letter-spacing: .2px;
}
.btn-phone:hover { background: var(--blue-mid); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(15,45,74,.25); }
.btn-phone svg         { width: 16px; height: 16px; flex-shrink: 0; }
.btn-phone-info        { display: flex; flex-direction: column; gap: 1px; }
.btn-phone-num         { font-size: 14px; font-weight: 700; line-height: 1; white-space: nowrap; }
.btn-phone-sub         { font-size: 10px; opacity: .8; line-height: 1; white-space: nowrap; }

.btn-phone-mobile {
  display: none; align-items: center; gap: 7px;
  background: var(--blue); color: var(--white);
  padding: 9px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 600; transition: all .2s;
}
.btn-phone-mobile svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px; border-radius: 6px; transition: background .2s;
}
.hamburger:hover { background: var(--grey); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--blue); border-radius: 2px; transition: all .3s; }
.hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--grey-border);
  padding: 12px 16px 16px; gap: 4px;
  box-shadow: 0 8px 24px rgba(15,45,74,.1);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 4px; padding: 0; }
.mobile-nav ul li a {
  display: block; color: var(--text); font-size: 15px; font-weight: 500;
  padding: 10px 14px; border-radius: 8px; transition: all .2s;
}
.mobile-nav ul li a:hover,
.mobile-nav ul li.current-menu-item a { background: var(--grey); color: var(--blue); font-weight: 600; }
.mobile-nav .nav-devis-mobile {
  display: block; background: var(--gold-light); color: var(--gold) !important;
  font-weight: 700 !important; border: 1px solid rgba(201,168,76,.3);
  margin-top: 4px; border-radius: 8px; padding: 10px 14px;
  font-size: 15px; text-align: center; transition: all .2s;
}
.mobile-nav .nav-devis-mobile:hover { background: var(--gold); color: var(--white) !important; }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #081B2E 0%, #0F2D4A 45%, #153F66 100%);
  padding: 90px 0 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent);
  pointer-events: none;
}
.hero-grid {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 400px;
  gap: 56px; align-items: start; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.4);
  color: var(--gold); font-size: 12px; font-weight: 600;
  padding: 5px 13px; border-radius: 100px; margin-bottom: 20px;
  letter-spacing: .5px; text-transform: uppercase;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

.hero-left h1 {
  font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 700;
  color: var(--white); line-height: 1.08; margin-bottom: 18px;
  letter-spacing: -1.4px; max-width: 760px;
}
.hero-left h1 em { font-style: normal; color: #D4AF37; text-shadow: 0 2px 12px rgba(212,175,55,.35); }

.hero-sub { font-size: 18px; color: rgba(255,255,255,.88); margin-bottom: 30px; line-height: 1.8; font-weight: 300; }

.hero-reassurance { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.hero-pill {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.9); font-size: 12.5px;
  padding: 5px 12px; border-radius: 100px; backdrop-filter: blur(8px);
}
.hero-pill svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: rgba(255,255,255,.12); border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.12); margin-top: 36px;
}
.hero-stat      { padding: 18px 16px; background: rgba(255,255,255,.05); }
.hero-stat-num  { font-size: 24px; font-weight: 700; color: var(--gold); display: block; }
.hero-stat-label{ font-size: 11.5px; color: rgba(255,255,255,.6); line-height: 1.4; }

/* Form card */
.form-card {
  background: var(--white); border-radius: 20px; padding: 32px;
  box-shadow: 0 40px 100px rgba(0,0,0,.28);
  border: 1px solid rgba(212,175,55,.18); position: sticky; top: 84px;
}
.form-card-title { font-family: 'Playfair Display', serif; font-size: 21px; color: var(--blue); margin-bottom: 6px; font-weight: 700; }
.form-card-sub   { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--grey-border); }
.form-card-sub strong { color: var(--gold); }

.btn-submit {
  width: 100%; background: linear-gradient(135deg, #D4AF37, #B8943E);
  color: var(--white); border: none; border-radius: 10px; padding: 15px;
  font-size: 15px; font-weight: 700; font-family: 'Outfit', sans-serif;
  cursor: pointer; transition: all .2s; letter-spacing: .3px;
  display: block; text-align: center;
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(201,168,76,.4); }

.form-guarantee { display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--text-muted); margin-top: 12px; justify-content: center; }
.form-guarantee svg { width: 13px; height: 13px; color: #22C55E; flex-shrink: 0; }
.form-divider { height: 1px; background: var(--grey-border); margin: 20px 0; }
.form-card-assureurs-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-card-assureurs-text  { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.assureurs-badges  { display: flex; flex-wrap: wrap; gap: 6px; }
.assureur-badge    { font-size: 11.5px; font-weight: 600; color: var(--blue); background: var(--blue-light); border: 1px solid rgba(15,45,74,.12); padding: 4px 10px; border-radius: 100px; }

/* ── TRUST BAR ─────────────────────────────────────────── */
.trust-bar { background: var(--blue); padding: 14px 0; }
.trust-bar-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.85); font-size: 13px; white-space: nowrap; }
.trust-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ── SECTIONS ──────────────────────────────────────────── */
.section      { padding: 72px 0; }
.section-grey { background: var(--grey); }
.container    { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.section-label { font-size: 11.5px; font-weight: 700; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--blue); margin-bottom: 14px; line-height: 1.2; letter-spacing: -.8px; }
.section-sub   { font-size: 16px; color: var(--text-muted); max-width: 600px; line-height: 1.7; font-weight: 300; }

/* Cards 3 colonnes */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 44px; }
.card {
  background: var(--white); border: 1px solid var(--grey-border); border-radius: 16px; padding: 28px;
  transition: all .3s; position: relative; overflow: hidden;
  box-shadow: 0 12px 40px rgba(15,45,74,.06);
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(15,45,74,.12); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card-icon   { width: 48px; height: 48px; background: var(--blue-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.card-icon svg { width: 24px; height: 24px; color: var(--blue); }
.card h3 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--blue); margin-bottom: 10px; font-weight: 700; }
.card p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Compare */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
.compare-card { border-radius: 24px; padding: 36px; position: relative; overflow: hidden; box-shadow: 0 12px 40px rgba(15,45,74,.06); }
.compare-card.capital     { background: var(--blue); color: var(--white); }
.compare-card.prestations { background: var(--gold-light); border: 1.5px solid rgba(201,168,76,.3); }
.compare-card-badge  { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 18px; }
.capital     .compare-card-badge { background: rgba(201,168,76,.2); color: var(--gold); border: 1px solid rgba(201,168,76,.3); }
.prestations .compare-card-badge { background: rgba(15,45,74,.1); color: var(--blue); border: 1px solid rgba(15,45,74,.15); }
.compare-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 14px; line-height: 1.2; }
.capital h3      { color: var(--white); }
.prestations h3  { color: var(--blue); }
.compare-card p  { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.capital p       { color: rgba(255,255,255,.75); }
.prestations p   { color: var(--text-muted); }
.compare-list    { list-style: none; margin-bottom: 28px; }
.compare-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.prestations .compare-list li { border-bottom-color: rgba(15,45,74,.08); }
.compare-list li:last-child { border-bottom: none; }
.compare-list li::before { content: '✓'; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.capital     .compare-list li        { color: rgba(255,255,255,.85); }
.capital     .compare-list li::before { color: var(--gold); }
.prestations .compare-list li         { color: var(--text-muted); }
.prestations .compare-list li::before { color: var(--blue); }
.btn-compare { display: inline-block; padding: 12px 22px; border-radius: 10px; font-size: 13.5px; font-weight: 600; transition: all .2s; font-family: 'Outfit',sans-serif; white-space: nowrap; }
.capital     .btn-compare { background: var(--gold); color: var(--blue); }
.capital     .btn-compare:hover { background: var(--gold-dark); }
.prestations .btn-compare { background: var(--blue); color: var(--white); }
.prestations .btn-compare:hover { background: var(--blue-mid); }

/* Étapes */
.etapes-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 52px; position: relative; }
.etapes-grid::before { content: ''; position: absolute; top: 27px; left: 10%; right: 10%; height: 2px; background: linear-gradient(to right, var(--blue-light), var(--blue), var(--blue-light)); z-index: 0; }
.etape { text-align: left; padding: 0 20px; position: relative; z-index: 1; }
.etape-num { width: 54px; height: 54px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; color: var(--gold); margin-bottom: 18px; border: 4px solid var(--white); box-shadow: 0 0 0 2px var(--blue); }
.etape h4 { font-size: 15px; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.etape p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* Chiffres */
.chiffres-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-radius: 20px; overflow: hidden; border: 1px solid var(--grey-border); margin-top: 44px; }
.chiffre-item  { padding: 36px 28px; border-right: 1px solid var(--grey-border); background: white; transition: background .3s; }
.chiffre-item:last-child { border-right: none; }
.chiffre-item:hover { background: var(--blue); }
.chiffre-item:hover .chiffre-num, .chiffre-item:hover .chiffre-label { color: var(--white); }
.chiffre-item:hover .chiffre-desc { color: rgba(255,255,255,.7); }
.chiffre-num   { font-size: 36px; font-weight: 700; color: var(--blue); display: block; line-height: 1; margin-bottom: 6px; transition: color .3s; }
.chiffre-label { font-size: 14px; font-weight: 600; color: var(--blue); margin-bottom: 6px; transition: color .3s; }
.chiffre-desc  { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; transition: color .3s; }

/* Assureurs block */
.assureurs-block { margin-top: 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; padding: 44px; background: var(--white); border-radius: 20px; border: 1px solid var(--grey-border); box-shadow: 0 12px 40px rgba(15,45,74,.06); }
.assureurs-block-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--blue); line-height: 1.25; margin-bottom: 14px; }
.assureurs-block-text  { font-size: 14px; color: var(--text-muted); line-height: 1.75; }
.assureur-critere      { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--grey-border); }
.assureur-critere:last-child { border-bottom: none; }
.assureur-critere-icon { width: 40px; height: 40px; background: var(--blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.assureur-critere-icon svg { width: 18px; height: 18px; color: var(--gold); }
.assureur-critere-title { font-size: 14px; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.assureur-critere-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Tableau */
.tableau-wrapper { margin-top: 44px; border-radius: 16px; overflow: hidden; border: 1px solid var(--grey-border); overflow-x: auto; -webkit-overflow-scrolling: touch; }
table        { width: 100%; border-collapse: collapse; min-width: 480px; }
table thead  { background: var(--blue); }
table th     { padding: 16px 20px; text-align: left; font-size: 12.5px; font-weight: 700; color: var(--white); letter-spacing: .8px; text-transform: uppercase; }
table th:not(:first-child) { text-align: center; }
table td     { padding: 14px 20px; font-size: 13.5px; color: var(--text); border-bottom: 1px solid var(--grey-border); vertical-align: middle; }
table td:not(:first-child) { text-align: center; }
table tbody tr:last-child td { border-bottom: none; }
table tbody tr:hover { background: var(--blue-light); }
table tbody tr:nth-child(even) { background: var(--grey); }
table tbody tr:nth-child(even):hover { background: var(--blue-light); }
.check   { color: #22C55E; font-size: 17px; }
.cross   { color: #EF4444; font-size: 17px; }
.partial { color: var(--gold); font-size: 12.5px; }

/* Témoignages */
.temoignages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 44px; }
.temoignage-card  { background: white; border: 1px solid var(--grey-border); border-radius: 16px; padding: 26px; transition: all .3s; box-shadow: 0 12px 40px rgba(15,45,74,.06); }
.temoignage-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(15,45,74,.1); }
.temoignage-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star { color: var(--gold); font-size: 15px; }
.temoignage-text  { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.temoignage-text::before { content: '«\00a0'; }
.temoignage-text::after  { content: '\00a0»'; }
.temoignage-author { display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.author-name { font-weight: 600; font-size: 14px; color: var(--blue); }
.author-city { font-size: 12px; color: var(--text-muted); }

/* FAQ */
.faq-list       { margin-top: 44px; display: flex; flex-direction: column; gap: 10px; }
.faq-item       { border: 1px solid var(--grey-border); border-radius: 12px; overflow: hidden; background: white; }
.faq-question   { width: 100%; background: none; border: none; padding: 20px 24px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 15px; font-weight: 600; color: var(--blue); font-family: 'Outfit',sans-serif; transition: background .2s; }
.faq-question:hover { background: var(--grey); }
.faq-icon       { width: 26px; height: 26px; background: var(--blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 17px; color: var(--blue); transition: all .3s; }
.faq-item.open .faq-icon { background: var(--blue); color: var(--white); transform: rotate(45deg); }
.faq-answer     { padding: 0 24px; max-height: 0; overflow: hidden; transition: all .4s ease; }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 22px; }
.faq-answer p   { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* CTA Final */
.cta-final { background: var(--blue); padding: 72px 0; position: relative; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; top: -150px; right: -150px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 70%); pointer-events: none; }
.cta-final-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 48px; position: relative; z-index: 1; }
.cta-final h2 { font-family: 'Playfair Display', serif; font-size: 34px; color: var(--white); font-weight: 700; margin-bottom: 10px; }
.cta-final p  { font-size: 16px; color: rgba(255,255,255,.7); font-weight: 300; }
.cta-final-btns { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.btn-gold { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: var(--blue); padding: 15px 30px; border-radius: 10px; font-size: 15px; font-weight: 700; transition: all .2s; font-family: 'Outfit',sans-serif; white-space: nowrap; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.4); }
.btn-outline-white { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--white); padding: 15px 30px; border-radius: 10px; font-size: 14px; font-weight: 500; border: 1.5px solid rgba(255,255,255,.3); transition: all .2s; font-family: 'Outfit',sans-serif; white-space: nowrap; }
.btn-outline-white:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }

/* Footer */
.site-footer { background: var(--white); padding: 56px 0 28px; box-shadow: 0 -10px 40px rgba(15,45,74,.04); }
.footer-grid { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 260px 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo-text { color: var(--blue); }
.footer-brand .logo-icon { background: var(--blue-light); }
.footer-brand-desc { font-size: 13.5px; color: var(--text-muted); margin-top: 14px; line-height: 1.7; }
.footer-col h4 { color: var(--blue); font-size: 12.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li a,
.footer-col > a { display: block; color: var(--text-muted); font-size: 13.5px; padding: 4px 0; transition: color .2s; }
.footer-col ul li a:hover,
.footer-col > a:hover { color: var(--gold); }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding: 20px 24px 0; border-top: 1px solid var(--grey-border); display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 12.5px; flex-wrap: wrap; color: var(--text-muted); }
.footer-legal  { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal ul { display: flex; gap: 16px; list-style: none; flex-wrap: wrap; padding: 0; }
.footer-legal ul li a { color: var(--text-muted); transition: color .2s; font-size: 12.5px; }
.footer-legal ul li a:hover { color: var(--gold); }

/* ── PAGE INTÉRIEURE ───────────────────────────────────── */
.page-hero { background: linear-gradient(135deg, #081B2E 0%, #0F2D4A 60%, #153F66 100%); padding: 56px 0 52px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -60px; right: -60px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 70%); pointer-events: none; }
.page-hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.page-hero-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.page-hero-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.page-hero-label a { color: var(--gold); transition: opacity .2s; }
.page-hero-label a:hover { opacity: .7; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; color: var(--white); line-height: 1.15; letter-spacing: -1px; max-width: 760px; }

.page-content-area { max-width: 1280px; margin: 0 auto; padding: 64px 24px; }
.page-content-area h2 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--blue); margin: 40px 0 16px; font-weight: 700; }
.page-content-area h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--blue); margin: 32px 0 12px; }
.page-content-area p  { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.page-content-area ul { padding-left: 24px; margin-bottom: 16px; }
.page-content-area ul li { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 8px; }
.page-content-area a  { color: var(--gold); text-decoration: underline; }
.page-content-area a:hover { color: var(--blue); }
.page-content-area strong { color: var(--blue); font-weight: 700; }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid        { grid-template-columns: 1fr; }
  .hero-left h1     { font-size: 42px; }
  .cards-grid       { grid-template-columns: 1fr 1fr; }
  .compare-grid     { grid-template-columns: 1fr; }
  .chiffres-grid    { grid-template-columns: 1fr 1fr; }
  .temoignages-grid { grid-template-columns: 1fr 1fr; }
  .etapes-grid      { grid-template-columns: 1fr 1fr; }
  .etapes-grid::before { display: none; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .cta-final-inner  { grid-template-columns: 1fr; }
  .assureurs-block  { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
  .form-card        { position: static; margin-top: 32px; }
  .section-title    { font-size: 28px; }
}
@media (max-width: 768px) {
  .btn-phone            { display: none; }
  .btn-phone-mobile     { display: flex; }
  .btn-devis-header     { display: none; }
  .header-inner         { height: 60px; padding: 0 16px; gap: 12px; }
  .hero                 { padding: 56px 0 48px; }
  .hero-left h1         { font-size: 34px; letter-spacing: -.5px; }
  .hero-sub             { font-size: 15px; line-height: 1.7; }
  .form-card            { padding: 22px; border-radius: 16px; }
  .section              { padding: 52px 0; }
  .section-title        { font-size: 26px; }
  .section-sub          { font-size: 14.5px; }
  .cards-grid           { grid-template-columns: 1fr; }
  .temoignages-grid     { grid-template-columns: 1fr; }
  .etapes-grid          { grid-template-columns: 1fr 1fr; gap: 24px; }
  .trust-bar-inner      { justify-content: center; gap: 10px 20px; }
  .trust-item           { font-size: 12px; }
  .footer-grid          { grid-template-columns: 1fr 1fr; gap: 28px; }
  .site-footer          { padding: 40px 0 24px; }
  .cta-final-inner      { gap: 32px; }
  .cta-final h2         { font-size: 26px; }
  .cta-final-btns       { flex-direction: row; flex-wrap: wrap; }
  .btn-gold, .btn-outline-white { padding: 12px 22px; font-size: 14px; }
  .page-hero h1         { font-size: 30px; }
}
@media (max-width: 480px) {
  .hero-left h1         { font-size: 26px; }
  .hero-stats           { grid-template-columns: 1fr; }
  .chiffres-grid        { grid-template-columns: 1fr; }
  .etapes-grid          { grid-template-columns: 1fr; }
  .footer-grid          { grid-template-columns: 1fr; }
  .footer-bottom        { flex-direction: column; align-items: flex-start; gap: 10px; }
  .compare-card         { padding: 24px; }
  .cta-final-btns       { flex-direction: column; }
  .btn-gold, .btn-outline-white { width: 100%; justify-content: center; }
  .faq-question         { font-size: 14px; padding: 16px 18px; }
  .section-title        { font-size: 22px; }
  .page-hero h1         { font-size: 26px; }
}
