/* ===================================================
 * SOLENCIA — Design System "Sud & Confiance"
 * Palette  : Bleu azur · Or solaire · Terracotta
 * Typo     : Manrope (titres) + DM Sans (corps)
 * =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ─── VARIABLES ──────────────────────────────────────── */
:root {
  --primary:          #1A4172;
  --primary-dark:     #122D52;
  --secondary:        #F5A623;
  --secondary-hover:  #E8950F;
  --accent:           #E85D26;
  --bg:               #FAF8F5;
  --bg-sand:          #FFF4E6;
  --bg-blue-light:    #EEF4FB;
  --white:            #FFFFFF;
  --text:             #2D3A4A;
  --text-light:       #5A6B7B;
  --border:           #E2E8F0;
  --success:          #16A085;
  --shadow-sm:        0 2px 8px rgba(26, 65, 114, .08);
  --shadow-md:        0 8px 32px rgba(26, 65, 114, .10);
  --shadow-lg:        0 20px 60px rgba(26, 65, 114, .15);
  --radius-sm:        8px;
  --radius-md:        16px;
  --radius-lg:        24px;
  --radius-pill:      50px;
  --transition:       0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'DM Sans', Arial, sans-serif;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover, a:focus { color: var(--secondary); }

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

/* ─── HEADER ─────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 2rem;
  box-shadow: 0 2px 12px rgba(26, 65, 114, .08);
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.logo-image {
  height: 40px;
  width: auto;
}

.logo-text { color: var(--primary); }

a.logo { text-decoration: none; }
a.logo:hover, a.logo:focus { color: var(--primary); }

nav ul {
  list-style: none;
  display: flex;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: var(--text);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  transition: background var(--transition), color var(--transition);
  display: block;
}
nav ul li a:hover {
  background: var(--bg-sand);
  color: var(--primary);
}
nav ul li a.active {
  background: var(--primary);
  color: var(--white);
}

/* Burger mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform var(--transition);
}

/* ─── BOUTONS ────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(245, 166, 35, .35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--secondary-hover);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, .45);
}

.btn-whatsapp {
  display: inline-block;
  background: #25D366;
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .3);
  transition: background var(--transition), transform var(--transition);
}
.btn-whatsapp:hover {
  background: #1DAF55;
  color: var(--white);
  transform: translateY(-2px);
}

/* Bouton générique */
.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.btn:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* Bouton guide */
.btn-guide {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.btn-guide:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Bouton FAQ — texte sombre sur fond or */
.btn-guide-faq {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.btn-guide-faq:hover {
  background: var(--secondary-hover);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Boutons d'appel */
.btn.call-btn,
.btn.btn-call {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-weight: 700;
  white-space: nowrap;
}
.btn.call-btn:hover,
.btn.btn-call:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.call-number {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-weight: 700;
  letter-spacing: .3px;
  box-shadow: var(--shadow-sm);
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  background: url('assets/hero2.webp') center/cover no-repeat;
  color: var(--white);
  padding: 90px 24px;
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(12,28,50,.94) 45%, rgba(12,28,50,.52) 100%);
  z-index: 0;
}

.hero-container {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  letter-spacing: -0.5px;
}

.hero-title .highlight { color: var(--secondary); }

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  opacity: 0.92;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.hero-benefits li {
  font-size: 1rem;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero-trust {
  font-size: 0.92rem;
  opacity: 0.8;
  margin: 0;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 480px;
}

/* Annuler l'overlay ::before sur les petits héros (fond dégradé, pas image) */
.hero.small-hero::before,
.hero.no-image::before {
  display: none;
}

/* Hero pages secondaires */
.hero.small-hero {
  min-height: auto;
  padding: 64px 24px;
  background: linear-gradient(135deg, #122D52 0%, #1A4172 100%);
}
.hero.small-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.hero.small-hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.hero.small-hero p {
  font-size: 1.05rem;
  opacity: 0.9;
}

/* Hero FAQ (fond clair) */
.hero.no-image {
  background: var(--bg-blue-light);
  color: var(--text);
  min-height: auto;
}
.hero.no-image h1,
.hero.no-image p { color: var(--text); }
.hero.no-image::after { display: none; }

/* Animation d'entrée hero */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-title {
  animation: fadeUp 0.7s ease forwards;
}
.hero-subtitle {
  opacity: 0;
  animation: fadeUp 0.7s 0.15s ease forwards;
}
.hero-benefits {
  opacity: 0;
  animation: fadeUp 0.7s 0.25s ease forwards;
}
.hero-cta {
  opacity: 0;
  animation: fadeUp 0.7s 0.35s ease forwards;
}
.hero-trust {
  opacity: 0;
  animation: fadeUp 0.7s 0.45s ease forwards;
}

/* ─── WHATSAPP FLOTTANT ──────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .5);
  color: var(--white);
}

/* ─── SECTION AVANTAGES ──────────────────────────────── */
.advantages {
  background: var(--white);
  padding: 90px 24px;
  text-align: center;
}
.advantages h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2.5rem;
}
.advantages ul {
  list-style: none;
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 0;
}
.advantages li {
  position: relative;
  padding: 0.65rem 0 0.65rem 2.25rem;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.advantages li:last-child { border-bottom: none; }
.advantages li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0.65rem;
  color: var(--success);
  font-weight: 700;
}
.advantages li a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cta-guide { text-align: center; margin-top: 2rem; }

/* ─── SECTION PACKS ──────────────────────────────────── */
.packs {
  background: var(--bg);
  padding: 90px 24px;
  text-align: center;
}
.packs h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2.5rem;
}
.pack-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.pack-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  max-width: 320px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  min-height: 420px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pack-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* Carte recommandée */
.pack-card.recommended {
  border-color: var(--secondary);
  box-shadow: 0 8px 32px rgba(245, 166, 35, .18);
}
.pack-card.recommended::before {
  content: '★ Recommandé';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.pack-card h3 {
  font-family: 'Manrope', sans-serif;
  margin-top: 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
}
.pack-card .price {
  font-family: 'Manrope', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--secondary);
  margin: 0.5rem 0 1.25rem;
  white-space: nowrap;
  text-align: center;
}
.pack-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100%;
}
.pack-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--text);
}
.pack-card ul li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}
.pack-card .btn {
  margin-top: 1.5rem;
  align-self: center;
  background: var(--primary);
  color: var(--white);
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
}
.pack-card .btn:hover {
  background: var(--primary-dark);
  color: var(--white);
}

