/* ==============================================
   Accès Clean — styles.css  (redesign premium 2026)
   Palette: Navy #1a6599 · Green CTA #2FAF84 · Light #F7FCFD
   Font: Inter + Plus Jakarta Sans
   ============================================== */

:root {
  --primary:        #2d8f7f;
  --primary-dark:   #1e6a5e;
  --primary-light:  #dff2ef;
  --primary-pale:   #f0fbf9;
  --navy:           #1a6599;
  --navy-mid:       #2d8f7f;
  --bg:             #f0fbf9;
  --bg-alt:         #e6f7f4;
  --text:           #1a6599;
  --text-muted:     #4a6070;
  --border:         #d8e8f0;
  --white:          #ffffff;
  --footer-bg:      #061d35;
  --star:           #f59e0b;
  --shadow-sm:      0 2px 8px rgba(13,32,64,.05);
  --shadow:         0 6px 24px rgba(13,32,64,.08);
  --shadow-lg:      0 12px 35px rgba(13,32,64,.10);
  --radius:         14px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --transition:     .25s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: 110px 0; }
.hidden { display: none !important; }

/* ---- Global heading style ---- */
h1, h2, h3, h4 {
  font-family: 'Inter', 'Plus Jakarta Sans', system-ui, sans-serif;
  color: #1a6599;
  font-weight: 700;
  line-height: 1.1;
}

/* ---- Section h2 — Inter bold, deep navy ---- */
section h2 {
  font-family: 'Inter', 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.12;
  color: #1a6599;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #1a6599;
  background-clip: unset;
}
section h2 em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
  background: none;
  font-weight: 400;
}

/* ---- Italic accent — Cormorant Garamond cursive ---- */
em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
}

/* ---- SVG color overrides for hardcoded teal icons ---- */
.abt-feat-icon svg { stroke: var(--primary) !important; }
.methode-check svg { stroke: var(--primary) !important; }
.mbb-checks span svg { stroke: var(--primary) !important; }
.temo-note svg { stroke: var(--navy-mid) !important; fill: none !important; }
.abt-bubble svg { stroke: var(--navy-mid) !important; }
.footer-badges span svg { stroke: rgba(255,255,255,.55) !important; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .93rem;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -.01em;
  position: relative;
  overflow: hidden;
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.30);
  transform: scale(0);
  animation: btnRipple .55s ease-out forwards;
  pointer-events: none;
}
@keyframes btnRipple {
  to { transform: scale(2.5); opacity: 0; }
}
.btn-lg { padding: 15px 28px; font-size: .95rem; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(47,175,132,.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(47,175,132,.38);
}

.btn-outline-dark {
  background: var(--white);
  color: var(--text);
  border-color: var(--border);
  border-radius: 999px;
}
.btn-outline-dark:hover {
  border-color: var(--text);
  background: var(--white);
}

.btn-text-link {
  background: transparent;
  color: var(--navy-mid);
  border: none;
  padding: 14px 0;
  font-weight: 600;
}
.btn-text-link:hover { color: var(--primary); }

.btn-submit { padding: 14px 28px; }
.arrow { font-size: 1rem; }
.arrow-left { font-size: 1rem; }

/* ---- Section tag pills ---- */
.stag-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.stag-pill.stag-light {
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.9);
}
.stag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.stag-dot-light { background: rgba(255,255,255,.8); }

.section-tag-line { margin-bottom: 0; }
.section-center-cta { text-align: center; margin-top: 52px; }

/* ==============================================
   NAVBAR
   ============================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(8,43,73,.07);
}

.nav-container {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 24px;
}

.logo { display: flex; align-items: center; }
.logo-mark { height: 68px; flex-shrink: 0; }
.logo-mark img { height: 100%; width: auto; display: block; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  background: var(--bg);
  border-radius: 999px;
  padding: 4px 5px;
  border: 1px solid var(--border);
}
.nav-link {
  padding: 7px 17px;
  font-size: .855rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 999px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--text); background: var(--white); }
.nav-link.active { color: var(--white); background: var(--navy); font-weight: 600; }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .855rem;
  background: var(--primary);
  color: var(--white);
  border: 1.5px solid var(--primary);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-nav-cta:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(47,175,132,.3);
}

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--text); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==============================================
   HERO
   ============================================== */
