/* ═══════════════════════════════════════════
   CLEANKAR – Feuille de style principale
   Palette : Bleu #1E3FAE | Vert #2DC653 | Blanc #FFFFFF | Gris clair #F4F7FF
   ═══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #1E3FAE;
  --blue-dark:   #152E8A;
  --blue-light:  #EEF2FF;
  --blue-mid:    #2347C5;
  --green:       #2DC653;
  --green-dark:  #21A344;
  --white:       #FFFFFF;
  --gray-light:  #F4F7FF;
  --gray:        #8A97B0;
  --text:        #0F1E3C;
  --text-light:  #4A5568;
  --shadow:      0 4px 24px rgba(30,63,174,0.10);
  --shadow-lg:   0 12px 48px rgba(30,63,174,0.18);
  --radius:      12px;
  --radius-lg:   20px;
  --radius-pill: 100px;
  --transition:  0.28s cubic-bezier(0.4,0,0.2,1);
}

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

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

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

a { color: inherit; text-decoration: none; }

/* ─── CONTAINER ─── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  line-height: 1.18;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: 1.2rem; font-weight: 700; }

.accent-blue  { color: var(--blue); }
.accent-green { color: var(--green); }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: none; cursor: pointer;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-primary.btn-large { padding: 1rem 2.2rem; font-size: 1.05rem; }
.btn-primary.btn-glow:hover { box-shadow: 0 0 32px rgba(30,63,174,0.45); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--blue);
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--blue);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-outline.btn-large { padding: 1rem 2.2rem; font-size: 1.05rem; }

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.6);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-outline-white.btn-large { padding: 1rem 2.2rem; font-size: 1.05rem; }

.btn-green {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: none; cursor: pointer;
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,198,83,0.3); }

.btn-phone {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(45,198,83,0.12);
  color: var(--green-dark);
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all var(--transition);
  border: 1.5px solid var(--green);
}
.btn-phone:hover { background: var(--green); color: #fff; }

/* ─── STICKY CTA (MOBILE) ─── */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--blue);
  padding: 0.7rem 1rem;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.sticky-call {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--white);
  color: var(--blue);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-pill);
}
.sticky-quote {
  background: var(--green);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.sticky-icon { font-size: 1rem; }

/* ─── HEADER ─── */
#header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(30,63,174,0.09);
  transition: box-shadow var(--transition);
}
.header-inner {
  display: flex; align-items: center; gap: 2rem;
  height: 68px;
}
.logo {
  font-family: 'Nunito', sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.logo-clean { color: var(--blue); }
.logo-kar   { color: var(--green); }

#main-nav {
  display: flex; align-items: center; gap: 1.8rem; flex: 1;
}
#main-nav a {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-light);
  transition: color var(--transition);
  position: relative;
}
#main-nav a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0; height: 2px;
  background: var(--blue);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--transition);
  border-radius: 2px;
}
#main-nav a:hover { color: var(--blue); }
#main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 0.8rem; margin-left: auto; }

.burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.burger span { width: 24px; height: 2.5px; background: var(--text); border-radius: 2px; transition: all var(--transition); display: block; }

.mobile-nav {
  display: none; flex-direction: column; gap: 0;
  position: absolute; top: 68px; left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 99; padding: 1rem;
}
.mobile-nav a {
  display: block; padding: 0.85rem 1rem;
  font-family: 'Nunito', sans-serif; font-weight: 700;
  color: var(--text); border-bottom: 1px solid var(--gray-light);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--blue); }
.mobile-nav a:last-child { margin-top: 0.8rem; border-bottom: none; }
.mobile-nav.open { display: flex; }

/* ─── SECTION HELPERS ─── */
.section-blue-light { background: var(--blue-light); }
.section-white { background: var(--white); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-header p { color: var(--text-light); margin-top: 0.8rem; font-size: 1.05rem; }
.section-header-white h2, .section-header-white p { color: var(--white); }
.section-header-white p { opacity: 0.85; }

.section-tag {
  display: inline-block;
  background: rgba(30,63,174,0.1);
  color: var(--blue);
  border-radius: var(--radius-pill);
  padding: 0.3rem 1rem;
  font-size: 0.82rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-tag-white {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: 0.3rem 1rem;
  font-size: 0.82rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 60%, #1a5fcc 100%);
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}
.hero-wave-top { display: none; }
.hero-bubbles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.bubble {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  animation: float 8s ease-in-out infinite;
}
.b1 { width: 300px; height: 300px; top: -80px; right: -60px; animation-delay: 0s; }
.b2 { width: 180px; height: 180px; top: 60%; left: -50px; animation-delay: 2s; }
.b3 { width: 100px; height: 100px; top: 20%; right: 30%; animation-delay: 1s; }
.b4 { width: 60px; height: 60px; bottom: 10%; right: 20%; animation-delay: 3s; }
.b5 { width: 220px; height: 220px; bottom: -80px; left: 30%; animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.04); }
}