/* ─── SLIDER ─────────────────────────────────────────── */
.slider-section {
  background: var(--bg-sand);
  padding: 90px 24px;
  text-align: center;
}
.slider-section h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.slider-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  height: 420px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.slider-container .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slider-container .slide.active { opacity: 1; }
.slider-container .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(18, 45, 82, .75));
  color: var(--white);
  padding: 2.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.slider-overlay p {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}
.slider-overlay .btn {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
}
.slider-overlay .btn:hover {
  background: var(--secondary-hover);
  color: var(--primary);
}
.slider-caption {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
}

/* ─── SECTION À PROPOS ───────────────────────────────── */
.about {
  background: var(--white);
  padding: 90px 24px;
  text-align: center;
}
.about h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
}

/* ─── SECTION CONTACT ────────────────────────────────── */
.contact {
  background: var(--bg-sand);
  padding: 90px 24px;
  text-align: center;
}
.contact h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}
.contact p { margin-bottom: 1.5rem; }

.contact-highlight {
  text-align: center;
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 600px;
  margin: 0 auto;
}
.contact-highlight h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.contact-highlight p {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: var(--text);
}
.contact-highlight .email a {
  color: var(--primary);
  font-weight: 600;
}
.contact-highlight .email a:hover { color: var(--secondary); }

