/* ═══════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════ */
:root {
  --z-cta:        #00abe4;
  --z-cta-hover:  #0998c7;
  --z-cta-light:  #e6f6fd;
  --z-blue:       #2B6CB0;
  --z-blue-dark:  #265E9A;
  --z-dark:       #222222;
  --z-dark-2:     #3B3B3B;
  --z-dark-4:     #626262;
  --z-border:     #E1E1E1;
  --z-bg:         #F7F7F7;
  --z-white:      #ffffff;
  --z-success:    #13612e;
  --z-error:      #b82105;

  --fun-sky:      #e8f7ff;
  --fun-sky-mid:  #b8e8fa;
  --fun-yellow:   #FFF3CD;
  --fun-yellow-b: #F5A524;
  --fun-mint:     #E8F5F0;
  --fun-mint-b:   #00a878;
  --fun-coral:    #FFF0EC;
  --fun-coral-b:  #f06543;
  --fun-violet:   #F3EFFF;
  --fun-violet-b: #7c5cbf;

  --font-title: 'Oswald', sans-serif;
  --font-body:  'Open Sans', sans-serif;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-pill: 999px;

  --shadow-card:  0 4px 24px rgba(0,0,0,.07);
  --shadow-hover: 0 12px 40px rgba(0,171,228,.18);
  --shadow-hero:  0 20px 60px rgba(0,171,228,.2);

  --transition: .24s cubic-bezier(.4,0,.2,1);
  --max-w: 1200px;
}

/* ═══════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--z-dark-2);
  background: var(--z-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

h1,h2,h3,h4 { font-family: var(--font-title); color: var(--z-dark); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

em     { font-style: normal; color: var(--z-cta); }
strong { font-weight: 600; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-lg   { padding: .9rem 2rem; font-size: 1.05rem; }
.btn-xl   { padding: 1.1rem 2.5rem; font-size: 1.15rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-cta {
  background: var(--z-cta); color: var(--z-white); border-color: var(--z-cta);
  box-shadow: 0 4px 14px rgba(0,171,228,.35);
}
.btn-cta:hover { background: var(--z-cta-hover); border-color: var(--z-cta-hover); transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.btn-cta:active { transform: translateY(0); box-shadow: none; }

.btn-outline { background: var(--z-white); color: var(--z-dark); border-color: var(--z-border); }
.btn-outline:hover { border-color: var(--z-cta); color: var(--z-cta); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,171,228,.12); }

.btn-outline-dark { background: transparent; color: var(--z-dark); border-color: rgba(34,34,34,.3); }
.btn-outline-dark:hover { border-color: var(--z-cta); color: var(--z-cta); transform: translateY(-2px); }

.btn-outline-light { background: transparent; color: var(--z-white); border-color: rgba(255,255,255,.55); }
.btn-outline-light:hover { background: rgba(255,255,255,.15); border-color: var(--z-white); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--z-white);
  border-bottom: 2px solid var(--z-cta-light);
  box-shadow: 0 2px 20px rgba(0,171,228,.1);
}
.nav-container {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  height: 70px; display: flex; align-items: center; gap: 2rem;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-title); font-size: 1.15rem; font-weight: 400;
  color: var(--z-dark); letter-spacing: .02em; flex-shrink: 0;
}
.nav-brand strong { font-weight: 700; color: var(--z-cta); }
.nav-brand-icon {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: var(--z-cta); border-radius: var(--radius-sm);
  color: var(--z-white); flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0,171,228,.3);
}
.nav-brand-icon-footer { background: var(--z-cta); }

.nav-links { display: flex; align-items: center; gap: .25rem; flex: 1; }
.nav-links a {
  font-size: .9rem; font-weight: 600; color: var(--z-dark-4);
  padding: .4rem .75rem; border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--z-cta); background: var(--z-cta-light); }

.nav-cta {
  display: flex; align-items: center; gap: 8px; padding: .6rem 1.4rem;
  background: var(--z-cta); color: var(--z-white); border-radius: var(--radius-md);
  font-family: var(--font-title); font-size: .95rem; font-weight: 500;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0; box-shadow: 0 3px 12px rgba(0,171,228,.3);
}
.nav-cta:hover { background: var(--z-cta-hover); transform: translateY(-2px); box-shadow: var(--shadow-hover); }

.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; margin-left: auto; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--z-dark); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile { display: none; flex-direction: column; background: var(--z-white); border-top: 2px solid var(--z-cta-light); padding: 1rem clamp(1rem, 4vw, 2.5rem); gap: .25rem; }
.nav-mobile.open { display: flex; }
.nav-mobile ul { display: flex; flex-direction: column; gap: .25rem; margin-bottom: 1rem; }
.nav-mobile-link { display: block; font-size: 1rem; font-weight: 600; color: var(--z-dark-2); padding: .6rem .75rem; border-radius: var(--radius-sm); transition: color var(--transition), background var(--transition); }
.nav-mobile-link:hover { color: var(--z-cta); background: var(--z-cta-light); }

/* ═══════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════ */
.section       { padding: 5.5rem 0; }
.section-light { background: var(--z-white); }
.section-bg    { background: var(--z-bg); }
.section-white { background: var(--z-white); }