.hero-content {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center;
  padding-bottom: 80px; position: relative; z-index: 1;
}
.hero-text { color: var(--white); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1rem;
  font-size: 0.85rem; font-weight: 600; color: #fff;
  margin-bottom: 1.5rem;
}
.hero-text h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero-sub { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin-bottom: 2rem; max-width: 480px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; color: rgba(255,255,255,0.85); font-weight: 600; }
.trust-icon { font-size: 1rem; }

.hero-price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hpc-label {
  background: var(--green);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 1rem;
}
.hpc-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.hpc-price {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.hpc-cur { font-size: 1.5rem; vertical-align: super; }
.hpc-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.8rem; }
.hpc-list li { font-size: 0.92rem; color: var(--text-light); }

.hero-wave-bottom {
  height: 60px; margin-top: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23FFFFFF' d='M0,40 C360,80 1080,0 1440,40 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat bottom center / cover;
}

/* ─── REASSURANCE ─── */
.reassurance { padding: 3rem 0; background: var(--white); }
.reassurance-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.r-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.4rem; background: var(--gray-light);
  border-radius: var(--radius); border: 1px solid rgba(30,63,174,0.08);
  transition: all var(--transition);
}
.r-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.r-icon { font-size: 1.8rem; flex-shrink: 0; }
.r-text { display: flex; flex-direction: column; gap: 0.25rem; }
.r-text strong { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--text); }
.r-text span { font-size: 0.85rem; color: var(--text-light); }

/* ─── SERVICES ─── */
.services { padding: 80px 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1.5px solid rgba(30,63,174,0.1);
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.sc-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: 0.7rem; font-size: 1.1rem; }
.service-card p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 1.2rem; }
.sc-link { color: var(--blue); font-weight: 700; font-size: 0.9rem; transition: color var(--transition); }
.sc-link:hover { color: var(--green); }

/* ─── FORFAITS ─── */
.forfaits {
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  padding: 90px 0;
  position: relative;
}
.forfaits-wave-top {
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23EEF2FF' d='M0,20 C480,60 960,0 1440,20 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat top center / cover;
  margin-bottom: -2px;
}
.forfaits-wave-bottom {
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23FFFFFF' d='M0,40 C360,80 1080,0 1440,40 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat bottom center / cover;
  margin-top: -2px;
}
.forfaits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  align-items: start; margin-bottom: 3rem;
}
.forfait-card {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  color: var(--white);
  position: relative;
  transition: all var(--transition);
}
.forfait-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.12); }
.forfait-card.forfait-featured {
  background: var(--white);
  border-color: var(--green);
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.forfait-card.forfait-featured * { color: var(--text); }
.forfait-card.forfait-featured:hover { transform: scale(1.04) translateY(-4px); }
.fc-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 0.8rem;
  padding: 0.3rem 1.2rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.fc-header { margin-bottom: 1.8rem; }
.fc-name { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.35rem; margin-bottom: 0.4rem; }
.fc-price {
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 3.2rem; line-height: 1;
  margin-bottom: 0.3rem;
}
.fc-cur { font-size: 1.4rem; vertical-align: super; }
.fc-sub { font-size: 0.88rem; opacity: 0.75; }
.fc-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.fc-list li { font-size: 0.92rem; }
.forfait-card.forfait-featured .fc-list li { color: var(--text-light); }
.forfait-card.forfait-featured .fc-list li strong { color: var(--text); }

.forfaits-extras {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
}
.forfaits-extras h3 { font-size: 1.2rem; margin-bottom: 1.2rem; color: var(--white); }
.extras-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.extra-item {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,0.08); border-radius: var(--radius);
  padding: 0.9rem 1.2rem; font-size: 0.92rem;
}
.extra-price { font-family: 'Nunito', sans-serif; font-weight: 700; color: var(--green); white-space: nowrap; margin-left: 1rem; }
.extras-note { font-size: 0.88rem; opacity: 0.8; }
.extras-note a { color: var(--green); font-weight: 600; text-decoration: underline; }