.phone-btn {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  padding: 0.85rem 2.25rem;
  margin: 1rem 0;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(245, 166, 35, .35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.phone-btn:hover {
  background: var(--secondary-hover);
  color: var(--primary);
  transform: scale(1.04);
  box-shadow: 0 10px 28px rgba(245, 166, 35, .45);
}

/* Formulaire */
.contact form,
.contact-form {
  max-width: 560px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: left;
}
.contact label,
.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}
.contact input,
.contact textarea,
.contact-form input {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  width: 100%;
  transition: border-color var(--transition);
}
.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.contact button {
  align-self: flex-start;
  background: var(--primary);
  color: var(--white);
  padding: 0.85rem 2rem;
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.contact button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
.contact-details a {
  color: var(--primary);
  font-weight: 600;
}

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--primary);
  color: rgba(255, 255, 255, .8);
  font-size: 0.88rem;
}
footer .footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
footer .footer-links a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  transition: color var(--transition);
}
footer .footer-links a:hover { color: var(--secondary); }

/* ─── PAGE GUIDE — CONTENU ───────────────────────────── */
.content {
  padding: 3rem 2rem;
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.75;
}
.content h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  margin-top: 2.5rem;
}
.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.content table th,
.content table td {
  border: 1px solid var(--border);
  padding: 0.65rem 0.85rem;
  text-align: left;
  font-size: 0.95rem;
}
.content table thead {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
}
.content table tbody tr:nth-child(even) td { background: var(--bg); }

/* ─── PAGE PACKS — TARIFS ────────────────────────────── */
.pricing-section {
  padding: 90px 24px;
  background: var(--white);
}
.pricing-section h2 {
  font-family: 'Manrope', sans-serif;
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}
.pricing-section p {
  max-width: 900px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--text-light);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricing-table caption {
  caption-side: top;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.pricing-table th,
.pricing-table td {
  border: 1px solid var(--border);
  padding: 0.85rem;
  text-align: center;
  vertical-align: middle;
}
.pricing-table th {
  background: var(--primary);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
}
.pricing-table tbody tr:nth-child(even) td { background: var(--bg); }

.pack-details {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.pack-details h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  margin-top: 2.5rem;
}
.pack-details p { line-height: 1.75; color: var(--text); }

.pack-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.pack-nav a {
  font-weight: 600;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-pill);
  transition: background var(--transition), color var(--transition);
}
.pack-nav a:hover {
  background: var(--primary);
  color: var(--white);
}

.pack-contact {
  margin-top: 2rem;
  font-size: 1rem;
  text-align: center;
  color: var(--text);
}
.pack-contact a {
  color: var(--primary);
  font-weight: 700;
}

/* ─── CTA BAR (packs.html) ───────────────────────────── */
.after-pricing { margin: 0; }

.cta-bar {
  background: var(--bg-sand);
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  max-width: 1100px;
  margin: 2rem auto;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.cta-bar p {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.5;
}
.cta-bar p strong { color: var(--primary); }
.nowrap { white-space: nowrap; }

/* ─── CALL TO ACTION SECTIONS ────────────────────────── */
.call-to-action {
  background: var(--bg-blue-light);
  padding: 80px 24px;
  text-align: center;
}
.call-to-action h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}
.call-to-action p {
  margin-bottom: 1.5rem;
  color: var(--text);
  font-size: 1.05rem;
}
.container {
  display: flex;
  justify-content: center;
}

.call-to-action-main {
  background: var(--bg-sand);
  color: var(--text);
  font-size: 1rem;
  text-align: center;
  padding: 1.25rem 2rem;
  border-radius: var(--radius-md);
  margin: 2rem auto;
  max-width: 700px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--secondary);
}
.call-to-action-main strong {
  font-weight: 700;
  color: var(--primary);
}

/* ─── COMPARATIF FC TABLE ────────────────────────────── */
.features-compare {
  padding: 80px 24px;
  background: var(--bg);
}
.features-compare h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.features-compare > p {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}
.fc-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 900px;
  margin: 0 auto;
}

.fc-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
}

/* ─ En-tête : colonne "Service" */
.fc-table thead .fc-head {
  text-align: left;
  padding: 22px 24px;
  background: var(--bg);
  color: var(--text-light);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─ En-tête : colonnes pack */
.fc-table thead .fc-plan {
  text-align: center;
  padding: 22px 16px;
  background: var(--white);
  color: var(--primary);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  vertical-align: top;
  line-height: 1.3;
}

/* ─ Colonne recommandée (Sérénité) */
.fc-table thead .fc-recommended {
  background: rgba(245, 166, 35, .07);
  border-left: 2px solid var(--secondary);
  border-right: 2px solid var(--secondary);
  border-top: 3px solid var(--secondary);
}

/* ─ Prix dans le header */
.fc-price {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  margin-top: 5px;
}

/* ─ Badge "Recommandé" */
.fc-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  margin: 6px 0 2px;
  white-space: nowrap;
}