.section-steps {
  background: linear-gradient(145deg, #e8f7ff 0%, #d0f0fb 60%, #e8f0ff 100%);
  border-top: 3px solid rgba(0,171,228,.2);
  border-bottom: 3px solid rgba(0,171,228,.2);
  position: relative; overflow: hidden;
}
.section-steps::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(0,171,228,.08); pointer-events: none;
}
.section-steps::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(43,108,176,.07); pointer-events: none;
}

.section-accent {
  background: linear-gradient(135deg, #E8F5F0 0%, #d4f0e6 50%, #E8F7FF 100%);
  border-top: 3px solid rgba(0,168,120,.2);
  border-bottom: 3px solid rgba(0,168,120,.2);
  position: relative; overflow: hidden;
}
.section-accent::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(0,171,228,.07); pointer-events: none;
}

.section-cta-final {
  background: linear-gradient(135deg, #00abe4 0%, #0998c7 40%, #2B6CB0 100%);
  padding: 5rem 0; position: relative; overflow: hidden;
}
.section-cta-final::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.1); pointer-events: none;
}
.section-cta-final::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,.07); pointer-events: none;
}

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-sub { font-size: 1.05rem; color: var(--z-dark-4); max-width: 620px; margin: .75rem auto 0; }

.section-tag {
  display: inline-block; font-family: var(--font-title); font-size: .78rem;
  font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--z-cta); background: var(--z-cta-light);
  padding: .3rem .9rem; border-radius: var(--radius-pill); margin-bottom: .9rem;
}
.section-tag-mint  { color: var(--fun-mint-b); background: var(--fun-mint); }
.section-tag-white { color: var(--z-white); background: rgba(255,255,255,.22); }

/* ═══════════════════════════════════════════════════
   HERO — blanc lumineux & illustré
═══════════════════════════════════════════════════ */
.hero { background: var(--z-white); overflow: hidden; position: relative; padding: 5rem 0 0; }

.hero-blob-1 {
  position: absolute; top: -120px; right: -160px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, #e6f6fd 0%, rgba(230,246,253,0) 70%);
  pointer-events: none;
}
.hero-blob-2 {
  position: absolute; bottom: 40px; left: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, #e8f5f0 0%, rgba(232,245,240,0) 70%);
  pointer-events: none;
}

.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shape { position: absolute; border-radius: 50%; opacity: .55; animation: float-shape 6s ease-in-out infinite; }
.hero-shape-1 { width: 18px; height: 18px; background: var(--z-cta); top: 18%; right: 28%; animation-delay: 0s; }
.hero-shape-2 { width: 12px; height: 12px; background: var(--fun-yellow-b); top: 38%; right: 18%; animation-delay: 1.2s; border-radius: 3px; transform: rotate(20deg); }
.hero-shape-3 { width: 22px; height: 22px; background: var(--fun-mint-b); top: 58%; right: 36%; animation-delay: 2.4s; border-radius: 6px; }
.hero-shape-4 { width: 10px; height: 10px; background: var(--fun-coral-b); top: 25%; right: 42%; animation-delay: 0.8s; }
.hero-shape-5 { width: 28px; height: 6px; background: var(--z-cta); top: 72%; right: 22%; animation-delay: 1.8s; border-radius: 3px; }
.hero-shape-6 { width: 14px; height: 14px; background: var(--fun-violet-b); top: 45%; right: 52%; animation-delay: 3s; border-radius: 4px; transform: rotate(45deg); }

@keyframes float-shape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-14px) rotate(8deg); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text { padding-bottom: 4rem; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .88rem; font-weight: 600; color: var(--z-cta);
  background: var(--z-cta-light); border: 1.5px solid rgba(0,171,228,.2);
  padding: .4rem 1rem; border-radius: var(--radius-pill); margin-bottom: 1.5rem;
}

.pulse-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: pulse-anim 2s ease-in-out infinite; }
@keyframes pulse-anim { 0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); } 50% { box-shadow: 0 0 0 7px rgba(34,197,94,0); } }

.hero-title { color: var(--z-dark); margin-bottom: 1.25rem; }
.hero-title em { color: var(--z-cta); }

.hero-desc {
  font-size: clamp(.97rem, 1.5vw, 1.1rem);
  color: var(--z-dark-4); max-width: 520px; margin-bottom: 2rem; line-height: 1.8;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }

.hero-stats { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-stat-pill {
  display: flex; align-items: center; gap: .6rem;
  background: var(--z-white); border: 1.5px solid var(--z-border);
  border-radius: var(--radius-pill); padding: .5rem 1rem; box-shadow: var(--shadow-card);
}
.hero-stat-pill-icon {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-stat-pill-icon.blue  { background: var(--z-cta-light); color: var(--z-cta); }
.hero-stat-pill-icon.green { background: var(--fun-mint); color: var(--fun-mint-b); }
.hero-stat-pill-icon.amber { background: var(--fun-yellow); color: var(--fun-yellow-b); }
.hero-stat-pill strong { font-family: var(--font-title); font-size: 1rem; color: var(--z-dark); display: block; line-height: 1; }
.hero-stat-pill span   { font-size: .75rem; color: var(--z-dark-4); }

/* Illustration côté droit */
.hero-visual {
  display: flex; align-items: flex-end; justify-content: center;
  position: relative; min-height: 440px;
}

.hero-card-main {
  background: var(--z-white); border-radius: var(--radius-xl);
  border: 2px solid var(--z-cta-light); box-shadow: var(--shadow-hero);
  padding: 2.5rem 2rem; width: 320px; text-align: center;
  position: relative; z-index: 2;
  animation: float-card 5s ease-in-out infinite;
}
@keyframes float-card { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-card-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--z-cta-light), #b8e8fa);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; color: var(--z-cta);
}

.hero-card-main h3 { font-size: 1.15rem; color: var(--z-dark); margin-bottom: .5rem; }
.hero-card-main p  { font-size: .88rem; color: var(--z-dark-4); margin-bottom: 1.25rem; line-height: 1.6; }

.hero-card-phone {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-title); font-size: 1.3rem; font-weight: 700; color: var(--z-cta);
  background: var(--z-cta-light); border-radius: var(--radius-md);
  padding: .75rem 1rem; margin-bottom: .75rem;
  transition: background var(--transition), color var(--transition);
}
.hero-card-phone:hover { background: var(--z-cta); color: var(--z-white); }

.hero-card-avail {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  font-size: .8rem; color: var(--z-dark-4);
}

