/* ══════════════════════════════════════════════════════════════
   STRUCTURAL RECOVERY — style.css
   Palette : #1a2744 (marine) · #c9a84c (or) · #f5f7fa (fond)
   Police  : Raleway (Google Fonts)
══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Couleurs principales */
  --navy:       #1a2744;
  --navy-deep:  #111c33;
  --navy-light: #1e3a6e;
  --gold:       #c9a84c;
  --gold-light: #e0c475;
  --gold-pale:  rgba(201,168,76,.12);

  /* Neutres */
  --white:      #ffffff;
  --bg:         #f5f7fa;
  --bg-section: #eef1f7;
  --border:     #dde2ee;
  --text:       #1a2744;
  --text-muted: #6b7a99;
  --text-light: #9aa5be;

  /* Sémantique */
  --success: #2c7a4b;
  --danger:  #c0392b;

  /* Typographie */
  --font: 'Raleway', sans-serif;

  /* Espacements */
  --section-py: 5rem;
  --container:  1180px;
  --radius:     8px;
  --radius-lg:  14px;

  /* Ombres */
  --shadow-sm: 0 2px 8px rgba(26,39,68,.08);
  --shadow-md: 0 6px 24px rgba(26,39,68,.12);
  --shadow-lg: 0 16px 48px rgba(26,39,68,.15);

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── CONTAINER ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── TYPOGRAPHIE ──────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { line-height: 1.75; }

.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 4px;
  padding: .3rem .8rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
}

.section-header        { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── BOUTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  padding: .85rem 1.75rem;
  transition: all .2s var(--ease);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* ── NAVBAR ───────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  height: 70px;
  transition: box-shadow .3s var(--ease);
}
#navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.25); }

.nav-inner {
  display: flex;
  align-items: center;
  height: 70px;
  gap: .75rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  flex-shrink: 0;
  margin-right: auto;
  text-decoration: none;
}
.nav-logo img { height: 34px; width: auto; }
.nav-logo span em {
  color: var(--gold);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .78rem;
  font-weight: 500;
  padding: .5rem .6rem;
  border-bottom: 2px solid transparent;
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--gold);
}

.nav-cta { margin-left: .25rem; flex-shrink: 0; }

/* Burger mobile */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem .6rem;
  margin-left: auto;
  background: var(--navy);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s var(--ease);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--navy-deep);
  padding: 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: .5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  font-weight: 500;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  transition: background .2s;
}
.nav-mobile a:hover { background: rgba(255,255,255,.06); color: var(--gold); }
.nav-mobile .btn { width: 100%; justify-content: center; margin-top: .5rem; }

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  padding-top: 70px;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Image de fond */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Overlay sombre sur l'image */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(17,28,51,.82) 0%, rgba(17,28,51,.72) 60%, rgba(17,28,51,.88) 100%),
    radial-gradient(ellipse 60% 70% at 50% 40%, rgba(201,168,76,.06) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 6rem 0 5rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
}

.hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 4px;
  padding: .35rem .9rem;
  margin-bottom: 1.5rem;
}
.hero-tag-badge::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 640px;
  text-align: center;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: .75rem;
}

.hero-cta-note {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  text-align: center;
}

/* Stats hero */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  width: 100%;
  max-width: 800px;
}
.hero-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}
.hero-stat-lbl {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
  display: block;
}


/* ── FORMULAIRE ───────────────────────────────────────────── */
.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-bottom: .35rem;
  letter-spacing: .03em;
}

.form-group.light label { color: var(--text-muted); }

.form-control {
  width: 100%;
  font-family: var(--font);
  font-size: .9rem;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: var(--white);
  transition: border-color .2s var(--ease);
  outline: none;
}
.form-control::placeholder { color: rgba(255,255,255,.3); }
.form-control:focus { border-color: var(--gold); background: rgba(255,255,255,.1); }

.form-control.light {
  background: var(--white);
  border-color: var(--border);
  color: var(--text);
}
.form-control.light::placeholder { color: var(--text-light); }
.form-control.light:focus { border-color: var(--navy); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-privacy {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  text-align: center;
  margin-top: .75rem;
}
.form-privacy.light { color: var(--text-light); }
.form-privacy a { color: var(--gold); text-decoration: underline; }

/* ── BRANDS ───────────────────────────────────────────────── */
#brands {
  padding: 2.5rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brands-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.brands-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}
.brand-logo {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--text-light);
  text-transform: uppercase;
  opacity: .6;
  transition: opacity .2s;
}
.brand-logo:hover { opacity: 1; color: var(--navy); }