/* ─ Cellules des lignes normales */
.fc-label {
  padding: 14px 24px;
  color: var(--text);
  font-weight: 500;
  text-align: left;
}
.fc-row td {
  text-align: center;
  padding: 14px 12px;
  border-left: 1px solid var(--border);
  vertical-align: middle;
}

/* ─ Surbrillance colonne Sérénité (3e colonne) */
.fc-row td:nth-child(3) {
  background: rgba(245, 166, 35, .04);
  border-left: 2px solid rgba(245, 166, 35, .25);
  border-right: 2px solid rgba(245, 166, 35, .25);
}

.fc-row { border-bottom: 1px solid var(--border); }
.fc-row:hover td,
.fc-row:hover th { background: var(--bg); }
.fc-row:hover td:nth-child(3) { background: rgba(245, 166, 35, .08); }

/* ─ Pastilles check / cross */
.dot,
.cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  vertical-align: middle;
  flex-shrink: 0;
}
.dot {
  background-color: var(--success);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}
.dot::before, .dot::after,
.cross::before { content: none; display: none; }
.cross::after {
  content: '—';
  display: block;
  font-size: 1rem;
  color: #BBBBBB;
  font-weight: 400;
  line-height: 1;
}
.cross {
  background-color: #F4F4F4;
  font-family: system-ui, -apple-system, sans-serif;
}

/* ─ Alignement général */
.fc-table th,
.fc-table td { vertical-align: middle; }

/* ─ Bouton expand */
.fc-toggle {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.fc-toggle:hover { color: var(--primary); }
.fc-toggle .chev {
  width: 16px;
  height: 16px;
  stroke: var(--text-light);
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: auto;
}
.fc-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }
.fc-toggle[aria-expanded="true"] { color: var(--primary); font-weight: 600; }

/* ─ Rangées de détail */
.fc-detail td {
  padding: 0 24px;
  color: var(--text-light);
  background: var(--bg-sand);
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .25s ease, opacity .25s ease;
  opacity: 0;
  text-align: left;
  font-size: 0.88rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--border);
}
.fc-detail[aria-hidden="false"] td {
  max-height: 120px;
  padding: 12px 24px;
  opacity: 1;
}

/* ─ Coins arrondis */
.fc-table thead tr:first-child th:first-child { border-top-left-radius: var(--radius-lg); }
.fc-table thead tr:first-child th:last-child  { border-top-right-radius: var(--radius-lg); }
.fc-table tbody tr:last-child td:first-child,
.fc-table tbody tr:last-child th:first-child  { border-bottom-left-radius: var(--radius-lg); }
.fc-table tbody tr:last-child td:last-child   { border-bottom-right-radius: var(--radius-lg); }

.fc-note {
  color: var(--text-light);
  font-size: 0.88rem;
  margin: 10px 4px 0;
}

/* ─── FAQ ────────────────────────────────────────────── */
.faq {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px;
}
.faq-item {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  background: var(--primary);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary {
  background: var(--secondary);
  color: var(--primary);
}
.faq-item summary svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item .faq-content {
  padding: 1.25rem 1.5rem;
  background: var(--white);
  color: var(--text);
  line-height: 1.75;
}
.faq-item .faq-content p { margin-top: 0; }

/* ─── ZONES ──────────────────────────────────────────── */
.zones {
  background: var(--bg);
  padding: 80px 24px;
  text-align: center;
}
.zones h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}
.zones p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text);
}

/* ─── MENTIONS LÉGALES ───────────────────────────────── */
.legal {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px;
  line-height: 1.75;
}
.legal h1 {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}
.legal h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 2rem;
}