.hero-card-mini {
  position: absolute; background: var(--z-white);
  border-radius: var(--radius-lg); border: 1.5px solid var(--z-border);
  box-shadow: var(--shadow-card); padding: .875rem 1.1rem;
  display: flex; align-items: center; gap: .65rem;
  font-size: .85rem; font-weight: 600; color: var(--z-dark);
  white-space: nowrap; z-index: 3;
}
.hero-card-mini .mini-icon {
  width: 32px; height: 32px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.hero-mini-devis { top: 6%; right: -24px; animation: float-mini 4s ease-in-out 0.5s infinite; }
.hero-mini-devis .mini-icon { background: var(--fun-mint); color: var(--fun-mint-b); }

.hero-mini-time { bottom: 24%; left: -32px; animation: float-mini 4.5s ease-in-out 1s infinite; }
.hero-mini-time .mini-icon { background: var(--fun-yellow); color: var(--fun-yellow-b); }

.hero-mini-stars { bottom: 6%; right: -16px; animation: float-mini 4s ease-in-out 1.8s infinite; }
.hero-mini-stars .mini-icon { background: #fff0ec; color: var(--fun-coral-b); }
.hero-mini-stars span { color: var(--z-dark-4); font-size: .78rem; font-weight: 400; }

@keyframes float-mini { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Ticker */
.hero-ticker {
  margin-top: 2.5rem; border-top: 2px solid var(--z-cta-light);
  background: var(--fun-sky); overflow: hidden; white-space: nowrap; padding: .9rem 0;
}
.ticker-track { display: inline-block; animation: ticker 28s linear infinite; }
.ticker-track span { font-size: .82rem; color: var(--z-blue); letter-spacing: .06em; text-transform: uppercase; padding: 0 1rem; font-family: var(--font-title); }
.ticker-sep { color: var(--z-cta) !important; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.hero-ticker:hover .ticker-track { animation-play-state: paused; }

/* ═══════════════════════════════════════════════════
   SERVICES — cartes colorées
═══════════════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }

.service-card { --card-accent: var(--z-cta); --card-light: var(--z-cta-light); }
.service-card:nth-child(2) { --card-accent: var(--fun-mint-b);  --card-light: var(--fun-mint); }
.service-card:nth-child(3) { --card-accent: var(--fun-yellow-b); --card-light: var(--fun-yellow); }
.service-card:nth-child(4) { --card-accent: var(--fun-coral-b);  --card-light: var(--fun-coral); }
.service-card:nth-child(5) { --card-accent: var(--fun-violet-b); --card-light: var(--fun-violet); }
.service-card:nth-child(6) { --card-accent: var(--z-blue);       --card-light: #EBF4FF; }
.service-card:nth-child(7) { --card-accent: var(--fun-mint-b);   --card-light: var(--fun-mint); }
.service-card:nth-child(8) { --card-accent: var(--fun-coral-b);  --card-light: var(--fun-coral); }

.service-card {
  background: var(--z-white); border: 2px solid var(--z-border);
  border-radius: var(--radius-xl); padding: 2rem 1.75rem;
  position: relative; overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--card-accent); border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.service-card:hover { border-color: var(--card-accent); box-shadow: 0 12px 40px rgba(0,0,0,.1); transform: translateY(-5px); }
.service-card:hover::before { transform: scaleX(1); }

.service-num { font-family: var(--font-title); font-size: 2.8rem; font-weight: 700; color: var(--z-border); line-height: 1; margin-bottom: .5rem; transition: color var(--transition); }
.service-card:hover .service-num { color: var(--card-light); }

.service-icon {
  width: 54px; height: 54px; display: flex; align-items: center; justify-content: center;
  background: var(--card-light); border-radius: var(--radius-md); color: var(--card-accent);
  margin-bottom: 1.25rem; transition: background var(--transition), color var(--transition), transform var(--transition);
}
.service-card:hover .service-icon { background: var(--card-accent); color: var(--z-white); transform: scale(1.08) rotate(-3deg); }
.service-card h3 { font-size: 1.08rem; margin-bottom: .75rem; color: var(--z-dark); }
.service-card p  { font-size: .91rem; color: var(--z-dark-4); line-height: 1.68; }

/* ═══════════════════════════════════════════════════
   STEPS — bleu ciel festif
═══════════════════════════════════════════════════ */
.steps-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 1rem; align-items: start; position: relative; z-index: 1; }

.step-card {
  background: var(--z-white); border: 2px solid rgba(0,171,228,.15);
  border-radius: var(--radius-xl); padding: 2rem 1.5rem; text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative; overflow: hidden;
}
.step-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--z-cta); border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.step-card:hover { border-color: var(--z-cta); box-shadow: var(--shadow-hover); transform: translateY(-4px); }

.step-number { font-family: var(--font-title); font-size: 2rem; font-weight: 700; color: var(--z-cta); opacity: .4; line-height: 1; margin-bottom: .5rem; }
.step-icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; background: var(--z-cta-light); border-radius: 50%; color: var(--z-cta); margin: 0 auto 1.25rem; transition: background var(--transition), color var(--transition), transform var(--transition); }
.step-card:hover .step-icon { background: var(--z-cta); color: var(--z-white); transform: scale(1.1); }
.step-card h3 { font-size: 1.05rem; margin-bottom: .65rem; color: var(--z-dark); }
.step-card p  { font-size: .9rem; color: var(--z-dark-4); }

.step-connector { display: flex; align-items: center; justify-content: center; color: var(--z-cta); opacity: .5; padding-top: 4rem; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════ */
.pricing-grid { display: flex; flex-direction: column; gap: .875rem; margin-bottom: 1.5rem; }

.pricing-card {
  display: flex; align-items: center; gap: 1.25rem;
  background: var(--z-white); border: 2px solid var(--z-border);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.pricing-card:hover { border-color: var(--z-cta); box-shadow: 0 6px 24px rgba(0,171,228,.12); transform: translateX(4px); }

.pricing-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--z-cta-light); border-radius: var(--radius-md); color: var(--z-cta); flex-shrink: 0; transition: background var(--transition), color var(--transition); }
.pricing-card:hover .pricing-icon { background: var(--z-cta); color: var(--z-white); }

.pricing-info { flex: 1; }
.pricing-info h4 { font-size: .97rem; margin-bottom: .15rem; font-family: var(--font-body); font-weight: 700; color: var(--z-dark); }
.pricing-detail { font-size: .82rem; color: var(--z-dark-4); }

.pricing-price { font-size: .88rem; color: var(--z-dark-4); flex-shrink: 0; white-space: nowrap; }
.pricing-price strong { font-family: var(--font-title); font-size: 1.6rem; font-weight: 700; color: var(--z-cta); margin-left: 2px; }

.pricing-notice { font-size: .85rem; color: var(--z-dark-4); text-align: center; padding: 1rem 1.5rem; background: var(--fun-sky); border-radius: var(--radius-lg); margin-bottom: 1.5rem; border-left: 4px solid var(--z-cta); }

.pricing-faqs { display: flex; flex-direction: column; gap: .5rem; }
.pricing-faq { background: var(--z-white); border-radius: var(--radius-lg); border: 2px solid var(--z-border); overflow: hidden; transition: border-color var(--transition); }
.pricing-faq[open] { border-color: var(--z-cta); }
.pricing-faq summary { padding: 1rem 1.25rem; cursor: pointer; font-weight: 700; font-size: .95rem; color: var(--z-dark); list-style: none; display: flex; justify-content: space-between; align-items: center; user-select: none; transition: color var(--transition); }
.pricing-faq summary::-webkit-details-marker { display: none; }
.pricing-faq summary::after { content: '+'; font-size: 1.3rem; color: var(--z-cta); transition: transform var(--transition); flex-shrink: 0; margin-left: 1rem; }
.pricing-faq[open] summary::after { transform: rotate(45deg); }
.pricing-faq[open] summary { color: var(--z-cta); }
.pricing-faq p { padding: .75rem 1.25rem 1.25rem; font-size: .92rem; color: var(--z-dark-4); line-height: 1.65; }

/* ═══════════════════════════════════════════════════
   LOCAL
═══════════════════════════════════════════════════ */
.local-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; position: relative; z-index: 1; }
.local-text h2 { margin: .75rem 0 1.25rem; }
.local-text p  { font-size: .98rem; color: var(--z-dark-2); margin-bottom: 1rem; line-height: 1.78; }