/* ── SERVICES ─────────────────────────────────────────────── */
#services { padding: var(--section-py) 0; background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all .25s var(--ease);
  cursor: default;
}
.service-card:hover {
  border-top-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-icon {
  width: 48px; height: 48px;
  background: rgba(26,39,68,.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--navy);
  transition: background .2s;
}
.service-card:hover .service-icon {
  background: var(--gold-pale);
  color: var(--gold);
}

.service-card h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.service-card p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.services-cta { text-align: center; margin-top: 2.5rem; }

/* ── HOW IT WORKS ─────────────────────────────────────────── */
#how { padding: var(--section-py) 0; background: var(--bg); }

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 100%);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 .5rem;
}

.step-num {
  width: 64px; height: 64px;
  background: var(--navy);
  border: 3px solid var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  margin: 0 auto 1.25rem;
  transition: all .25s var(--ease);
}
.step:hover .step-num {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.1);
}

.step h3 {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.step p {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── WHY US ───────────────────────────────────────────────── */
#why { padding: var(--section-py) 0; background: var(--navy); }

#why .section-title { color: var(--white); }
#why .section-sub   { color: rgba(255,255,255,.6); }
#why .section-tag   {
  color: var(--gold);
  background: rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.25);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all .25s var(--ease);
}
.why-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(201,168,76,.3);
  transform: translateY(-3px);
}

.why-icon {
  font-size: 1.6rem;
  margin-bottom: .75rem;
}

.why-card h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: .5rem;
}
.why-card p {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
#testimonials { padding: var(--section-py) 0; background: var(--white); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: .2;
  font-family: Georgia, serif;
}

.testi-amount {
  display: inline-block;
  background: rgba(44,122,75,.1);
  color: var(--success);
  font-size: .78rem;
  font-weight: 700;
  padding: .25rem .65rem;
  border-radius: 4px;
  margin-bottom: .85rem;
}

.testi-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
}
.testi-stars {
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: 1px;
}

/* ── FAQ ──────────────────────────────────────────────────── */
#faq { padding: var(--section-py) 0; background: var(--bg); }

.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color .2s;
}
.faq-question:hover { color: var(--gold); }

.faq-arrow {
  width: 24px; height: 24px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
  transition: all .2s var(--ease);
  color: var(--text-muted);
}
.faq-item.open .faq-arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ── CONTACT ──────────────────────────────────────────────── */
#contact { padding: var(--section-py) 0; background: var(--white); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: .75rem; }
.contact-info p  { color: var(--text-muted); margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: rgba(26,39,68,.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--navy);
}
.contact-detail-text span {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .15rem;
}
.contact-detail-text p {
  font-size: .9rem;
  color: var(--text);
  margin: 0;
  line-height: 1.5;
}

.contact-form-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

/* ── FOOTER ───────────────────────────────────────────────── */
#footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.65);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand p {
  font-size: .875rem;
  line-height: 1.75;
  margin: 1rem 0;
  color: rgba(255,255,255,.5);
}

.footer-logo {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.footer-logo em { color: var(--gold); font-style: normal; }

.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }

.footer-col ul a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--gold); }

.footer-col address {
  font-style: normal;
  font-size: .875rem;
  line-height: 1.8;
  color: rgba(255,255,255,.55);
}
.footer-col address a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: .5rem;
}

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,.08), transparent);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: .75rem; }
.cta-band p  { color: rgba(255,255,255,.6); margin-bottom: 2rem; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps::before { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --section-py: 3.5rem; }

  .nav-links, .nav-lang, .nav-cta, .nav-lang-switcher { display: none; }
  .nav-burger { display: flex; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); }

  .form-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}

/* ── HERO SINGLE COLONNE ──────────────────────────────────── */

/* ── SPLIT SECTIONS ───────────────────────────────────────── */
.split-section { padding: var(--section-py) 0; background: var(--white); }
.split-section.bg-light { background: var(--bg); }

.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Image inversée sur split-reverse */
.split-reverse .split-inner { direction: rtl; }
.split-reverse .split-inner > * { direction: ltr; }

/* Image */
.split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.split-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  background: var(--bg-section);
}

/* Badge sur l'image */
.split-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--navy);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  padding: .6rem 1rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: .5rem;
  border-left: 3px solid var(--gold);
}
.split-image-badge i { font-size: 1rem; color: var(--gold); }

/* Contenu texte */
.split-content h2 { margin-bottom: 1rem; }
.split-content p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