/* ─── ICÔNES SVG DANS LES BOUTONS ───────────────────── */
.btn-primary svg,
.btn-whatsapp svg,
.btn svg,
.btn-guide svg,
.btn-guide-faq svg,
.phone-btn svg {
  vertical-align: middle;
  flex-shrink: 0;
}

.btn-primary,
.btn-whatsapp,
.btn,
.btn-guide,
.btn-guide-faq,
.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ─── STATS BAR ──────────────────────────────────────── */
.stats-bar {
  background: var(--primary);
  color: var(--white);
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
  padding-bottom: 80px;
}
.stats-bar::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath fill='%23FFF4E6' d='M0,40 Q180,8 360,40 Q540,72 720,40 Q900,8 1080,40 Q1260,72 1440,40 L1440,80 L0,80 Z'/%3E%3C%2Fsvg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}

.stat {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,.15);
  text-align: center;
}
.stat:last-child { border-right: none; }

.stat-number {
  font-family: 'Manrope', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.88rem;
  opacity: 0.8;
  margin-top: 0.4rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─── AVANTAGES — GRILLE AVEC ICÔNES ────────────────── */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto 2.5rem;
  text-align: left;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.advantage-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.advantage-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.advantage-icon svg {
  width: 22px;
  height: 22px;
}

.advantage-item strong {
  display: block;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.advantage-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ─── HERO BENEFITS — ICÔNES SVG ────────────────────── */
.hero-benefits li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ─── HERO TRUST ─────────────────────────────────────── */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust svg { flex-shrink: 0; }

/* ─── CONTACT SECTION — FORMULAIRE + CARD ───────────── */
.contact-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contact-card h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-card h2 svg { color: var(--secondary); }
.contact-card .subtitle {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.phone-link-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Manrope', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(245,166,35,.35);
  transition: background var(--transition), transform var(--transition);
  margin-bottom: 1rem;
}
.phone-link-big:hover {
  background: var(--secondary-hover);
  color: var(--primary);
  transform: translateY(-2px);
}
.phone-link-big svg { flex-shrink: 0; }

.email-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: color var(--transition);
}
.email-link:hover { color: var(--secondary); }

.contact-divider {
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
  margin: 1.25rem 0;
  position: relative;
  width: 100%;
}
.contact-divider::before,
.contact-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 35%;
  height: 1px;
  background: var(--border);
}
.contact-divider::before { left: 0; }
.contact-divider::after { right: 0; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  width: 100%;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 0.9rem 2rem;
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--transition), transform var(--transition);
  margin-top: 0.5rem;
}
.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ─── FOOTER ENRICHI ─────────────────────────────────── */
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding: 2rem 1.5rem;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.footer-brand .footer-logo img {
  display: none;
}
.footer-brand .footer-logo-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
}
.footer-brand p {
  color: rgba(255,255,255,.6);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.8);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-contact-item:hover { color: var(--secondary); }
.footer-contact-item svg { flex-shrink: 0; opacity: 0.7; }

.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 1rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 0.5rem;
}
.footer-col ul li a {
  color: rgba(255,255,255,.75);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--secondary); }

.footer-bottom {
  background: var(--primary-dark);
  text-align: center;
  padding: 0.85rem 2rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,.45);
}

/* ─── HERO BADGE ─────────────────────────────────────── */
.hero-image {
  position: relative;
  display: none;
}

.hero-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.3;
  padding: 10px;
  box-shadow: 0 8px 28px rgba(232, 93, 38, .45);
  z-index: 2;
  border: 3px solid var(--white);
}

/* ─── SOCIAL PROOF STRIP ─────────────────────────────── */
.social-proof {
  background: var(--bg-sand);
  border-top: 1px solid rgba(245, 166, 35, .25);
  padding: 0.85rem 1.5rem 80px;
  overflow: hidden;
  position: relative;
}
.social-proof::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath fill='%23FAF8F5' d='M0,40 Q180,72 360,40 Q540,8 720,40 Q900,72 1080,40 Q1260,8 1440,40 L1440,80 L0,80 Z'/%3E%3C%2Fsvg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}

.social-proof-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

.proof-item svg {
  color: var(--success);
  flex-shrink: 0;
}