.local-zones { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.75rem; }
.zone-pill { display: inline-block; padding: .38rem .95rem; background: var(--z-white); border: 2px solid var(--fun-mint-b); color: var(--fun-mint-b); border-radius: var(--radius-pill); font-size: .83rem; font-weight: 700; transition: background var(--transition), color var(--transition); }
.zone-pill:hover { background: var(--fun-mint-b); color: var(--z-white); }

.local-reassurance { background: var(--z-white); border-radius: var(--radius-xl); border: 2px solid rgba(0,171,228,.2); padding: 2.5rem; box-shadow: 0 16px 48px rgba(0,168,120,.12); }
.local-reassurance h3 { font-size: 1.3rem; margin-bottom: 1.5rem; color: var(--z-dark); }

.reassurance-list { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 2rem; }
.reassurance-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .97rem; color: var(--z-dark-2); }
.reassurance-icon { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; background: var(--z-success); color: var(--z-white); border-radius: 50%; flex-shrink: 0; margin-top: 2px; }

.local-cta { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════
   AVIS
═══════════════════════════════════════════════════ */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }

.review-card { background: var(--z-white); border: 2px solid var(--z-border); border-radius: var(--radius-xl); padding: 1.75rem; transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition); }
.review-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.09); transform: translateY(-4px); border-color: var(--z-cta); }

.review-header { display: flex; align-items: center; gap: .875rem; margin-bottom: .875rem; }
.review-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--z-cta), var(--z-blue)); color: var(--z-white); display: flex; align-items: center; justify-content: center; font-family: var(--font-title); font-size: 1.2rem; font-weight: 700; flex-shrink: 0; box-shadow: 0 3px 10px rgba(0,171,228,.3); }
.review-header > div:nth-child(2) { flex: 1; }
.review-header strong { display: block; font-size: .97rem; color: var(--z-dark); }
.review-header span   { font-size: .82rem; color: var(--z-dark-4); }
.review-stars { display: flex; gap: 2px; color: var(--fun-yellow-b); margin-left: auto; }

.review-tag { display: inline-block; font-size: .78rem; font-weight: 700; color: var(--z-cta); background: var(--z-cta-light); padding: .22rem .7rem; border-radius: var(--radius-pill); margin-bottom: .875rem; text-transform: uppercase; letter-spacing: .05em; }
.review-card blockquote { font-size: .93rem; color: var(--z-dark-4); line-height: 1.72; border: none; padding: 0; margin: 0; }

/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info h2  { margin: .75rem 0 1rem; }
.contact-info > p { font-size: .97rem; color: var(--z-dark-4); margin-bottom: 1.5rem; line-height: 1.78; }

.contact-phone { display: flex; align-items: center; gap: .75rem; font-family: var(--font-title); font-size: 2rem; font-weight: 700; color: var(--z-cta); letter-spacing: .02em; margin-bottom: .5rem; transition: color var(--transition); }
.contact-phone:hover { color: var(--z-cta-hover); }
.contact-hours { font-size: .85rem; color: var(--z-dark-4); margin-bottom: 2rem; }
.contact-guarantees { display: flex; flex-direction: column; gap: .75rem; }
.contact-guarantee-item { display: flex; align-items: center; gap: .65rem; font-size: .92rem; color: var(--z-dark-2); }
.contact-guarantee-item svg { color: var(--z-success); flex-shrink: 0; }

.contact-form-wrap { background: var(--z-white); border: 2px solid var(--z-border); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.form-group:last-child { margin-bottom: 0; }
.form-group label { font-size: .88rem; font-weight: 700; color: var(--z-dark); }
.req { color: var(--z-cta); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body); font-size: .95rem; color: var(--z-dark);
  background: var(--z-bg); border: 2px solid var(--z-border);
  border-radius: var(--radius-md); padding: .75rem 1rem; outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition); width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--z-cta); box-shadow: 0 0 0 4px rgba(0,171,228,.12); background: var(--z-white); }