/* ─── WHY ─── */
.why { padding: 80px 0; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 0;
}
.why-item {
  padding: 1.8rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--blue-light);
  transition: all var(--transition);
}
.why-item:hover { border-color: rgba(30,63,174,0.25); box-shadow: var(--shadow); transform: translateY(-3px); }
.why-num {
  font-family: 'Nunito', sans-serif; font-weight: 900;
  font-size: 2.5rem; color: rgba(30,63,174,0.12);
  line-height: 1; margin-bottom: 0.8rem;
}
.why-item h3 { margin-bottom: 0.6rem; color: var(--blue); font-size: 1.05rem; }
.why-item p { font-size: 0.92rem; color: var(--text-light); }

/* ─── ZONE ─── */
.zone { padding: 80px 0; }
.zone-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }
.zone-text { display: flex; flex-direction: column; gap: 1rem; }
.zone-text h2 { margin-bottom: 0; }
.zone-communes {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin: 0.5rem 0;
}
.zone-communes span {
  background: rgba(30,63,174,0.1);
  color: var(--blue);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
}
.zone-note { font-size: 0.9rem; color: var(--text-light); }
.zone-note a { color: var(--blue); font-weight: 600; }
.zone-map-placeholder {
  background: linear-gradient(135deg, var(--blue-light) 0%, #dbe6ff 100%);
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(30,63,174,0.25);
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.zone-map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}
.map-inner {
  position: relative;
  text-align: center;
}
.map-pin { font-size: 3rem; margin-bottom: 0.5rem; }
.map-label { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--blue); }
.map-radius {
  width: 200px; height: 200px;
  border: 2px dashed rgba(30,63,174,0.25);
  border-radius: 50%;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: ripple 3s ease-in-out infinite;
}
@keyframes ripple {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%,-50%) scale(1.1); opacity: 0.2; }
}

/* ─── FAQ ─── */
.faq { padding: 80px 0; }
.faq-inner .section-header { margin-bottom: 2.5rem; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item { border: 1.5px solid rgba(30,63,174,0.12); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.2rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1rem;
  color: var(--text); text-align: left;
  transition: background var(--transition);
}
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--blue); font-weight: 400; transition: transform var(--transition); flex-shrink: 0; }
.faq-q[aria-expanded="true"] { background: var(--blue-light); color: var(--blue); }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 1.5rem 1.2rem;
  font-size: 0.95rem; color: var(--text-light); line-height: 1.7;
}
.faq-a.open { display: block; }

/* ─── CONTACT CTA ─── */
.contact-cta {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  padding: 80px 0;
  position: relative;
}
.contact-cta-wave-top {
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23FFFFFF' d='M0,20 C480,60 960,0 1440,20 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat top center / cover;
  margin-bottom: -2px;
}
.contact-cta-wave-bottom {
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23F4F7FF' d='M0,40 C360,80 1080,0 1440,40 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat bottom center / cover;
  margin-top: -2px;
}
.contact-cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 3rem;
  flex-wrap: wrap; position: relative; z-index: 1;
}
.cta-text { color: var(--white); max-width: 520px; }
.cta-text h2 { color: var(--white); margin-bottom: 0.8rem; }
.cta-text p { opacity: 0.85; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── FOOTER ─── */
footer { background: var(--text); color: rgba(255,255,255,0.8); padding: 4rem 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { font-size: 1.5rem; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-phone {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--blue);
  color: #fff;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.95rem;
  transition: background var(--transition);
}
.footer-phone:hover { background: var(--blue-mid); }
.footer-col h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul li a, .footer-col address p a {
  font-size: 0.88rem; color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover, .footer-col address p a:hover { color: var(--green); }
.footer-col address p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-bottom: 0.5rem; }
.footer-bottom { background: rgba(0,0,0,0.2); padding: 1.2rem 0; }
.footer-bottom-inner p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom-inner a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-bottom-inner a:hover { color: var(--green); }

/* ─── INNER PAGES ─── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  padding: 80px 0 60px;
  color: var(--white);
  position: relative;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.8rem; }
.page-hero p { opacity: 0.85; font-size: 1.1rem; max-width: 600px; }
.page-hero-wave {
  height: 50px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50'%3E%3Cpath fill='%23FFFFFF' d='M0,30 C360,60 1080,0 1440,30 L1440,50 L0,50 Z'/%3E%3C/svg%3E") no-repeat bottom / cover;
}
.breadcrumb {
  font-size: 0.85rem; opacity: 0.7; margin-bottom: 1rem;
  display: flex; gap: 0.5rem; align-items: center;
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.breadcrumb a:hover { color: #fff; }
.page-content { padding: 60px 0 80px; }
.page-content h2 { margin-bottom: 1rem; color: var(--blue); }
.page-content h3 { margin-bottom: 0.7rem; }
.page-content p { color: var(--text-light); line-height: 1.75; margin-bottom: 1.2rem; }
.page-content ul { margin: 0 0 1.5rem 1.2rem; }
.page-content ul li { color: var(--text-light); margin-bottom: 0.4rem; }

/* Contact form */
.contact-form-block {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(30,63,174,0.08);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
label { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--text); }
label span { color: #e53e3e; }
input, select, textarea {
  background: var(--white);
  border: 1.5px solid rgba(30,63,174,0.15);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-family: 'Outfit', sans-serif; font-size: 0.95rem;
  color: var(--text);
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,63,174,0.1);
}
textarea { resize: vertical; min-height: 120px; }
select option { background: #fff; }
.form-checkbox { display: flex; align-items: flex-start; gap: 0.7rem; margin: 0.5rem 0; }
.form-checkbox input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--blue); }
.form-checkbox label { font-size: 0.85rem; font-weight: 400; color: var(--text-light); cursor: pointer; }
.form-checkbox label a { color: var(--blue); font-weight: 600; }
.form-submit { margin-top: 1.2rem; width: 100%; padding: 1.1rem; font-size: 1rem; }

/* Tarifs page */
.tarifs-intro { padding: 60px 0 40px; }
.tarifs-cards { padding: 0 0 60px; }
.tarif-detail {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-bottom: 2rem;
  border: 1.5px solid rgba(30,63,174,0.1);
}
.tarif-detail h3 {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 1.3rem; margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1.5px solid rgba(30,63,174,0.1);
}
.tarif-price {
  font-family: 'Nunito', sans-serif; font-weight: 900;
  font-size: 2.2rem; color: var(--blue);
}
.tarif-detail ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.tarif-detail ul li { font-size: 0.92rem; color: var(--text-light); }
.tarif-detail ul li::before { content: '✔ '; color: var(--green); font-weight: 700; }

/* Mentions légales */
.legal-content { padding: 60px 0 80px; }
.legal-content h2 { font-size: 1.4rem; color: var(--blue); margin: 2.5rem 0 0.8rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { font-size: 0.95rem; color: var(--text-light); line-height: 1.75; margin-bottom: 0.6rem; }
.legal-content ul { margin-left: 1.2rem; margin-bottom: 1rem; }
.placeholder { background: #fff3cd; border: 1px dashed #ffc107; padding: 0.2rem 0.5rem; border-radius: 4px; font-weight: 600; color: #856404; }

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .reassurance-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .zone-inner { grid-template-columns: 1fr; }
  .zone-map-placeholder { min-height: 220px; }
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-card { display: none; }
  .contact-cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  #main-nav, .header-actions { display: none; }
  .burger { display: flex; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
  .services-grid { grid-template-columns: 1fr; }
  .forfaits-grid { grid-template-columns: 1fr; }
  .forfait-card.forfait-featured { transform: none; }
  .forfait-card.forfait-featured:hover { transform: translateY(-4px); }
  .why-grid { grid-template-columns: 1fr; }
  .reassurance-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .tarif-detail ul { grid-template-columns: 1fr; }
  .hero { padding-top: 80px; }
  .contact-cta-inner { gap: 2rem; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn-primary, .cta-actions .btn-outline-white { text-align: center; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-trust { flex-direction: column; gap: 0.5rem; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.45rem; }
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-block {
    padding: 1.4rem;
  }

  .page-hero {
    padding: 70px 0 40px;
  }
}
@media (max-width: 480px) {
  .hero-ctas .btn-outline-white,
  .hero-ctas .btn-green,
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    width: 100%;
    text-align: center;
  }
}
.contact-success-message {
  margin-bottom: 2rem;
}

.contact-success-inner {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(45,198,83,0.10), rgba(30,63,174,0.06));
  border: 1.5px solid rgba(45,198,83,0.25);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-success-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-success-content h3 {
  color: var(--text);
  margin-bottom: 0.5rem;
}

.contact-success-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.contact-success-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .contact-success-inner {
    flex-direction: column;
  }

  .contact-success-actions {
    flex-direction: column;
  }

  .contact-success-actions a {
    width: 100%;
    text-align: center;
  }
}