.proof-sep {
  color: var(--border);
  font-size: 1.1rem;
  line-height: 1;
}

/* ─── ABOUT — SECTION SOMBRE REDESIGNÉE ──────────────── */
.about-new {
  background: linear-gradient(135deg, #0e2440 0%, #1A4172 100%);
  padding: 90px 24px;
  color: var(--white);
  text-align: left;
  position: relative;
}
.about-new::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath fill='%23FAF8F5' d='M0,40 Q180,8 360,40 Q540,72 720,40 Q900,8 1080,40 Q1260,72 1440,40 L1440,80 L0,80 Z'/%3E%3C%2Fsvg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-tag {
  display: inline-block;
  background: rgba(245, 166, 35, .15);
  color: var(--secondary);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(245, 166, 35, .3);
}

.about-text h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 1.25rem;
  line-height: 1.2;
}

.about-text h2 span { color: var(--secondary); }

.about-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 1rem;
}

.about-certif {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  margin-top: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
}
.about-certif svg { color: var(--secondary); flex-shrink: 0; }

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-stat {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}
.about-stat:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-3px);
}

.about-stat-num {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.about-stat-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, .65);
  font-weight: 500;
  line-height: 1.3;
}

/* ─── CTA BAR FINALE ─────────────────────────────────── */
.cta-finale {
  background: var(--bg-sand);
  padding: 48px 24px;
  border-top: 1px solid rgba(245, 166, 35, .2);
}

.cta-finale-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-finale-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(232, 93, 38, .35);
}

.cta-finale-text { flex: 1; }
.cta-finale-text strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.cta-finale-text span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.cta-finale-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.cta-finale-tel {
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  color: var(--text-light);
  text-align: right;
}
.cta-finale-tel a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
.cta-finale-tel a:hover { color: var(--secondary); }

/* ─── AVANTAGES — SECTION ───────────────────────────── */
.advantages {
  padding: 80px 24px;
  text-align: center;
  background:
    radial-gradient(circle, rgba(245,166,35,.08) 1.5px, transparent 1.5px)
    center / 22px 22px,
    var(--bg);
}
.advantages h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2.5rem;
}

/* ─── PACKS ───────────────────────────────────────────── */
.packs {
  padding: 80px 24px;
  background: var(--white);
  text-align: center;
}
.packs h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2.5rem;
}

/* ─── BANNIÈRE PROVENCE ───────────────────────────────── */
.banner-provence {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('assets/maison-provence.jpg') center / cover no-repeat;
  overflow: hidden;
}
.banner-provence::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(12,28,50,.88) 35%, rgba(12,28,50,.45) 100%);
}
.banner-provence-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--white);
}
.banner-provence-inner h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.banner-provence-inner p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 1.75rem;
}
@media (max-width: 600px) {
  .banner-provence { min-height: 300px; }
  .banner-provence-inner h2 { font-size: 1.5rem; }
}

/* ─── AVANT / APRÈS SLIDER ───────────────────────────── */
.ba-section {
  padding: 80px 24px;
  background: var(--bg);
  text-align: center;
}
.ba-section h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.ba-section > p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.ba-slider {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  box-shadow: var(--shadow-lg);
}

.ba-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.ba-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: var(--white);
  z-index: 4;
  box-shadow: 0 0 10px rgba(0,0,0,.35);
  cursor: ew-resize;
}

.ba-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 3px 16px rgba(0,0,0,.3);
  color: var(--primary);
}

.ba-label {
  position: absolute;
  top: 16px;
  background: rgba(0,0,0,.52);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  pointer-events: none;
  z-index: 3;
}
.ba-label-before { left: 16px; }
.ba-label-after  { right: 16px; }

@media (max-width: 600px) {
  .ba-img { height: 260px; }
}