.form-group input[readonly] { background: var(--z-bg); color: var(--z-dark-4); cursor: default; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #b8b8b8; }
.form-group textarea { resize: vertical; min-height: 110px; }

.select-wrap { position: relative; }
.select-wrap select { appearance: none; cursor: pointer; padding-right: 2.5rem; }
.select-icon { position: absolute; right: .875rem; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--z-dark-4); }

.address-input-wrap { position: relative; }
.address-suggestions { position: absolute; left: 0; right: 0; top: calc(100% + 4px); background: var(--z-white); border: 2px solid var(--z-cta); border-radius: var(--radius-md); z-index: 50; display: none; max-height: 220px; overflow-y: auto; box-shadow: var(--shadow-card); }
.address-suggestions.open { display: block; }
.suggestion-item { padding: .75rem 1rem; cursor: pointer; font-size: .92rem; color: var(--z-dark-2); border-bottom: 1px solid var(--z-border); transition: background var(--transition), color var(--transition); }
.suggestion-item:last-child { border-bottom: none; }
.suggestion-item:hover, .suggestion-item.active { background: var(--z-cta-light); color: var(--z-cta); }
.field-hint { font-size: .8rem; color: var(--z-dark-4); margin-top: .25rem; }

.checkbox-label { display: flex; align-items: flex-start; gap: .75rem; cursor: pointer; font-size: .88rem; color: var(--z-dark-4); line-height: 1.5; }
.checkbox-label input[type="checkbox"] { display: none; }
.checkbox-custom { width: 20px; height: 20px; border: 2px solid var(--z-border); border-radius: 5px; background: var(--z-white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; transition: border-color var(--transition), background var(--transition); }
.checkbox-label input:checked + .checkbox-custom { background: var(--z-cta); border-color: var(--z-cta); }
.checkbox-label input:checked + .checkbox-custom::after { content: ''; width: 10px; height: 6px; border-left: 2px solid white; border-bottom: 2px solid white; transform: rotate(-45deg) translateY(-1px); display: block; }

.form-consent { margin-top: .5rem; }
.form-actions { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.5rem; }
.form-error-msg { background: #fff0ee; border: 1.5px solid var(--z-error); color: var(--z-error); padding: .75rem 1rem; border-radius: var(--radius-md); font-size: .88rem; margin-top: .5rem; }
.form-success { text-align: center; padding: 3rem 1.5rem; }
.form-success svg { color: var(--z-success); margin: 0 auto 1rem; }
.form-success h3  { font-size: 1.4rem; margin-bottom: .75rem; color: var(--z-dark); }
.form-success p   { color: var(--z-dark-4); font-size: .97rem; }
.form-success a   { color: var(--z-cta); font-weight: 600; }

/* ═══════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════ */
.faq-meta { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-bottom: 2.5rem; }
.faq-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .4rem 1rem; background: var(--z-white); border: 2px solid var(--z-border); border-radius: var(--radius-pill); font-size: .88rem; color: var(--z-dark-4); }
.faq-badge-cta { background: var(--z-cta); border-color: var(--z-cta); color: var(--z-white); cursor: pointer; transition: background var(--transition); }
.faq-badge-cta:hover { background: var(--z-cta-hover); }

.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: .625rem; }
.faq-item { background: var(--z-white); border: 2px solid var(--z-border); border-radius: var(--radius-lg); overflow: hidden; transition: border-color var(--transition), box-shadow var(--transition); }
.faq-item[open] { border-color: var(--z-cta); box-shadow: 0 4px 20px rgba(0,171,228,.1); }
.faq-item summary { padding: 1.25rem 1.5rem; cursor: pointer; font-weight: 700; font-size: 1rem; color: var(--z-dark); list-style: none; display: flex; align-items: flex-start; gap: 1rem; user-select: none; transition: color var(--transition); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--z-cta); }
.faq-n { font-family: var(--font-title); font-size: .78rem; font-weight: 700; color: var(--z-cta); background: var(--z-cta-light); padding: .2rem .5rem; border-radius: 4px; letter-spacing: .05em; flex-shrink: 0; margin-top: 2px; }
.faq-body { padding: 0 1.5rem 1.25rem 3.75rem; font-size: .95rem; color: var(--z-dark-4); line-height: 1.78; }
.faq-body strong { color: var(--z-dark); }
.faq-body a { color: var(--z-cta); font-weight: 600; }
.faq-body a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════════ */
.cta-final-inner { text-align: center; position: relative; z-index: 1; }
.cta-final-inner h2 { color: var(--z-white); margin-bottom: 2rem; font-size: clamp(1.8rem, 4vw, 3rem); }
.cta-final-inner h2 em { color: #b8e8fa; font-style: italic; }
.cta-final-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.site-footer { background: var(--z-dark); border-top: 3px solid var(--z-cta); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-brand { color: var(--z-white); margin-bottom: 1rem; display: inline-flex; }
.footer-brand > p { font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 1.25rem; max-width: 280px; }
.footer-phone { font-family: var(--font-title); font-size: 1.35rem; font-weight: 700; color: var(--z-cta); letter-spacing: .02em; transition: color var(--transition); }
.footer-phone:hover { color: var(--z-cta-hover); }
.footer-col h4 { font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1rem; font-family: var(--font-body); }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { font-size: .9rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col a:hover { color: var(--z-cta); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; }
.footer-bottom p { font-size: .85rem; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .85rem; color: rgba(255,255,255,.3); transition: color var(--transition); }
.footer-legal a:hover { color: var(--z-cta); }

.footer-credit {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1rem;
  margin-top: .5rem;
  text-align: center;
}
.footer-credit p { font-size: .8rem; color: rgba(255,255,255,.25); }
.footer-credit a { color: var(--z-cta); opacity: .7; transition: opacity var(--transition); }
.footer-credit a:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════
   FLOATING CTA
═══════════════════════════════════════════════════ */
.floating-cta { display: none; position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%) translateY(100px); z-index: 200; transition: transform .35s cubic-bezier(.4,0,.2,1); }
.floating-cta.visible { transform: translateX(-50%) translateY(0); }

/* ═══════════════════════════════════════════════════
   REVEAL
═══════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { min-height: 340px; margin-top: 2rem; }
  .hero-card-mini { display: none; }
  .hero-card-main { width: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .steps-grid { grid-template-columns: 1fr 1fr; row-gap: 1.5rem; }
  .step-connector:nth-child(4) { display: none; }
  .step-connector { padding-top: 2rem; }
  .local-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero { padding-top: 2.5rem; }
  .hero-text { padding-bottom: 2.5rem; }
  .hero-card-mini { display: none; }
  .hero-card-main { width: 280px; padding: 2rem 1.5rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .floating-cta { display: block; }
  .cta-final-actions { flex-direction: column; align-items: center; }
  .contact-form-wrap { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .faq-body { padding-left: 1.5rem; }
  .hero-stats { flex-direction: column; gap: .5rem; }
}

/* ═══════════════════════════════════════════════════
   PAGES LÉGALES (mentions, confidentialité, CGU)
═══════════════════════════════════════════════════ */

.legal-main {
  min-height: calc(100vh - 70px);
  background: var(--z-bg);
  padding: 3rem 0 5rem;
}

.legal-wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* Breadcrumb */
.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--z-dark-4);
  margin-bottom: 2.5rem;
}
.legal-breadcrumb a { color: var(--z-cta); transition: color var(--transition); }
.legal-breadcrumb a:hover { color: var(--z-cta-hover); text-decoration: underline; }
.legal-breadcrumb span[aria-current] { color: var(--z-dark); font-weight: 600; }

/* Hero légal */
.legal-hero {
  margin-bottom: 3rem;
}
.legal-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--z-dark);
  margin: .75rem 0 .5rem;
  line-height: 1.15;
}
.legal-title em { color: var(--z-cta); font-style: normal; }
.legal-update {
  display: inline-block;
  font-size: .82rem;
  color: var(--z-dark-4);
  background: var(--z-white);
  border: 1.5px solid var(--z-border);
  border-radius: var(--radius-pill);
  padding: .25rem .85rem;
  margin-bottom: .875rem;
}
.legal-intro {
  font-size: 1rem;
  color: var(--z-dark-4);
  max-width: 680px;
  line-height: 1.78;
  margin-top: .75rem;
}

/* Grid sidebar + contenu */
.legal-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Sidebar */
.legal-sidebar-inner {
  background: var(--z-white);
  border: 2px solid var(--z-border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  position: sticky;
  top: 86px;
}
.legal-sidebar-title {
  font-family: var(--font-title);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--z-dark-4);
  margin-bottom: 1rem;
}
.legal-nav { display: flex; flex-direction: column; gap: .25rem; margin-bottom: 1.5rem; }
.legal-nav a {
  font-size: .88rem;
  color: var(--z-dark-4);
  padding: .4rem .6rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  line-height: 1.4;
}
.legal-nav a:hover { color: var(--z-cta); background: var(--z-cta-light); }

.legal-sidebar-cta {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--z-cta);
  color: var(--z-white);
  border-radius: var(--radius-md);
  padding: .7rem 1rem;
  font-family: var(--font-title);
  font-size: .95rem;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 14px rgba(0,171,228,.3);
}
.legal-sidebar-cta:hover { background: var(--z-cta-hover); transform: translateY(-2px); }