/* Liste checkmarks */
.split-list {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.split-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--text);
  line-height: 1.5;
}
.split-check {
  width: 22px;
  height: 22px;
  background: rgba(44,122,75,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.split-check i {
  font-size: .85rem;
  color: var(--success);
  font-weight: 700;
}

/* Trust items */
.split-trust {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: 1.5rem 0 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
}
.trust-item i {
  font-size: 1.2rem;
  color: var(--gold);
  width: 24px;
  flex-shrink: 0;
}

/* ── BANNIERE STATS ───────────────────────────────────────── */
.banner-stats {
  background: var(--navy);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.banner-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(201,168,76,.06), transparent);
  pointer-events: none;
}

.banner-stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.banner-stat { text-align: center; flex: 1; }

.banner-stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .4rem;
  letter-spacing: -.02em;
}
.banner-stat-lbl {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.banner-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* ── RESPONSIVE NOUVELLES SECTIONS ───────────────────────── */
@media (max-width: 1024px) {
  .split-inner { gap: 3rem; }
}

@media (max-width: 768px) {
  .split-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .split-reverse .split-inner { direction: ltr; }
  .split-image img { height: 300px; }

  .banner-stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .banner-divider { display: none; }
}

@media (max-width: 480px) {
  .banner-stats-inner { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   PAGES SECONDAIRES — styles communs
══════════════════════════════════════════════════════════ */

/* ── PAGE HERO ────────────────────────────────────────────── */
.page-hero {
  padding-top: 70px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 30%, rgba(201,168,76,.07), transparent);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4.5rem 0 4rem;
  max-width: 720px;
  margin: 0 auto;
}
.page-hero-inner h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero-inner p  { color: rgba(255,255,255,.65); font-size: 1.05rem; line-height: 1.75; }
.page-hero-sm .page-hero-inner { padding: 3rem 0 2.5rem; }

.section-pad      { padding: var(--section-py) 0; }
.bg-white         { background: var(--white); }
.bg-light         { background: var(--bg); }
.bg-navy          { background: var(--navy); }

/* ── SERVICES PAGE ────────────────────────────────────────── */
.services-intro { max-width: 800px; margin: 0 auto; text-align: center; }
.lead { font-size: 1.1rem; color: var(--text-muted); line-height: 1.85; }

.service-detail-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.25rem;
  transition: box-shadow .25s var(--ease);
}
.service-detail-card:hover { box-shadow: var(--shadow-md); }

.service-detail-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  align-self: start;
}
.service-detail-body h2 { font-size: 1.2rem; margin-bottom: .5rem; }
.service-detail-body > p { color: var(--text-muted); margin-bottom: 1.25rem; }

.service-detail-signs { margin-bottom: 1.25rem; }
.service-detail-signs h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .75rem;
}
.service-detail-signs ul { display: flex; flex-direction: column; gap: .5rem; }
.service-detail-signs li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .88rem;
  color: var(--text-muted);
}
.sign-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── HOW DÉTAILLÉ ─────────────────────────────────────────── */
.how-detail-block {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}
.how-detail-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.how-detail-block.split-reverse {
  grid-template-columns: 1fr 100px;
}
.how-detail-block.split-reverse .how-detail-visual { order: 2; }
.how-detail-block.split-reverse .how-detail-content { order: 1; }

.how-detail-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-step-circle {
  width: 80px; height: 80px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.how-step-n {
  font-size: .7rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .05em;
  line-height: 1;
}
.how-step-circle i {
  font-size: 1.4rem;
  color: var(--white);
}
.how-step-line {
  width: 2px;
  flex: 1;
  min-height: 60px;
  background: linear-gradient(to bottom, var(--navy), transparent);
  margin-top: .5rem;
}

.how-detail-content h2 { margin-bottom: .75rem; }
.how-detail-content > p { color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.8; }

.how-tips { display: flex; flex-direction: column; gap: .6rem; }
.how-tips li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .9rem;
  color: var(--text-muted);
}
.how-tips li i { color: var(--success); font-size: 1.1rem; flex-shrink: 0; }

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.guarantee-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.guarantee-card i { font-size: 2rem; color: var(--gold); margin-bottom: .75rem; display: block; }
.guarantee-card h3 { color: var(--white); font-size: 1rem; margin-bottom: .5rem; }
.guarantee-card p  { color: rgba(255,255,255,.55); font-size: .85rem; line-height: 1.65; }

/* ── A PROPOS ─────────────────────────────────────────────── */
.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.about-stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
}
.about-stat-lbl {
  display: block;
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all .25s var(--ease);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-icon {
  width: 48px; height: 48px;
  background: rgba(26,39,68,.06);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--navy);
  margin-bottom: 1rem;
}
.value-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.value-card p  { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.team-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .25s var(--ease);
}
.team-card:hover { box-shadow: var(--shadow-md); }
.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.team-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.team-avatar-fallback {
  position: absolute; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 700;
  color: var(--gold);
  background: var(--navy);
}
.team-info { padding: 1.25rem; }
.team-info h3 { font-size: 1rem; margin-bottom: .25rem; }
.team-role {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .03em;
  margin-bottom: .65rem;
}
.team-info p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