/* ─── PHASE 4 — ANIMATIONS & SCROLL REVEAL ──────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.d1 { transition-delay: 0.05s; }
.reveal.d2 { transition-delay: 0.13s; }
.reveal.d3 { transition-delay: 0.21s; }
.reveal.d4 { transition-delay: 0.29s; }
.reveal.d5 { transition-delay: 0.37s; }
.reveal.d6 { transition-delay: 0.45s; }

/* Hero entrance animation */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content .hero-title    { animation: heroFadeIn 0.8s ease 0.10s both; }
.hero-content .hero-subtitle { animation: heroFadeIn 0.8s ease 0.25s both; }
.hero-content .hero-benefits { animation: heroFadeIn 0.8s ease 0.40s both; }
.hero-content .hero-cta      { animation: heroFadeIn 0.8s ease 0.55s both; }
.hero-content .hero-trust    { animation: heroFadeIn 0.8s ease 0.65s both; }

/* Form feedback states */
.form-feedback {
  display: none;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  margin-top: 1rem;
  align-items: center;
  gap: 8px;
}
.form-feedback.show    { display: flex; }
.form-feedback.success { background: rgba(22,160,133,.1); border: 1.5px solid var(--success); color: #0e6251; }
.form-feedback.error   { background: rgba(232,93,38,.08); border: 1.5px solid var(--accent);  color: var(--accent); }

/* Submit button loading state */
.form-submit.loading {
  opacity: 0.72;
  pointer-events: none;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.form-submit.loading svg { animation: spin 0.9s linear infinite; }

/* ─── Formulaire de devis : wizard multi-étapes ──────────────────────────── */

/* Stepper */
.form-stepper {
  display: flex;
  align-items: flex-start;
  margin-bottom: 28px;
}
.form-stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.stepper-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #a0aec0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  transition: background .3s, color .3s;
}
.form-stepper-step.active .stepper-dot {
  background: var(--primary);
  color: #fff;
}
.form-stepper-step.done .stepper-dot {
  background: var(--secondary);
  color: #fff;
}
.stepper-label {
  font-size: 10px;
  font-weight: 700;
  color: #a0aec0;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
  transition: color .3s;
}
.form-stepper-step.active .stepper-label,
.form-stepper-step.done .stepper-label {
  color: var(--primary);
}
.stepper-line {
  flex: 1;
  height: 2px;
  background: #e2e8f0;
  margin: 14px 6px 0;
  transition: background .3s;
}
.stepper-line.done { background: var(--secondary); }

/* Steps */
.form-step { display: none; }
.form-step.active {
  display: block;
  animation: stepIn .22s ease;
}
@keyframes stepIn {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Step navigation bar */
.form-step-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}
.step-prev {
  background: none;
  border: 1.5px solid #cbd5e1;
  color: #5a6b7b;
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.step-prev:hover { border-color: var(--primary); color: var(--primary); }
.step-next {
  background: var(--primary);
  border: none;
  color: #fff;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.step-next:hover { background: #14345e; }

/* Radio error */
.radio-error-msg {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 4px 0;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
}
.radio-label input[type="radio"] {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}
.file-upload-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.file-upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
.file-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: #f0f4f8;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}
.file-upload-btn:hover {
  background: #e2e8f0;
  border-color: var(--primary);
}
.file-upload-name {
  font-size: 13px;
  color: #8898aa;
  font-style: italic;
}
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text);
  line-height: 1.55;
}
.check-label input[type="checkbox"] {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
.required {
  color: var(--accent);
  font-weight: 700;
}
.field-optional {
  color: #8898aa;
  font-size: 12px;
  font-weight: 400;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal.d1, .reveal.d2, .reveal.d3,
  .reveal.d4, .reveal.d5, .reveal.d6 { transition-delay: 0s; }
  .hero-content .hero-title,
  .hero-content .hero-subtitle,
  .hero-content .hero-benefits,
  .hero-content .hero-cta,
  .hero-content .hero-trust { animation: none; }
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title { font-size: 2.1rem; }
  .hero-image { display: none; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-whatsapp { justify-content: center; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stat { flex: 1 1 150px; }
  .about-container { grid-template-columns: 1fr; gap: 48px; }
  .about-new { text-align: center; }
  .about-certif { justify-content: center; }
  .cta-finale-inner { flex-direction: column; text-align: center; }
  .cta-finale-actions { align-items: center; }
  .cta-finale-tel { text-align: center; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  nav ul {
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    width: 220px;
    padding: 1rem;
    box-shadow: var(--shadow-md);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    display: none;
  }
  nav ul.open { display: flex; }
  nav ul li { margin: 0.25rem 0; }

  header { padding: 0.85rem 1.25rem; }
  .hero { padding: 70px 16px; min-height: auto; }
  .hero-title { font-size: 1.85rem; }
  .advantages, .about, .contact, .slider-section, .packs { padding: 60px 16px; }
  .pricing-section, .call-to-action, .features-compare { padding: 60px 16px; }
  .pack-card { flex: 1 1 100%; min-height: auto; }
  .pricing-table th,
  .pricing-table td { padding: 0.5rem 0.4rem; font-size: 0.85rem; }
  .slider-container { height: 280px; }
  .cta-bar { flex-direction: column; text-align: center; }
  .btn.btn-call { width: 100%; text-align: center; }
  .pack-details, .faq { padding: 40px 16px; }
  .advantages-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; padding: 2rem 1.25rem; gap: 1.5rem; }
  .stats-bar { flex-direction: row; }
  .stat { padding: 1.25rem 1rem; }
  .stat-number { font-size: 1.9rem; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.65rem; }
  .slider-container { height: 240px; }
  .pack-card .price { font-size: 1.6rem; }
  .pricing-section h2 { font-size: 1.6rem; }
  .fc-table { font-size: 0.88rem; }
  .hero.small-hero h1 { font-size: 1.7rem; }
  .slider-overlay p { font-size: 0.9rem; }
  .stats-bar { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  .stat:last-child { border-bottom: none; }
  .contact-card, .contact-form-card { padding: 1.75rem 1.25rem; }
  .phone-link-big { font-size: 1.1rem; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .about-stat-num { font-size: 1.9rem; }
  .proof-sep { display: none; }
  .social-proof-inner { gap: 0.75rem; justify-content: flex-start; }

  /* Wizard form */
  .form-stepper { gap: 0; }
  .stepper-dot { width: 26px; height: 26px; font-size: 11px; }
  .stepper-label { font-size: 9px; letter-spacing: .04em; }
  .stepper-line { margin: 12px 4px 0; }
  .form-step-nav { flex-direction: column-reverse; gap: 8px; }
  .step-next, .step-prev, .form-step-nav .form-submit { width: 100%; justify-content: center; text-align: center; }

  /* Banner Provence */
  .banner-provence-inner { padding: 40px 20px; }
  .banner-provence-inner h2 { font-size: 1.3rem; }

  /* Guide table scroll horizontal */
  .guide-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

@media (max-width: 400px) {
  .stepper-label { display: none; }
  .stepper-line { margin-top: 13px; }
}

/* ─── Page 404 ───────────────────────────────────────────────────────────── */
.page-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: var(--bg);
  text-align: center;
}
.page-404-inner { max-width: 520px; }
.page-404-code {
  font-size: 7rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  opacity: .12;
  letter-spacing: -.04em;
  margin-bottom: -24px;
  font-family: 'Manrope', sans-serif;
}
.page-404-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 16px;
}
.page-404-text {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 32px;
}
.page-404-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.page-404-links {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.page-404-links a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}
.page-404-links a:hover { color: var(--secondary); }

/* ─── Bandeau cookies RGPD ───────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1A4172;
  color: #fff;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -4px 24px rgba(0,0,0,.18);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  flex: 1 1 280px;
  color: rgba(255,255,255,.9);
}
.cookie-text a {
  color: #F5A623;
  text-decoration: underline;
  white-space: nowrap;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn-refuse {
  background: none;
  border: 1.5px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.85);
  border-radius: 7px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.cookie-btn-refuse:hover { border-color: #fff; color: #fff; }
.cookie-btn-accept {
  background: #F5A623;
  border: none;
  color: #fff;
  border-radius: 7px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.cookie-btn-accept:hover { background: #e09520; }
@media (max-width: 520px) {
  .cookie-inner { padding: 14px 16px; }
  .cookie-actions { width: 100%; }
  .cookie-btn-refuse, .cookie-btn-accept { flex: 1; text-align: center; }
}