/* Contenu légal */
.legal-content { min-width: 0; }

.legal-section {
  background: var(--z-white);
  border: 2px solid var(--z-border);
  border-radius: var(--radius-xl);
  padding: 2rem 2rem 1.75rem;
  margin-bottom: 1.25rem;
  transition: border-color var(--transition);
}
.legal-section:target { border-color: var(--z-cta); }

.legal-section h2 {
  display: flex;
  align-items: center;
  gap: .875rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--z-dark);
  margin-bottom: 1rem;
}
.legal-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: .78rem;
  font-weight: 700;
  color: var(--z-cta);
  background: var(--z-cta-light);
  min-width: 30px;
  height: 24px;
  border-radius: 4px;
  padding: 0 .5rem;
  letter-spacing: .05em;
  flex-shrink: 0;
}

.legal-section p {
  font-size: .95rem;
  color: var(--z-dark-4);
  line-height: 1.78;
  margin-bottom: .875rem;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { color: var(--z-cta); transition: color var(--transition); font-weight: 600; }
.legal-section a:hover { color: var(--z-cta-hover); text-decoration: underline; }

.legal-list {
  margin: .75rem 0 .875rem 0;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.legal-list li {
  font-size: .93rem;
  color: var(--z-dark-4);
  line-height: 1.6;
  list-style: disc;
}
.legal-list li a { color: var(--z-cta); font-weight: 600; }
.legal-list li a:hover { text-decoration: underline; }
.legal-list li strong { color: var(--z-dark); }

.legal-btn-home {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 500;
  color: var(--z-cta);
  background: var(--z-cta-light);
  border: 2px solid rgba(0,171,228,.2);
  border-radius: var(--radius-md);
  padding: .75rem 1.5rem;
  margin-top: 1.5rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.legal-btn-home:hover { background: var(--z-cta); color: var(--z-white); border-color: var(--z-cta); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════
   PAGE 404
═══════════════════════════════════════════════════ */

.page-404-main {
  min-height: calc(100vh - 70px - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--z-white);
  padding: 4rem clamp(1rem, 4vw, 2.5rem);
}

.p404-blobs { position: absolute; inset: 0; pointer-events: none; }
.p404-blob { position: absolute; border-radius: 50%; }
.p404-blob-1 {
  width: 500px; height: 500px;
  top: -160px; right: -160px;
  background: radial-gradient(circle, rgba(0,171,228,.12) 0%, transparent 65%);
  animation: float-shape 8s ease-in-out infinite;
}
.p404-blob-2 {
  width: 380px; height: 380px;
  bottom: -120px; left: -120px;
  background: radial-gradient(circle, rgba(0,168,120,.1) 0%, transparent 65%);
  animation: float-shape 10s ease-in-out 1s infinite;
}
.p404-blob-3 {
  width: 260px; height: 260px;
  top: 40%; left: 40%;
  background: radial-gradient(circle, rgba(245,165,36,.08) 0%, transparent 65%);
  animation: float-shape 7s ease-in-out 2s infinite;
}

.p404-inner {
  text-align: center;
  max-width: 540px;
  position: relative;
  z-index: 1;
}

.p404-num {
  font-family: var(--font-title);
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 3px var(--z-border);
  letter-spacing: .04em;
  margin-bottom: -.5rem;
  user-select: none;
  animation: float-card 5s ease-in-out infinite;
}

.p404-icon {
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  background: var(--z-cta-light);
  border: 2px solid rgba(0,171,228,.2);
  border-radius: var(--radius-xl);
  color: var(--z-cta);
  margin: 1rem auto 1.5rem;
  box-shadow: 0 8px 24px rgba(0,171,228,.15);
}

.p404-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--z-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.p404-title em { color: var(--z-cta); font-style: normal; }

.p404-desc {
  font-size: 1rem;
  color: var(--z-dark-4);
  line-height: 1.72;
  margin-bottom: 2rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.p404-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.p404-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: var(--z-dark-4);
  transition: color var(--transition);
  border-top: 1px solid var(--z-border);
  padding-top: 1.25rem;
  margin-top: .25rem;
}
.p404-phone:hover { color: var(--z-cta); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE PAGES LÉGALES + 404
═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .legal-grid { grid-template-columns: 1fr; }
  .legal-sidebar-inner { position: static; }
  .legal-sidebar { order: 1; }
  .legal-content { order: 0; }
}

@media (max-width: 480px) {
  .legal-section { padding: 1.5rem; }
  .p404-num { font-size: clamp(5rem, 24vw, 8rem); }
  .p404-actions { flex-direction: column; align-items: stretch; }
  .p404-actions .btn { justify-content: center; }
}