.certif-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.certif-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.certif-card i { font-size: 2rem; color: var(--gold); margin-bottom: .65rem; display: block; }
.certif-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: .3rem; }
.certif-card p  { color: rgba(255,255,255,.5); font-size: .82rem; }

/* ── TÉMOIGNAGES PAGE ─────────────────────────────────────── */
.testi-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testi-card-lg { padding: 1.75rem; }
.testi-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.testi-type-badge {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  background: rgba(26,39,68,.08);
  padding: .25rem .65rem;
  border-radius: 4px;
}

/* ── FAQ PAGE ─────────────────────────────────────────────── */
.faq-category { margin-bottom: 2.5rem; }
.faq-category-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.faq-category-header i {
  font-size: 1.4rem;
  color: var(--navy);
}
.faq-category-header h2 {
  font-size: 1.2rem;
  color: var(--navy);
}

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-page-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.contact-sidebar-card h3 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}

.contact-sidebar-reassure .reassure-list {
  display: flex; flex-direction: column; gap: .65rem;
}
.reassure-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .875rem;
  color: var(--text-muted);
}
.reassure-list li i { color: var(--success); font-size: 1.1rem; flex-shrink: 0; }

.contact-sidebar-alert {
  background: rgba(192,57,43,.04);
  border-color: rgba(192,57,43,.2);
}
.contact-sidebar-alert i {
  font-size: 1.4rem;
  color: var(--danger);
  margin-bottom: .5rem;
  display: block;
}
.contact-sidebar-alert h4 { font-size: .9rem; margin-bottom: .5rem; color: var(--danger); }
.contact-sidebar-alert p  { font-size: .82rem; color: var(--text-muted); line-height: 1.65; }

.contact-form-main .contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-main .contact-form-box h2 { margin-bottom: .5rem; }

.form-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 2rem;
}
.form-fieldset legend {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
  width: 100%;
  display: block;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
  margin-top: .5rem;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--text-muted);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--navy);
  flex-shrink: 0;
}

