﻿/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   VARIABLES â€“ modifiez les couleurs ici
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
:root {
  --navy:        #0f2744;   /* Bleu marine foncÃ© (header, hero, footer) */
  --navy-soft:   #1a3d6b;   /* Bleu marine intermÃ©diaire */
  --blue:        #2563a8;   /* Bleu principal (liens, icÃ´nes, labels) */
  --blue-mid:    #3b82c4;   /* Bleu moyen (hover, accents) */
  --sky:         #e8f2fb;   /* Bleu trÃ¨s clair (fonds de cartes) */
  --sky-dark:    #d4e7f7;   /* Bleu clair (numÃ©ros dÃ©coratifs) */
  --white:       #ffffff;
  --off-white:   #f8fafc;   /* Fond des sections lÃ©gÃ¨rement grisÃ© */
  --warm-gray:   #f1f5f9;   /* SÃ©parateurs, fonds neutres */
  --text:        #0d1f35;   /* Couleur de texte principale */
  --text-mid:    #374f6b;   /* Texte secondaire */
  --text-light:  #64829e;   /* Texte discret (descriptions, notes) */
  --orange:      #e8652a;   /* Couleur d'accent (boutons CTA, badges) */
  --orange-soft: #f5885a;   /* Orange hover */
  --border:      #cddce9;   /* Couleur des bordures */

  /* Rayons de bordure */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;

  /* Ombres */
  --shadow-sm: 0 2px 12px rgba(15, 39, 68, .08);
  --shadow-md: 0 6px 30px rgba(15, 39, 68, .12);
  --shadow-lg: 0 16px 60px rgba(15, 39, 68, .18);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BASE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HEADER & NAVIGATION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* ═══════════════════════════════════════
   HEADER & NAVIGATION — NOUVEAU DESIGN
═══════════════════════════════════════ */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  transition: border-color .3s, box-shadow .3s, height .3s;
}
header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(15, 39, 68, .08);
  height: 68px;
}

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 46px;
  height: 46px;
  background: var(--navy);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform .2s;
}
.logo:hover .logo-mark { transform: scale(1.05); }
.logo-mark::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 16px; height: 16px;
  background: var(--orange);
  border-radius: 5px 0 0 0;
}
.logo-mark i {
  color: white;
  font-size: 19px;
  position: relative;
  z-index: 1;
}
.logo-name {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
}
.logo-sub {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: .02em;
}

/* ── Nav desktop ── */
nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  position: relative;
  padding: 7px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  border-radius: 8px;
  transition: background .18s, color .18s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.nav-link:hover {
  background: var(--sky);
  color: var(--blue);
}
.nav-link.active {
  color: var(--navy);
  font-weight: 600;
}
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: 12px;
  background: var(--navy);
  color: white !important;
  padding: 10px 18px !important;
  border-radius: 10px;
  font-weight: 600 !important;
  font-size: 0.87rem !important;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(15, 39, 68, .2);
  white-space: nowrap;
}
.nav-phone:hover {
  background: var(--blue) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15, 39, 68, .28);
}
.nav-phone i { font-size: 0.85rem; opacity: .8; }

/* ── Hamburger mobile — morphing lines ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: border-color .2s, background .2s;
}
.hamburger:hover {
  background: var(--sky);
  border-color: var(--blue-mid);
}
.hbg-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), opacity .2s, width .3s;
  transform-origin: center;
}
.hamburger.active { background: var(--sky); border-color: var(--blue-mid); }
.hamburger.active .hbg-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .hbg-line:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active .hbg-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Backdrop ── */
.mob-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, .45);
  backdrop-filter: blur(3px);
  z-index: 198;
  opacity: 0;
  transition: opacity .3s;
}
.mob-backdrop.open {
  display: block;
  opacity: 1;
}

/* ── Mobile drawer ── */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 90vw);
  background: white;
  z-index: 199;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(15, 39, 68, .15);
  overflow-y: auto;
}
.mobile-nav.open {
  transform: translateX(0);
}

/* Drawer header */
.mob-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--warm-gray);
  flex-shrink: 0;
}
.mob-close {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: none;
  cursor: pointer;
  color: var(--text-mid);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  flex-shrink: 0;
}
.mob-close:hover { background: var(--sky); color: var(--navy); }

/* Drawer links */
.mob-nav-links {
  display: flex;
  flex-direction: column;
  padding: 16px 16px;
  gap: 4px;
  flex: 1;
}
.mob-nav-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
  transition: background .18s, color .18s;
  position: relative;
}
.mob-nav-links a:hover {
  background: var(--sky);
  color: var(--blue);
}
.mob-link-icon {
  width: 38px;
  height: 38px;
  background: var(--sky);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .18s;
}
.mob-nav-links a:hover .mob-link-icon {
  background: var(--blue);
}
.mob-link-icon i {
  font-size: 0.95rem;
  color: var(--blue);
  transition: color .18s;
}
.mob-nav-links a:hover .mob-link-icon i { color: white; }
.mob-arrow {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--text-light);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .18s, transform .18s;
}
.mob-nav-links a:hover .mob-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Drawer footer */
.mob-footer {
  padding: 20px 16px 32px;
  border-top: 1px solid var(--warm-gray);
  flex-shrink: 0;
}
.mob-cta-phone {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--navy);
  border-radius: 14px;
  padding: 18px 20px;
  text-decoration: none;
  color: white;
  margin-bottom: 14px;
  transition: background .2s;
}
.mob-cta-phone:hover { background: var(--blue); }
.mob-cta-phone > i {
  font-size: 1.3rem;
  color: var(--orange);
  flex-shrink: 0;
}
.mob-cta-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 2px;
}
.mob-cta-num {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .03em;
}
.mob-availability {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.mob-availability i { color: var(--blue); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#accueil {
  background: var(--navy);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Blobs de couleur dÃ©coratifs */
#accueil::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 168, .5) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
#accueil::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 101, 42, .18) 0%, transparent 70%);
  bottom: -100px;
  left: 5%;
  pointer-events: none;
}

.hero-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 6%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
/* Image hero (colonne de droite) */
.hero-image {
  width: 100%;
  max-width: 420px;
  justify-self: end;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .18);
}
.hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

/* Badge au-dessus du titre */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .85);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-label span {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
}

/* Titre principal */
.hero-text h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.13;
  color: white;
  margin-bottom: 24px;
}
.hero-text h1 em {
  font-style: italic;
  color: #7ec8f0;
}
.hero-text p {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, .7);
  max-width: 500px;
  margin-bottom: 44px;
  line-height: 1.75;
}

/* Boutons hero */
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: white;
  padding: 16px 34px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(232, 101, 42, .4);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232, 101, 42, .5);
  background: var(--orange-soft);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .22);
  color: white;
  padding: 16px 30px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: background .2s;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .15); }

/* Pills (petits indicateurs) */
.hero-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .75);
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 50px;
}
.pill i { color: #7ec8f0; font-size: 0.85rem; }

/* Carte flottante (cÃ´tÃ© droit du hero) */
.hero-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .25);
}
.hero-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--warm-gray);
  margin-bottom: 22px;
}
.hc-icon {
  width: 52px;
  height: 52px;
  background: var(--sky);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hc-icon i { color: var(--blue); font-size: 1.4rem; }
.hc-title {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}
.hc-sub { font-size: 0.82rem; color: var(--text-light); }
.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}
.hc-stat {
  background: var(--off-white);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.hc-stat .num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.hc-stat .lbl {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 4px;
}
.hero-phone-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  border-radius: 12px;
  padding: 18px 20px;
  text-decoration: none;
}
.hero-phone-cta i { color: var(--orange); font-size: 1.4rem; }
.hero-phone-cta .p-lbl { font-size: 0.75rem; color: rgba(255, 255, 255, .5); margin-bottom: 2px; }
.hero-phone-cta .p-num { font-size: 1.1rem; font-weight: 600; color: white; letter-spacing: .03em; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BANDE DE CONFIANCE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.trust-bar {
  background: var(--sky);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 6%;
}
.trust-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 36px;
  border-right: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
}
.trust-item:last-child { border-right: none; }
.trust-item i { color: var(--blue); font-size: 1rem; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTIONS COMMUNES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
section { padding: 96px 6%; }
.container { max-width: 1160px; margin: 0 auto; }

/* Label de section (ex: "Nos services") */
.s-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.s-label::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  display: block;
}

/* Titre de section */
.s-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 14px;
}
.s-title em { font-style: italic; color: var(--blue-mid); }

/* Description de section */
.s-desc { font-size: 1rem; color: var(--text-light); max-width: 540px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION SERVICES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#services { background: var(--off-white); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.srv-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 36px 30px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
.srv-card:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
/* Barre colorÃ©e au survol */
.srv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  opacity: 0;
  transition: opacity .2s;
}
.srv-card:hover::before { opacity: 1; }

/* NumÃ©ro dÃ©coratif */
.srv-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--sky-dark);
  line-height: 1;
  user-select: none;
}
.srv-icon {
  width: 58px; height: 58px;
  background: var(--sky);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background .2s;
}
.srv-card:hover .srv-icon { background: var(--blue); }
.srv-icon i { font-size: 1.5rem; color: var(--blue); transition: color .2s; }
.srv-card:hover .srv-icon i { color: white; }
.srv-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem; font-weight: 600;
  color: var(--navy); margin-bottom: 10px;
}
.srv-card p { font-size: 0.93rem; color: var(--text-light); line-height: 1.7; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION POURQUOI NOUS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#pourquoi { background: white; }
.why-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

/* Bloc visuel statistiques (cÃ´tÃ© gauche) */
.why-visual {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(37, 99, 168, .4) 0%, transparent 70%);
}
.why-visual::after {
  content: '';
  position: absolute; bottom: -40px; left: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(232, 101, 42, .2) 0%, transparent 70%);
}
.why-big-num {
  font-family: 'Fraunces', serif;
  font-size: 5.5rem; font-weight: 700;
  color: rgba(255, 255, 255, .08);
  line-height: 1;
  position: relative; z-index: 1;
}
.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  position: relative; z-index: 1;
}
.why-stat {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-sm);
  padding: 22px 18px;
}
.why-stat .n {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem; font-weight: 700;
  color: white; line-height: 1;
}
.why-stat .l { font-size: 0.82rem; color: rgba(255, 255, 255, .5); margin-top: 5px; }
.why-stat .icon { font-size: 1.1rem; color: var(--orange); margin-bottom: 10px; }

/* Liste des engagements (cÃ´tÃ© droit) */
.why-right .s-desc { margin-bottom: 40px; }
.why-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 32px;
}
.why-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 24px;
  border-radius: var(--r-md);
  background: var(--off-white);
  border: 1px solid var(--border);
  transition: border-color .2s, box-shadow .2s;
}
.why-item:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--shadow-sm);
}
.why-item-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--sky); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.why-item-icon i { font-size: 1.15rem; color: var(--blue); }
.why-item h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--navy); margin-bottom: 4px;
}
.why-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION TARIFS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#tarifs { background: var(--off-white); }
.tarifs-header { text-align: center; margin-bottom: 56px; }
.tarifs-header .s-label { justify-content: center; }
.tarifs-header .s-title { text-align: center; }
.tarifs-header .s-desc { text-align: center; margin: 10px auto 0; }
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.tarif-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  display: flex; flex-direction: column;
  transition: box-shadow .25s, transform .25s;
  position: relative; overflow: hidden;
}
.tarif-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }

/* Carte mise en avant */
.tarif-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}
.featured-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--orange); color: white;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px;
}
.tarif-plan {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--blue); margin-bottom: 18px;
}
.tarif-card.featured .tarif-plan { color: rgba(255, 255, 255, .5); }
.tarif-amount {
  font-family: 'Fraunces', serif;
  font-size: 3.8rem; font-weight: 700;
  color: var(--navy); line-height: 1;
  margin-bottom: 4px;
}
.tarif-card.featured .tarif-amount { color: white; }
.tarif-amount .euro {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.4rem;
  color: var(--text-light);
}
.tarif-card.featured .tarif-amount .euro { color: rgba(255, 255, 255, .4); }
.tarif-per { font-size: 0.88rem; color: var(--text-light); margin-bottom: 28px; }
.tarif-card.featured .tarif-per { color: rgba(255, 255, 255, .4); }
.tarif-divider { height: 1px; background: var(--warm-gray); margin-bottom: 28px; }
.tarif-card.featured .tarif-divider { background: rgba(255, 255, 255, .1); }
.tarif-desc { font-size: 0.92rem; color: var(--text-light); margin-bottom: 24px; line-height: 1.65; }
.tarif-card.featured .tarif-desc { color: rgba(255, 255, 255, .55); }
.tarif-features {
  list-style: none; flex: 1;
  margin-bottom: 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.tarif-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.93rem; color: var(--text-mid);
}
.tarif-card.featured .tarif-features li { color: rgba(255, 255, 255, .75); }
.tarif-features li .chk {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--sky); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.tarif-card.featured .tarif-features li .chk { background: rgba(255, 255, 255, .1); }
.tarif-features li .chk i { font-size: 0.7rem; color: var(--blue); }
.tarif-card.featured .tarif-features li .chk i { color: var(--orange); }
.btn-tarif {
  display: block; width: 100%; padding: 15px;
  border-radius: 10px; text-align: center; text-decoration: none;
  font-weight: 600; font-size: 0.92rem;
  background: var(--sky); color: var(--navy);
  border: 1.5px solid var(--border);
  transition: background .2s, color .2s, border-color .2s;
}
.btn-tarif:hover { background: var(--navy); color: white; border-color: var(--navy); }
.tarif-card.featured .btn-tarif { background: var(--orange); color: white; border-color: var(--orange); }
.tarif-card.featured .btn-tarif:hover { background: var(--orange-soft); border-color: var(--orange-soft); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION CONTACT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#contact { background: white; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Fraunces', serif;
  font-size: 2rem; font-weight: 600;
  color: var(--navy); margin-bottom: 12px;
}
.contact-info > p { font-size: 0.97rem; color: var(--text-light); margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 14px; }
.c-item {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-decoration: none; color: inherit;
  background: var(--off-white);
  transition: border-color .2s, box-shadow .15s, transform .15s;
}
.c-item:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.c-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: var(--navy); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.c-icon i { color: white; font-size: 1.2rem; }
.c-icon.orange { background: var(--orange); }
.c-label {
  font-size: 0.73rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-light); margin-bottom: 3px;
}
.c-val {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--navy);
}
.c-note { font-size: 0.8rem; color: var(--text-light); }

/* Formulaire */
.form-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 44px 40px;
}
.form-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem; font-weight: 600;
  color: var(--navy); margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fg { margin-bottom: 18px; }
.fg label {
  display: block;
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 7px;
}
.fg input,
.fg textarea,
.fg select {
  width: 100%; padding: 13px 16px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(59, 130, 196, .12);
}
.fg textarea { resize: vertical; min-height: 110px; }
.btn-send {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 16px;
  background: var(--navy); color: white;
  border: none; border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-send:hover { background: var(--blue); transform: translateY(-2px); }
.form-ok {
  display: none; margin-top: 16px; padding: 16px;
  background: #ecfdf5; border: 1px solid #a7f3d0;
  border-radius: 10px; color: #065f46;
  font-size: 0.95rem; text-align: center;
}
.form-ok.show { display: block; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
footer {
  background: var(--navy);
  padding: 64px 6% 32px;
  color: rgba(255, 255, 255, .65);
}
.footer-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 18px; display: inline-flex; }
.footer-brand .logo-name { color: white; }
.footer-brand p {
  font-size: 0.9rem; line-height: 1.8;
  color: rgba(255, 255, 255, .45);
  max-width: 300px;
}
.f-col h5 {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 18px;
}
.f-col a {
  display: block;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-size: 0.92rem; padding: 5px 0;
  transition: color .2s;
}
.f-col a:hover { color: white; }
.footer-bottom {
  max-width: 1160px; margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-size: 0.82rem; color: rgba(255, 255, 255, .3);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ANIMATIONS AU DÃ‰FILEMENT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€“ TABLETTE (â‰¤ 1000px)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1000px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-image { max-width: 520px; justify-self: center; }
  .hero-card { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-layout { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .why-list { grid-template-columns: 1fr 1fr; }
  .tarifs-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€“ MOBILE (â‰¤ 640px)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 640px) {
  body { font-size: 17px; }
  section { padding: 64px 5%; }
  header { padding: 0 5%; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-item {
    padding: 8px 18px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .trust-item:last-child { border-bottom: none; }
  .trust-inner { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .form-card { padding: 28px 22px; }
  .why-list { grid-template-columns: 1fr; }
  .newsletter-form-wrap iframe { height: 580px; }
}