.hero {
  position: relative;
  background: var(--bg);
  padding-top: 72px;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-decor { position: absolute; inset: 0; pointer-events: none; }
.decor-circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(8,43,73,.05);
  background: transparent;
}
.dc1 { width: 520px; height: 520px; top: -140px; right: -80px; background: radial-gradient(circle, rgba(234,247,251,.5) 0%, transparent 70%); border-color: rgba(8,43,73,.04); }
.dc2 { width: 340px; height: 340px; top: 60px; right: 60px; border-color: rgba(8,43,73,.03); }
.dc3 { width: 180px; height: 180px; bottom: 40px; left: 60px; border-color: rgba(47,175,132,.12); }
.dc4 { width: 80px; height: 80px; top: 200px; left: 200px; border-color: rgba(47,175,132,.1); }
.decor-leaf { display: none; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 80px 0 64px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #1a6599;
  line-height: 1.08;
  letter-spacing: -.025em;
  margin-bottom: 16px;
}

.hero-italic {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 22px;
  line-height: 1.25;
}

.hero-desc {
  font-size: .96rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hstat { display: flex; flex-direction: column; gap: 3px; padding: 0 22px; }
.hstat:first-child { padding-left: 0; }
.hstat strong { font-size: 1.1rem; font-weight: 700; color: var(--text); line-height: 1; }
.hstat span { font-size: .77rem; color: var(--text-muted); font-weight: 400; }
.hstat-sep { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* Hero micro-bubbles */
.hero-deco-bubbles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.9) 0%, rgba(234,247,251,.4) 45%, transparent 100%);
  border: 1.5px solid rgba(8,43,73,.09);
  animation: floatBubble ease-in-out infinite;
}
.hb::before {
  content: '';
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px solid rgba(8,43,73,.05);
}
.hb1  { width: 52px; height: 52px; top: -20px;  left: -36px;  animation-duration: 9s;  animation-delay: -2s; }
.hb2  { width: 30px; height: 30px; top: 18px;   left: 68%;    animation-duration: 11s; animation-delay: -5s; }
.hb3  { width: 20px; height: 20px; top: 55px;   left: -18px;  animation-duration: 8s;  animation-delay: -1s; }
.hb4  { width: 42px; height: 42px; top: 100px;  left: 72%;    animation-duration: 13s; animation-delay: -7s; }
.hb5  { width: 18px; height: 18px; top: 160px;  left: -28px;  animation-duration: 7s;  animation-delay: -3s; }
.hb6  { width: 36px; height: 36px; bottom: 60px; left: -22px; animation-duration: 12s; animation-delay: -9s; }
.hb7  { width: 24px; height: 24px; bottom: 30px; left: 55%;   animation-duration: 10s; animation-delay: -4s; }
.hb8  { width: 16px; height: 16px; top: 220px;  left: 60%;    animation-duration: 6s;  animation-delay: -6s; }

.hero-content { position: relative; }
.hero-content > *:not(.hero-deco-bubbles) { position: relative; z-index: 1; }

.hero-visual { position: relative; display: flex; flex-direction: column; align-items: center; }

.hero-img-wrap { position: relative; display: inline-block; }
.hero-img-wrap::before,
.hero-img-wrap::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(8,43,73,.1);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-img-wrap::before { width: 520px; height: 560px; }
.hero-img-wrap::after  { width: 620px; height: 660px; border-color: rgba(8,43,73,.05); }

.hero-img-circle {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(8,43,73,.12);
  border: 6px solid white;
  position: relative;
  z-index: 1;
}
.hero-img-circle img { width: 100%; height: 100%; object-fit: cover; }

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(8,43,73,.12);
  border: 1px solid var(--border);
  min-width: 170px;
  z-index: 2;
}
.fc-top { top: 40px; left: -60px; }
.fc-bottom { bottom: 60px; right: -48px; }

.fc-check {
  width: 32px; height: 32px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; flex-shrink: 0;
}
.fc-plus {
  width: 32px; height: 32px;
  background: #fef3c7;
  color: #d97706;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.float-card strong { display: block; font-size: .82rem; color: var(--text); line-height: 1.2; }
.float-card span { font-size: .75rem; color: var(--text-muted); }
.fc-mission { display: block; font-size: .78rem; font-weight: 600; color: var(--text); }
.fc-stars { color: var(--star); font-size: .9rem; letter-spacing: 1px; margin-top: 2px; }

.disponible-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--text);
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-top: 20px;
  box-shadow: 0 4px 16px rgba(8,43,73,.1);
  border: 1px solid var(--border);
}
.dispo-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .7; transform: scale(1.3); }
}

/* ==============================================
   SERVICES
   ============================================== */
.services-section { background: var(--white); padding-top: 80px; }

.services-title {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 700;
  color: #1a6599;
  line-height: 1.12;
  margin-bottom: 0;
  max-width: 700px;
}
.services-title em { font-size: inherit; font-style: italic; color: var(--navy-mid); -webkit-text-fill-color: var(--navy-mid); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(47,175,132,.3);
}
.svc-featured { border-color: rgba(47,175,132,.3); background: var(--primary-pale); }
.svc-featured:hover { border-color: rgba(47,175,132,.5); }

.svc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--primary);
  color: white;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 4px;
}

.svc-icon-wrap {
  width: 44px; height: 44px;
  background: var(--bg-alt);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-mid);
  flex-shrink: 0;
}

.svc-card h3 { font-size: .92rem; font-weight: 700; color: #0d1f3c; line-height: 1.35; }
.svc-card p { font-size: .845rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.svc-link {
  font-size: .84rem;
  font-weight: 600;
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition), color var(--transition);
  margin-top: auto;
}
.svc-link:hover { gap: 8px; color: var(--primary); }

/* ==============================================
   ABOUT
   ============================================== */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-illustration {
  position: relative;
  width: 440px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.abt-main-circle {
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: visible;
  background: none;
  box-shadow: none;
  position: relative;
  z-index: 1;
}
.abt-main-circle img { width: 100%; height: 100%; object-fit: contain; object-position: center center; }

.abt-bubble { display: none; }

.about-text-col h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 20px;
}
.about-text-col h2 em { font-style: italic; color: var(--navy-mid); -webkit-text-fill-color: var(--navy-mid); }
.about-text-col p { font-size: .94rem; color: var(--text-muted); line-height: 1.78; margin-bottom: 14px; }
.about-text-col strong { color: var(--text); font-weight: 600; }

.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 28px; }
.stag-pill-sm {
  background: var(--bg);
  color: var(--text-muted);
  border: 1px solid var(--border);
  font-size: .77rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 8px;
  transition: all var(--transition);
}
.stag-pill-sm:hover {
  background: var(--primary-light);
  border-color: rgba(47,175,132,.3);
  color: var(--primary-dark);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.abt-feat { display: flex; align-items: flex-start; gap: 12px; }
.abt-feat-icon {
  width: 28px; height: 28px;
  background: var(--primary-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.abt-feat strong { display: block; font-size: .88rem; color: var(--text); margin-bottom: 3px; }
.abt-feat p { font-size: .82rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

.about-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ==============================================
   NOTRE MÉTHODE
   ============================================== */
.methode-section { background: var(--bg); }

.methode-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.methode-header-left h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 600;
  line-height: 1.12;
  margin-top: 4px;
}
.methode-header-left h2 em { font-style: italic; color: var(--navy-mid); -webkit-text-fill-color: var(--navy-mid); }
.methode-header-right p { font-size: .93rem; color: var(--text-muted); line-height: 1.75; }
.methode-header-right strong { color: var(--text); }

.methode-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.methode-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.methode-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.methode-step-num {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--navy-mid);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
  background: var(--bg-alt);
  padding: 4px 10px;
  border-radius: 8px;
}

.methode-card h3 { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.methode-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.methode-check {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--primary-dark);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.methode-bottom-bar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}
.mbb-label { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.mbb-big { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.9rem; font-weight: 400; color: var(--primary); font-style: italic; line-height: 1; margin-bottom: 4px; }
.mbb-big em { font-family: 'Cormorant Garamond', Georgia, serif; color: var(--primary); -webkit-text-fill-color: var(--primary); font-style: italic; }
.mbb-sub { font-size: .82rem; color: var(--text-muted); }
.mbb-checks { display: flex; gap: 20px; flex-wrap: wrap; }
.mbb-checks span { display: flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 500; color: var(--text-muted); }

/* ==============================================
   SIX ENGAGEMENTS
   ============================================== */
.engagements-section {
  background: linear-gradient(135deg, #1a6599 0%, #0B5D8E 100%);
  position: relative;
  overflow: hidden;
}
.engagements-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 20%, rgba(255,255,255,.04) 0%, transparent 60%);
  pointer-events: none;
}

.eng-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
  position: relative;
  z-index: 1;
}
.eng-header h2,
.eng-header h2 em {
  font-family: 'Inter', 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 700;
  color: white;
  -webkit-text-fill-color: white;
  background: none;
  line-height: 1.1;
  margin-bottom: 4px;
  font-style: normal;
}
.eng-italic { margin-bottom: 18px; }
.eng-italic em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  color: rgba(255,255,255,.75);
  -webkit-text-fill-color: rgba(255,255,255,.75);
  font-weight: 400;
  font-style: italic;
}
.eng-desc { font-size: .93rem; color: rgba(255,255,255,.55); line-height: 1.72; max-width: 560px; margin: 0 auto; }

.eng-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.eng-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 20px;
  padding: 24px 22px 44px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.eng-card:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-3px);
}

.eng-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.eng-icon {
  width: 44px; height: 44px;
  background: rgba(47,175,132,.22);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #7EE8C0;
  flex-shrink: 0;
}

.eng-metric {
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255,255,255,.4);
  font-weight: 400;
  line-height: 1.2;
  text-align: right;
}

.eng-card h3 { font-size: .96rem; font-weight: 600; color: white; margin-bottom: 10px; line-height: 1.35; }
.eng-card p { font-size: .845rem; color: rgba(255,255,255,.58); line-height: 1.65; }

.eng-num {
  position: absolute;
  bottom: 14px;
  right: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(255,255,255,.05);
  line-height: 1;
}

.eng-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 24px 32px;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.eng-cta-text { flex: 1; }
.eng-cta-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  margin-bottom: 4px;
}
.eng-cta-italic em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.55rem;
  color: white;
  -webkit-text-fill-color: white;
  font-weight: 400;
}
.eng-cta-btns { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.btn-white-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,.32);
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 600;
  font-size: .93rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.55);
}

/* ==============================================
   TÉMOIGNAGES
   ============================================== */
.temoignages-section { background: var(--white); }

.temo-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}
.temo-header-left h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 600;
  line-height: 1.12;
  margin-top: 4px;
}
.temo-header-left h2 em { font-style: italic; color: var(--navy-mid); -webkit-text-fill-color: var(--navy-mid); }
.temo-header-right p { font-size: .93rem; color: var(--text-muted); line-height: 1.75; }
.temo-header-right strong { color: var(--text); }

.temo-stats-bar {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 0;
}
.temo-stat { flex: 1; display: flex; flex-direction: column; gap: 4px; min-width: 120px; }
.temo-stat strong { font-size: 1.45rem; font-weight: 700; color: var(--text); font-style: italic; }
.temo-stat span { font-size: .77rem; color: var(--text-muted); font-weight: 400; }
.temo-sep { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; margin: 0 20px; }

.temo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.temo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.temo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.temo-stars { color: var(--star); font-size: .93rem; letter-spacing: 2px; margin-bottom: 14px; }
.temo-card > p { font-size: .9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.temo-card strong { color: var(--text); font-style: normal; }
.temo-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; }
.temo-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--navy-mid);
  font-weight: 700;
  font-size: .8rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.temo-author strong { display: block; font-size: .875rem; color: var(--text); }
.temo-author span { font-size: .77rem; color: var(--text-muted); }

.temo-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
}
.temo-note svg { flex-shrink: 0; margin-top: 2px; }
.temo-note p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }
.temo-note strong { color: var(--text); }

/* ==============================================
   GALERIE
   ============================================== */
.galerie-section { background: var(--bg); }

.galerie-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.galerie-header-left h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 600;
  line-height: 1.12;
  margin-top: 4px;
}
.galerie-header-left h2 em { font-style: italic; color: var(--navy-mid); -webkit-text-fill-color: var(--navy-mid); }
.galerie-header-right p { font-size: .93rem; color: var(--text-muted); line-height: 1.75; }
.galerie-header-right strong { color: var(--text); }

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gal-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gal-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.gal-card:hover img { transform: scale(1.05); }

.gal-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(6,29,51,.8) 0%, transparent 100%);
  color: white;
  font-size: .84rem;
  font-weight: 600;
  padding: 32px 16px 14px;
}
.gal-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: white;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 100px;
  opacity: 0;
  transform: translateY(-4px);
  transition: all var(--transition);
}
.gal-card:hover .gal-tag { opacity: 1; transform: translateY(0); }

/* ==============================================
   FAQ
   ============================================== */
.faq-section { background: var(--white); }

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.faq-img-col img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 48px rgba(8,43,73,.1);
}

.faq-content-col h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 32px;
}
.faq-content-col h2 em { font-style: italic; color: var(--navy-mid); -webkit-text-fill-color: var(--navy-mid); }

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open { border-color: rgba(47,175,132,.4); box-shadow: 0 0 0 3px var(--primary-light); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  text-align: left;
  background: var(--white);
  transition: background var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.faq-q:hover { background: var(--bg); }

.faq-num {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--navy-mid);
  background: var(--bg-alt);
  padding: 3px 8px;
  border-radius: 6px;
  flex-shrink: 0;
}
.faq-text { flex: 1; font-size: .9rem; font-weight: 500; color: var(--text); line-height: 1.4; }
.faq-item.open .faq-text { color: var(--navy-mid); font-weight: 600; }

.faq-toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  font-weight: 700;
  transition: all var(--transition);
}
.faq-item:not(.open) .faq-toggle { background: var(--border); color: var(--text-muted); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 18px; }
.faq-a p { padding: 0 20px; font-size: .875rem; color: var(--text-muted); line-height: 1.75; }
.faq-a strong { color: var(--text); }

/* ==============================================
   DEVIS FORM
   ============================================== */
.devis-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.devis-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.devis-text-col h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.1;
  margin-top: 8px;
  margin-bottom: 4px;
}

.devis-italic { margin-bottom: 20px; }
.devis-italic em {
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: var(--navy-mid);
  -webkit-text-fill-color: var(--navy-mid);
  font-weight: 500;
}

.devis-lead {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.devis-lead strong { color: var(--text); }

.devis-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.devis-feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .93rem;
  color: var(--text-muted);
  font-weight: 500;
}
.devis-feat-check {
  width: 26px; height: 26px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.devis-urgent-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
}
.devis-urgent-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.devis-urgent-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
  margin-bottom: 6px;
  transition: color var(--transition);
}
.devis-urgent-phone:hover { color: var(--primary); }
.devis-urgent-hours { font-size: .78rem; color: var(--text-muted); }

.form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 16px 48px rgba(8,43,73,.08);
  border: 1px solid var(--border);
}

.form-steps-indicator {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
}
.fsi-dot { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.fsi-dot span {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-muted);
  font-weight: 600;
  font-size: .875rem;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--border);
  transition: all var(--transition);
}
.fsi-dot label { font-size: .7rem; font-weight: 500; color: var(--text-muted); white-space: nowrap; transition: color var(--transition); }
.fsi-dot.active span { background: var(--navy-mid); color: white; border-color: var(--navy-mid); box-shadow: 0 0 0 4px var(--bg-alt); }
.fsi-dot.active label { color: var(--navy-mid); font-weight: 600; }
.fsi-dot.done span { background: var(--primary); border-color: var(--primary); color: white; }

.fsi-line { flex: 1; height: 2px; background: var(--border); margin: 0 10px 20px; transition: background var(--transition); max-width: 80px; }
.fsi-line.done { background: var(--primary); }

.form-step { display: none; }
.form-step.active { display: block; }

.step-title { font-size: 1.05rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.step-subtitle { font-size: .83rem; color: var(--text-muted); margin-bottom: 20px; }

.svc-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.svc-opt input[type="radio"] { display: none; }
.svc-opt-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
  font-weight: 500;
  font-size: .8rem;
  color: var(--text-muted);
  background: var(--white);
  min-height: 62px;
}
.svc-opt-card:hover { border-color: rgba(47,175,132,.5); background: var(--primary-pale); color: var(--primary-dark); }
.svc-opt input:checked + .svc-opt-card {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
  box-shadow: 0 0 0 3px rgba(47,175,132,.15);
}

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-grp { margin-bottom: 18px; }
.field-grp label { display: block; font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.opt-label { color: var(--text-muted); font-weight: 400; }

.field-grp input:not([type="checkbox"]),
.field-grp select,
.field-grp textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.field-grp input:not([type="checkbox"]):focus,
.field-grp select:focus,
.field-grp textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(47,175,132,.15);
}
.field-grp textarea { resize: vertical; min-height: 80px; }
.field-grp select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235f7484' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] { width: 17px; height: 17px; flex-shrink: 0; margin-top: 1px; cursor: pointer; accent-color: var(--primary); }
.checkbox-label a { color: var(--navy-mid); text-decoration: underline; }

.step-actions { display: flex; margin-top: 24px; gap: 12px; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }

.form-error { font-size: .8rem; color: #dc2626; margin-top: 4px; }

.success-box { text-align: center; padding: 48px 16px; }
.success-icon {
  width: 72px; height: 72px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  animation: popIn .4s ease;
}
@keyframes popIn {
  0% { transform: scale(.5); opacity: 0; }
  80% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.success-box h3 { font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.success-box p { color: var(--text-muted); font-size: .93rem; margin-bottom: 24px; }

/* ==============================================
   FOOTER
   ============================================== */
.footer { background: var(--footer-bg); color: rgba(255,255,255,.58); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1.3fr;
  gap: 48px;
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-logo { margin-bottom: 20px; }
.footer-logo-img { display: inline-block; }
.footer-logo-img img { height: 48px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .85; }

.footer-brand-col > p { font-size: .87rem; line-height: 1.72; margin-bottom: 20px; color: rgba(255,255,255,.48); }

.footer-badges { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.footer-badges span { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: rgba(255,255,255,.5); }

.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
}
.social-icon:hover { background: var(--primary); color: white; }

.footer-col h4 { font-size: .73rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: white; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li,
.footer-col ul a { font-size: .84rem; color: rgba(255,255,255,.48); transition: color var(--transition); line-height: 1.4; }
.footer-col ul a:hover { color: white; }

.footer-contact-list li { display: flex !important; align-items: flex-start; gap: 10px; font-size: .84rem !important; color: rgba(255,255,255,.48); }
.footer-contact-list svg { flex-shrink: 0; margin-top: 2px; opacity: .6; }
.footer-contact-list a { color: inherit; transition: color var(--transition); }
.footer-contact-list a:hover { color: white; }
.footer-contact-list span { line-height: 1.5; }

.footer-hours { display: flex !important; align-items: center !important; gap: 10px !important; }
.hours-dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; flex-shrink: 0; }

.footer-bottom { padding: 24px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.28); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: .8rem; color: rgba(255,255,255,.28); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ==============================================
   WHATSAPP FAB
   ============================================== */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: all var(--transition);
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); }

/* ==============================================
   SCROLL ANIMATIONS
   ============================================== */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-aos].visible { opacity: 1; transform: translateY(0); }

/* ==============================================
   KEYFRAMES
   ============================================== */
@keyframes floatBubble {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(var(--bx, 12px), var(--by, -18px)); }
  66% { transform: translate(calc(var(--bx, 12px) * -0.5), var(--by, -18px)); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==============================================
   BUBBLE STYLING (JS-injected)
   ============================================== */
.section-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(8,43,73,.07);
  opacity: .3;
  background: radial-gradient(circle at 32% 32%, rgba(255,255,255,.9) 0%, rgba(234,247,251,.3) 40%, transparent 100%);
  animation: floatBubble ease-in-out infinite;
}

/* ==============================================
   RESPONSIVE
   ============================================== */

/* ---- Tablet large (≤1200px) ---- */
@media (max-width: 1200px) {
  .container { padding: 0 32px; }
  .hero-img-wrap::before { width: 460px; height: 460px; }
  .hero-img-wrap::after  { width: 550px; height: 550px; }
}

/* ---- Tablet (≤1100px) ---- */
@media (max-width: 1100px) {
  .container { padding: 0 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .methode-grid { grid-template-columns: repeat(2, 1fr); }
  .methode-header { grid-template-columns: 1fr; gap: 16px; }
  .temo-header { grid-template-columns: 1fr; gap: 16px; }
  .galerie-header { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-img-circle { width: 340px; height: 340px; }
  .about-grid { gap: 40px; }
  .about-illustration { width: 360px; height: 360px; }
  .abt-main-circle { width: 360px; height: 360px; }
}

/* ---- Tablet portrait (≤900px) ---- */
@media (max-width: 900px) {
  .section { padding: 72px 0; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 48px 0 40px; }
  .hero-visual { display: flex; justify-content: center; }
  .hero-img-circle { width: 260px; height: 260px; }
  .hero-img-wrap::before { width: 320px; height: 320px; }
  .hero-img-wrap::after  { width: 390px; height: 390px; }
  .fc-top { top: 10px; left: -20px; min-width: 140px; padding: 10px 12px; }
  .fc-bottom { bottom: 20px; right: -20px; min-width: 140px; padding: 10px 12px; }
  .float-card strong { font-size: .76rem; }
  .float-card span { font-size: .7rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-img-col { display: flex; justify-content: center; margin-bottom: 8px; }
  .about-illustration { width: 260px; height: 260px; }
  .abt-main-circle { width: 260px; height: 260px; }

  /* FAQ */
  .faq-inner { grid-template-columns: 1fr; }
  .faq-img-col { display: none; }

  /* Devis */
  .devis-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Temoignages */
  .temo-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Engagements */
  .eng-grid { grid-template-columns: repeat(2, 1fr); }
  .eng-cta-bar { flex-direction: column; text-align: center; }
  .eng-cta-text { text-align: center; }

  .services-section { padding-top: 60px; }
}

/* ---- Mobile (≤768px) ---- */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .container { padding: 0 18px; }

  /* ── NAVBAR ── */
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: white;
    border-radius: 0;
    border: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 16px 18px;
    gap: 2px;
    box-shadow: 0 8px 24px rgba(8,43,73,.12);
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    pointer-events: none;
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-link { padding: 13px 16px; font-size: .92rem; border-radius: 10px; color: var(--text); }
  .nav-phone { display: none; }
  .nav-right .btn-nav-cta { display: none; }
  .hamburger { display: flex; }
  .logo-mark { height: 48px; }
  .nav-container { height: 64px; }

  /* ── HERO ── */
  .hero { padding-top: 64px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; padding: 36px 0 28px; gap: 28px; }
  .hero-content { text-align: center; order: 1; }
  .hero-visual { display: flex; justify-content: center; order: 2; }
  .hero-title { font-size: clamp(1.7rem, 7vw, 2.3rem); margin-bottom: 10px; }
  .hero-italic { font-size: clamp(1.2rem, 5vw, 1.6rem); margin-bottom: 16px; }
  .hero-desc { font-size: .88rem; max-width: 100%; margin: 0 auto 24px; }
  .hero-ctas { justify-content: center; flex-direction: column; align-items: center; gap: 10px; }
  .hero-ctas .btn-lg { width: 100%; max-width: 320px; justify-content: center; }
  .hero-deco-bubbles { display: none; }
  .hero-img-circle { width: 220px; height: 220px; }
  .hero-img-wrap::before { width: 270px; height: 270px; }
  .hero-img-wrap::after  { width: 325px; height: 325px; }
  .fc-top { top: 0px; left: -8px; min-width: 130px; padding: 8px 10px; gap: 8px; }
  .fc-bottom { bottom: 10px; right: -8px; min-width: 130px; padding: 8px 10px; gap: 8px; }
  .float-card strong { font-size: .72rem; }
  .float-card span, .fc-stars { font-size: .68rem; }
  .fc-check, .fc-plus { width: 26px; height: 26px; font-size: .75rem; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 0; padding-top: 20px; }
  .hstat-sep { display: none; }
  .hstat { flex: 1 0 42%; padding: 10px 8px; text-align: center; }
  .hstat strong { font-size: .95rem; }
  .hstat span { font-size: .7rem; }
  .disponible-pill { align-self: center; font-size: .76rem; padding: 6px 14px; }

  /* ── SERVICES ── */
  .services-section { padding-top: 56px; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .services-title { font-size: 1.45rem; }
  .svc-card { padding: 20px 16px; gap: 10px; }
  .svc-card h3 { font-size: .88rem; }
  .svc-card p { font-size: .82rem; }

  /* ── ABOUT ── */
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-img-col { display: flex; justify-content: center; }
  .about-illustration { width: 240px; height: 240px; }
  .abt-main-circle { width: 240px; height: 240px; }
  .about-text-col h2 { font-size: 1.4rem; }
  .service-tags { gap: 6px; }
  .stag-pill-sm { font-size: .72rem; padding: 4px 10px; }
  .about-ctas { flex-direction: column; gap: 10px; }
  .about-ctas .btn { width: 100%; justify-content: center; }

  /* ── MÉTHODE ── */
  .methode-grid { grid-template-columns: 1fr; gap: 12px; }
  .methode-header { grid-template-columns: 1fr; gap: 12px; }
  .methode-header-left h2 { font-size: 1.45rem; }
  .methode-bottom-bar { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px 20px; }
  .methode-bottom-bar a.btn { width: 100%; justify-content: center; }
  .mbb-checks { gap: 12px; }

  /* ── ENGAGEMENTS ── */
  .eng-grid { grid-template-columns: 1fr; gap: 12px; }
  .eng-header h2 { font-size: 1.6rem; }
  .eng-header h2 em { font-size: 1.2rem; }
  .eng-cta-bar { flex-direction: column; align-items: stretch; gap: 16px; padding: 20px; }
  .eng-cta-btns { flex-direction: column; }
  .eng-cta-btns .btn { width: 100%; justify-content: center; }
  .btn-white-outline { width: 100%; justify-content: center; }

  /* ── TÉMOIGNAGES ── */
  .temo-header { grid-template-columns: 1fr; gap: 12px; }
  .temo-header-left h2 { font-size: 1.45rem; }
  .temo-stats-bar { padding: 16px; flex-wrap: wrap; gap: 0; }
  .temo-sep { display: none; }
  .temo-stat { flex: 1 0 45%; padding: 8px; }
  .temo-stat strong { font-size: 1.2rem; }
  .temo-grid { grid-template-columns: 1fr; gap: 12px; }
  .temo-card { padding: 20px 16px; }

  /* ── GALERIE ── */
  .galerie-header { grid-template-columns: 1fr; gap: 12px; }
  .galerie-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gal-card img { height: 160px; }

  /* ── FAQ ── */
  .faq-inner { grid-template-columns: 1fr; }
  .faq-img-col { display: none; }
  .faq-content-col h2 { font-size: 1.45rem; }
  .faq-q { padding: 14px 16px; gap: 10px; }
  .faq-text { font-size: .85rem; }

  /* ── DEVIS ── */
  .devis-grid { grid-template-columns: 1fr; gap: 28px; }
  .devis-text-col h2 { font-size: 1.45rem; }
  .form-card { padding: 24px 16px; }
  .form-row-2 { grid-template-columns: 1fr; gap: 0; }
  .svc-select-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .svc-opt-card { min-height: 52px; font-size: .76rem; padding: 10px 10px; }
  .step-actions { flex-direction: column; gap: 10px; }
  .step-actions .btn { width: 100%; justify-content: center; }
  .justify-between { flex-direction: row; }

  /* ── FOOTER ── */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 44px 0 32px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-legal { gap: 16px; flex-wrap: wrap; }
  .footer-col h4 { margin-bottom: 12px; }
}

/* ---- Small mobile (≤480px) ---- */
@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .container { padding: 0 14px; }
  .hero-title { font-size: 1.65rem; }
  .hero-italic { font-size: 1.2rem; }
  .hero-img-circle { width: 190px; height: 190px; }
  .hero-img-wrap::before { width: 235px; height: 235px; }
  .hero-img-wrap::after  { width: 282px; height: 282px; }
  .fc-top, .fc-bottom { display: none; }
  .galerie-grid { grid-template-columns: 1fr; }
  .temo-grid { max-width: 100%; }
  .svc-select-grid { grid-template-columns: 1fr; }
  .eng-header h2 { font-size: 1.4rem; }
  .about-illustration { width: 200px; height: 200px; }
  .abt-main-circle { width: 200px; height: 200px; }
}