/* ── MENTIONS LÉGALES ─────────────────────────────────────── */
.legal-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  align-items: start;
}
.legal-nav {
  position: sticky;
  top: 90px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.legal-nav ul { display: flex; flex-direction: column; gap: .25rem; }
.legal-nav a {
  display: block;
  font-size: .875rem;
  color: var(--text-muted);
  padding: .45rem .65rem;
  border-radius: 4px;
  transition: all .2s;
}
.legal-nav a:hover { background: var(--white); color: var(--navy); }

.legal-content article {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.legal-content article:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.legal-content h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.legal-content h3 {
  font-size: 1rem;
  color: var(--navy);
  margin: 1.5rem 0 .5rem;
}
.legal-content p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: .75rem;
}
.legal-content address {
  font-style: normal;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.85;
  background: var(--bg);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: .75rem 0 1rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: .5rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.legal-content ul li {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── RESPONSIVE PAGES ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .team-grid     { grid-template-columns: repeat(2, 1fr); }
  .certif-grid   { grid-template-columns: repeat(2, 1fr); }
  .guarantee-grid{ grid-template-columns: repeat(2, 1fr); }
  .values-grid   { grid-template-columns: repeat(2, 1fr); }
  .testi-grid-full { grid-template-columns: repeat(2, 1fr); }
  .contact-page-inner { grid-template-columns: 280px 1fr; }
}

@media (max-width: 768px) {
  .service-detail-card { grid-template-columns: 1fr; gap: 1rem; }
  .service-detail-icon { width: 52px; height: 52px; font-size: 1.4rem; }
  .how-detail-block { grid-template-columns: 1fr; gap: 1.5rem; }
  .how-detail-block.split-reverse .how-detail-visual { order: 1; }
  .how-detail-block.split-reverse .how-detail-content { order: 2; }
  .how-step-line { display: none; }
  .team-grid     { grid-template-columns: repeat(2, 1fr); }
  .certif-grid   { grid-template-columns: repeat(2, 1fr); }
  .guarantee-grid{ grid-template-columns: 1fr 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .testi-grid-full { grid-template-columns: 1fr; }
  .contact-page-inner { grid-template-columns: 1fr; }
  .legal-inner   { grid-template-columns: 1fr; }
  .legal-nav     { position: static; }
  .checkbox-group { grid-template-columns: 1fr; }
  .about-stats   { flex-wrap: wrap; gap: 1.25rem; }
}

@media (max-width: 480px) {
  .team-grid     { grid-template-columns: 1fr; }
  .certif-grid   { grid-template-columns: 1fr; }
  .guarantee-grid{ grid-template-columns: 1fr; }
}

/* ── SWITCHER 3 LANGUES ───────────────────────────────────── */
.nav-lang-switcher {
  position: relative;
  flex-shrink: 0;
}

.nav-lang-btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .4rem .75rem;
  cursor: pointer;
  transition: all .2s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.nav-lang-btn:hover,
.nav-lang-btn.open {
  background: rgba(201,168,76,.15);
  border-color: var(--gold);
  color: var(--gold);
}
.nav-lang-btn i {
  font-size: .85rem;
  transition: transform .25s var(--ease);
  line-height: 1;
}
.nav-lang-btn.open i { transform: rotate(180deg); }

.nav-lang-dropdown {
  display: none !important;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #0f1a2e;
  border: 1px solid rgba(201,168,76,.25);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  min-width: 140px;
  z-index: 9999;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  overflow: hidden;
}
.nav-lang-dropdown.open { display: block !important; }

.nav-lang-dropdown li { list-style: none; }

.nav-lang-dropdown li a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.1rem;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
  transition: all .15s;
  border-bottom: 1px solid rgba(255,255,255,.05);
  text-decoration: none;
}
.nav-lang-dropdown li:last-child a { border-bottom: none; }
.nav-lang-dropdown li a:hover {
  background: rgba(255,255,255,.06);
  color: var(--white);
  padding-left: 1.4rem;
}
.nav-lang-dropdown li a.active {
  color: var(--gold);
  background: rgba(201,168,76,.08);
}
.nav-lang-dropdown li a.active::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Mobile langues */
.nav-mobile-langs {
  display: flex;
  gap: .5rem;
  padding: .65rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin: .25rem 0;
}
.nav-mobile-langs a {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(255,255,255,.6);
  padding: .35rem .75rem;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 4px;
  text-decoration: none;
  transition: all .2s;
}
.nav-mobile-langs a:hover { color: var(--white); border-color: rgba(255,255,255,.5); }
.nav-mobile-langs a.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,168,76,.1);
}

/* ── POPUP CONFIRMATION ───────────────────────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,15,30,.75);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn .3s var(--ease);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.popup-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  animation: slideUp .35s var(--ease);
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.popup-icon {
  width: 80px;
  height: 80px;
  background: rgba(44,122,75,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.popup-icon i {
  font-size: 2.8rem;
  color: var(--success);
}

.popup-box h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: .75rem;
}
.popup-box > p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.popup-details {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  text-align: left;
}
.popup-details span {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  color: var(--text);
  font-weight: 500;
}
.popup-details span i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Input en erreur */
.input-error {
  border-color: var(--danger) !important;
}

/* Alerte erreur envoi */
.form-alert {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1.1rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: .9rem;
  font-weight: 500;
}
.form-alert i { font-size: 1.2rem; flex-shrink: 0; }
.form-alert-error {
  background: rgba(192,57,43,.07);
  border: 1px solid rgba(192,57,43,.25);
  color: var(--danger);
}

/* ── SUCCESS BOX (remplace le formulaire) ─────────────────── */
.success-box {
  text-align: center;
  padding: 2.5rem 1.5rem;
  max-width: 560px;
  margin: 0 auto;
}
.success-icon {
  width: 96px; height: 96px;
  background: linear-gradient(135deg, rgba(44,122,75,.12), rgba(44,122,75,.06));
  border: 2px solid rgba(44,122,75,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: popIn .4s cubic-bezier(.175,.885,.32,1.275);
}
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.success-icon i {
  font-size: 3.2rem;
  color: var(--success);
}
.success-box .section-tag {
  display: inline-block;
  margin-bottom: 1rem;
}
.success-box h2 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: .85rem;
  line-height: 1.2;
}
.success-box > p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.success-box > p strong { color: var(--navy); }
.success-details {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  margin: 0 auto 1.25rem;
  text-align: left;
}
.success-details span {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .88rem;
  color: var(--text);
}
.success-details span strong {
  color: var(--text-muted);
  font-weight: 600;
  min-width: 55px;
}
.success-details i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.success-note {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  background: rgba(26,39,68,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  margin-bottom: .5rem;
  font-size: .83rem;
  color: var(--text-muted);
  text-align: left;
  line-height: 1.6;
}
.success-note i { color: var(--navy); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }