/* ══ RESET & VARIABLES ═══════════════════════════════════════════════ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}

:root{
  --blue:#2563eb;
  --blue-dark:#1a2e4a;
  --blue-light:#eff6ff;
  --blue-mid:#1d4ed8;
  --gold:#f59e0b;
  --gold-hover:#d97706;
  --white:#ffffff;
  --text:#1e293b;
  --text-secondary:#64748b;
  --border:#e2e8f0;
  --radius:12px;
  --shadow:0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:0 8px 48px rgba(0,0,0,.14);
  --green:#16a34a;
  --green-light:#f0fdf4;
}

body{font-family:'Inter',sans-serif;font-size:16px;color:var(--text);background:var(--white);-webkit-font-smoothing:antialiased;overflow-x:hidden;}
html,body{max-width:100%;}

/* Reduced motion */
@media(prefers-reduced-motion:reduce){
  *{animation-duration:.01ms!important;transition-duration:.01ms!important}
  html{scroll-behavior:auto}
}

/* Focus visible — accessibilité clavier */
*:focus:not(:focus-visible){outline:none}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible{
  outline:2px solid var(--blue);
  outline-offset:2px;
  border-radius:4px;
}
.fg input:focus-visible,
.fg select:focus-visible{outline:none;border-color:var(--gold);box-shadow:0 0 0 3px rgba(245,158,11,.25)}

/* Skip link */
.skip-link{
  position:absolute;top:-100px;left:16px;
  background:var(--blue);color:white;padding:8px 16px;
  border-radius:0 0 8px 8px;font-weight:600;text-decoration:none;
  z-index:9999;transition:top .2s;font-family:'Poppins',sans-serif;font-size:14px;
}
.skip-link:focus{top:0}

/* ══ NAV ══════════════════════════════════════════════════════════════ */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  background:white;
  box-shadow:0 1px 16px rgba(0,0,0,.08);
  padding:0 32px;
  height:72px;
  display:flex;align-items:center;justify-content:space-between;gap:20px;
}
.nav-logo{display:flex;align-items:center;gap:10px;text-decoration:none;flex-shrink:0}
.nav-logo-icon{
  width:38px;height:38px;background:var(--blue);border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  font-family:'Poppins',sans-serif;font-size:20px;font-weight:900;color:white;
  flex-shrink:0;
}
.nav-logo-text{font-family:'Poppins',sans-serif;font-size:18px;font-weight:700;color:var(--text)}
.nav-right{display:flex;align-items:center;gap:12px}
.nav-phone{
  font-family:'Inter',sans-serif;font-size:14px;font-weight:500;color:var(--text);
  text-decoration:none;display:flex;align-items:center;gap:8px;flex-shrink:0;
}
.nav-phone-ico{
  width:34px;height:34px;background:var(--blue-light);border-radius:50%;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.nav-phone-ico svg{width:14px;height:14px;stroke:var(--blue);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.nav-phone-text{display:flex;flex-direction:column}
.nav-phone-text span{color:var(--text-secondary);font-size:11px;display:block;margin-bottom:1px;line-height:1}
.nav-phone-text strong{display:block;color:var(--text);font-size:14px;font-weight:700;line-height:1}
.nav-phone-icon-only{display:none}
.nav-cta{
  background:var(--gold);color:var(--text);font-family:'Poppins',sans-serif;
  font-size:14px;font-weight:600;padding:11px 22px;border-radius:8px;
  border:none;cursor:pointer;text-decoration:none;white-space:nowrap;
  transition:background .2s,transform .15s,box-shadow .2s;
  box-shadow:0 2px 12px rgba(245,158,11,.3);
  display:inline-flex;align-items:center;flex-shrink:0;
}
.nav-cta:hover{background:var(--gold-hover);transform:translateY(-1px);box-shadow:0 4px 18px rgba(245,158,11,.4)}

/* ══ HERO ══════════════════════════════════════════════════════════════ */
.hero{
  position:relative;overflow:hidden;
  background:var(--blue-dark);
  min-height:100vh;
  display:flex;align-items:flex-start;justify-content:center;
  padding:112px 24px 60px;
}
/* Photo de fond placeholder */
.hero-bg{
  position:absolute;inset:0;
  z-index:0;
}
.hero-bg::after{
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(rgba(26,46,74,.55),rgba(26,46,74,.55));
  z-index:1;
}
.hero-bg img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;z-index:0;
}
.hero-inner{position:relative;z-index:1;width:100%;max-width:680px;display:flex;flex-direction:column;align-items:center;justify-content:space-between;gap:0;text-align:center;min-height:calc(100vh - 107px - 80px);}
.hero-bottom{width:100%;position:relative}
.hero-copy{color:white;width:100%;margin-top:60px}
.hero-h1{
  font-family:'Poppins',sans-serif;font-size:clamp(26px,5.5vw,50px);
  font-weight:800;color:white;line-height:1.2;margin-bottom:36px;
}
.hero-h1 .h1-line{display:block;white-space:nowrap}
.hero-h1 .hl{color:var(--gold)}
.hero-sub{font-family:'Inter',sans-serif;font-size:clamp(16px,2vw,20px);color:rgba(255,255,255,.95);line-height:1.65;font-weight:500;max-width:580px;margin:0 auto;position:absolute;bottom:calc(100% + 80px);left:50%;transform:translateX(-50%);width:100%;text-align:center;}
.mobile-br{display:none}

/* ══ FORMULAIRE 2 ÉTAPES ════════════════════════════════════════════ */
.main-content{padding-top:0}
html{scroll-padding-top:88px}
.form-card{width:100%;}
.form-card-head{padding:0;margin-bottom:4px}
.form-card-head--step2{margin-bottom:14px}
.form-title{font-family:'Poppins',sans-serif;font-size:20px;font-weight:700;color:white;text-align:center;margin-bottom:10px;}
/* Trust pills dans le formulaire */
.form-trust-pills{display:flex;align-items:center;justify-content:center;gap:12px;flex-wrap:wrap;margin-bottom:16px}
.ftp{display:inline-flex;align-items:center;gap:5px;font-size:11px;font-weight:600;color:rgba(255,255,255,.75);background:rgba(255,255,255,.1);border-radius:99px;padding:4px 10px}
.ftp svg{width:11px;height:11px;stroke:#22c55e;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.form-body{padding:0}

/* Champs */
.fg{margin-bottom:10px;position:relative}
.fg label{display:block;color:rgba(255,255,255,.75);font-size:13px;margin-bottom:4px;font-family:'Inter',sans-serif;}
.fg input,.fg select{width:100%;height:46px;padding:0 14px;border:1.5px solid rgba(255,255,255,.2);border-radius:8px;font-family:'Inter',sans-serif;font-size:16px;color:var(--text);background:rgba(255,255,255,.95);outline:none;-webkit-appearance:none;appearance:none;transition:border-color .2s,box-shadow .2s,padding-right .15s;}
.fg input:focus,.fg select:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgba(245,158,11,.2)}
/* ── Validation icons ── */
.fg input.ok{border-color:#22c55e;padding-right:38px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 11px center;background-size:18px}
.fg select.ok{border-color:#22c55e}
.fg input.er{border-color:#ef4444;padding-right:38px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='15' y1='9' x2='9' y2='15'/%3E%3Cline x1='9' y1='9' x2='15' y2='15'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 11px center;background-size:18px}
.fg select.er{border-color:#ef4444}
/* ── Hint text ── */
.fg-hint{display:block;font-size:11px;color:rgba(255,255,255,.65);max-height:0;overflow:hidden;opacity:0;padding-top:0;transition:max-height .2s ease,opacity .2s ease,padding-top .15s ease}
.fg input:focus~.fg-hint,.fg select:focus~.fg-hint{max-height:24px;opacity:1;padding-top:4px}
/* ── Erreur animée ── */
@keyframes mv-shake{0%,100%{transform:translateX(0)}20%,60%{transform:translateX(-4px)}40%,80%{transform:translateX(4px)}}
.fg-err.s{animation:mv-shake .25s ease}
/* ── Barre de progression ── */
/* ── Badge RGPD ── */
@keyframes spin{to{transform:rotate(360deg)}}
@keyframes mv-pop{from{transform:scale(.7);opacity:0}to{transform:scale(1);opacity:1}}
#rgpd-badge{font-size:11px;font-weight:600;color:#22c55e;margin-left:6px;animation:mv-pop .2s ease}
/* ── Sticky CTA mobile ── */
/* ── sr-only ── */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}
.fg input::placeholder{color:#64748b}
.fg 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='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 14px center;padding-right:36px;cursor:pointer}
.fg input[type=date]::-webkit-calendar-picker-indicator{cursor:pointer;opacity:.6}
.fg-row{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.fg-err{font-size:11px;color:#ef4444;margin-top:3px;display:none}
.fg-err.s{display:block}
.flex-date-label{display:flex;align-items:center;gap:6px;margin-top:6px;font-size:12px;color:rgba(255,255,255,.7);cursor:pointer;font-family:'Inter',sans-serif}
.flex-date-label input[type=checkbox]{accent-color:var(--gold);width:13px;height:13px;cursor:pointer;flex-shrink:0}

/* Boutons */
.btn-primary{
  width:100%;height:50px;background:var(--blue);color:white;
  font-family:'Poppins',sans-serif;font-size:16px;font-weight:600;
  border:none;border-radius:8px;cursor:pointer;
  transition:background .2s,transform .15s,box-shadow .2s;
  box-shadow:0 4px 16px rgba(37,99,235,.35);
  display:flex;align-items:center;justify-content:center;gap:8px;
}
.btn-primary:hover{background:var(--blue-mid);transform:translateY(-1px);box-shadow:0 6px 20px rgba(37,99,235,.4)}
.btn-primary:active{transform:scale(.98)}
.btn-gold{
  width:100%;height:52px;background:var(--gold);color:var(--text);
  font-family:'Poppins',sans-serif;font-size:16px;font-weight:700;
  border:none;border-radius:8px;cursor:pointer;
  transition:background .2s,transform .15s,box-shadow .2s;
  box-shadow:0 4px 20px rgba(245,158,11,.4);
  display:flex;align-items:center;justify-content:center;gap:8px;
}
.btn-gold:hover{background:var(--gold-hover);transform:translateY(-1px);box-shadow:0 6px 24px rgba(245,158,11,.5)}
.btn-gold:disabled{
  background:#475569;color:rgba(255,255,255,.5);
  box-shadow:none;cursor:not-allowed;transform:none;border:none;
}

/* ══ BLOC RGPD ═══════════════════════════════════════════════════════ */
.rgpd-block{
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:4px;padding-top:14px;margin-bottom:14px;
}
.rgpd-legal{
  font-size:11px;color:rgba(255,255,255,.5);line-height:1.65;
  margin-bottom:12px;
}
.rgpd-link{color:rgba(255,255,255,.6);text-decoration:underline;transition:color .15s}
.rgpd-link:hover{color:var(--gold)}
.rgpd-check-label{
  display:flex;align-items:flex-start;gap:12px;cursor:pointer;
}
.rgpd-check-label input[type=checkbox]{position:absolute;opacity:0;width:0;height:0}
.rgpd-check-box{
  flex-shrink:0;width:22px;height:22px;border-radius:6px;
  border:2px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;
  transition:border-color .15s,background .15s;
  margin-top:1px;
}
.rgpd-check-box svg{width:12px;height:10px;opacity:0;transition:opacity .15s}
.rgpd-check-label input:checked ~ .rgpd-check-box{
  border-color:var(--gold);background:var(--gold);
}
.rgpd-check-label input:checked ~ .rgpd-check-box svg{opacity:1}
.rgpd-check-label:hover .rgpd-check-box{border-color:rgba(255,255,255,.6)}
.rgpd-check-text{
  font-size:13px;font-weight:500;color:rgba(255,255,255,.85);line-height:1.5;
}

.btn-back{background:none;border:none;color:rgba(255,255,255,.6);font-family:'Inter',sans-serif;font-size:13px;cursor:pointer;display:flex;align-items:center;gap:4px;margin-bottom:14px;padding:0;transition:color .2s;}
.btn-back:hover{color:white}
.btn-back svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

/* Étapes */
.form-step{display:none}
.form-step.active{display:block}

/* ══ SECTION COMMENT CA MARCHE ══════════════════════════════════════ */
.sec{padding:64px 24px}
.sec-inner{max-width:860px;margin:0 auto}
.sec-title{
  font-family:'Poppins',sans-serif;font-size:clamp(24px,3.5vw,34px);
  font-weight:700;color:var(--text);text-align:center;margin-bottom:10px;
}
.sec-sub{
  font-family:'Inter',sans-serif;font-size:16px;color:var(--text-secondary);
  text-align:center;margin-bottom:32px;max-width:520px;margin-left:auto;margin-right:auto;
}
.steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-bottom:32px}
.step-card{text-align:center;padding:24px 20px;background:white;border-radius:var(--radius);border:1.5px solid var(--border);box-shadow:0 2px 12px rgba(37,99,235,.06);transition:border-color .2s,box-shadow .2s,transform .2s}
.step-card:hover{border-color:var(--blue);box-shadow:0 8px 28px rgba(37,99,235,.1);transform:translateY(-3px)}
.step-num{
  width:52px;height:52px;background:var(--blue-light);border-radius:14px;
  display:flex;align-items:center;justify-content:center;margin:0 auto 14px;
  font-family:'Poppins',sans-serif;font-size:22px;font-weight:800;color:var(--blue);
}
.step-ico{width:28px;height:28px;stroke:var(--blue);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.step-h{font-family:'Poppins',sans-serif;font-size:17px;font-weight:700;color:var(--text);margin-bottom:8px}
.step-p{font-size:14px;color:var(--text-secondary);line-height:1.7;font-weight:300}
.sec-cta-wrap{text-align:center}
.btn-cta-gold{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--gold);color:var(--text);
  font-family:'Poppins',sans-serif;font-size:16px;font-weight:700;
  padding:14px 36px;border-radius:10px;border:none;cursor:pointer;
  text-decoration:none;transition:background .2s,transform .15s,box-shadow .2s;
  box-shadow:0 4px 20px rgba(245,158,11,.35);
}
.btn-cta-gold:hover{background:var(--gold-hover);transform:translateY(-2px);box-shadow:0 6px 28px rgba(245,158,11,.45)}

/* ══ SECTION POURQUOI ═══════════════════════════════════════════════ */
.sec-blue{background:var(--blue-light);padding:64px 24px}
.chiffres-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-bottom:32px}
.chiffre-card{
  text-align:center;background:white;border-radius:var(--radius);
  padding:32px 20px;box-shadow:0 2px 16px rgba(37,99,235,.07);
  transition:transform .2s,box-shadow .2s;
}
.chiffre-card:hover{transform:translateY(-4px);box-shadow:0 8px 32px rgba(37,99,235,.12)}
.chiffre-n{
  font-family:'Poppins',sans-serif;font-size:clamp(36px,5vw,56px);
  font-weight:800;color:var(--blue);line-height:1;margin-bottom:8px;
}
.chiffre-label{font-family:'Poppins',sans-serif;font-size:14px;font-weight:600;color:var(--text);margin-bottom:8px}
.chiffre-desc{font-size:13px;color:var(--text-secondary);line-height:1.6;font-weight:300}

/* ══ SECTION HUB RESSOURCES SEO ══════════════════════════════════════ */
.sec-hub{background:var(--blue-light)}
.hub-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.hub-card{
  background:white;border-radius:var(--radius);padding:28px 24px;
  border:1.5px solid var(--border);
  transition:border-color .2s,box-shadow .2s,transform .2s;
}
.hub-card:hover{border-color:var(--blue);box-shadow:0 6px 24px rgba(37,99,235,.1);transform:translateY(-2px)}
.hub-ico{
  width:48px;height:48px;background:var(--blue-light);border-radius:12px;
  display:flex;align-items:center;justify-content:center;margin-bottom:14px;
}
.hub-ico svg{width:22px;height:22px;stroke:var(--blue)}
.hub-h{font-family:'Poppins',sans-serif;font-size:16px;font-weight:700;color:var(--text);margin-bottom:8px}
.hub-p{font-size:13px;color:var(--text-secondary);line-height:1.7;margin-bottom:14px}
.hub-link{font-size:13px;font-weight:600;color:var(--blue);text-decoration:none;transition:color .2s}
.hub-link:hover{color:var(--blue-mid);text-decoration:underline}
@media(max-width:600px){.hub-grid{grid-template-columns:1fr}.hub-card{padding:20px 16px}}

/* ══ SECTION MAINE-ET-LOIRE (SEO département) ══════════════════════ */
.sec-49{background:white;padding:64px 24px}
.sec-49-inner{max-width:1080px;margin:0 auto}
.sec-49-intro{
  max-width:740px;margin:0 auto 48px;text-align:center;
}
.sec-49-intro p{
  font-size:16px;color:var(--text-secondary);line-height:1.8;
}
.sec-49-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:20px;
  margin-bottom:40px;
}
.sec-49-card{
  background:#f8fafc;border:1.5px solid var(--border);border-radius:var(--radius);
  padding:28px 26px;
  transition:border-color .2s,box-shadow .2s,transform .2s;
}
.sec-49-card:hover{
  border-color:var(--blue);
  box-shadow:0 6px 24px rgba(37,99,235,.09);
  transform:translateY(-2px);
}
.sec-49-card-head{display:flex;align-items:center;gap:12px;margin-bottom:14px}
.sec-49-ico{
  width:44px;height:44px;background:var(--blue-light);border-radius:10px;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.sec-49-ico svg{width:20px;height:20px;stroke:var(--blue);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.sec-49-card-title{
  font-family:'Poppins',sans-serif;font-size:16px;font-weight:700;color:var(--text);
}
.sec-49-card p{font-size:13.5px;color:var(--text-secondary);line-height:1.75;margin-bottom:10px}
.sec-49-card p:last-child{margin-bottom:0}
.sec-49-card strong{color:var(--text);font-weight:600}
@media(max-width:960px){
  .sec-49-grid{grid-template-columns:1fr}
}
@media(max-width:600px){
  .sec-49{padding:40px 16px}
}

/* ══ FAQ ═════════════════════════════════════════════════════════════ */
.faq-list{display:flex;flex-direction:column;gap:10px;max-width:720px;margin:0 auto 48px}
.faq-item{border:1.5px solid var(--border);border-radius:10px;overflow:hidden;background:white;transition:border-color .2s}
.faq-item.open{border-color:var(--blue)}
.faq-q{
  width:100%;background:none;border:none;padding:18px 22px;
  display:flex;justify-content:space-between;align-items:center;
  cursor:pointer;font-family:'Poppins',sans-serif;font-size:15px;font-weight:600;
  color:var(--text);text-align:left;gap:12px;transition:color .2s;
}
.faq-q:hover{color:var(--blue)}
.faq-ico{font-size:22px;color:var(--blue);flex-shrink:0;transition:transform .25s;line-height:1;font-weight:300;user-select:none}
.faq-item.open .faq-ico{transform:rotate(45deg)}
.faq-a{
  max-height:0;overflow:hidden;transition:max-height .4s ease,padding .35s ease;
  font-size:14px;color:var(--text-secondary);line-height:1.8;font-weight:300;padding:0 22px;
}
.faq-item.open .faq-a{max-height:600px;padding:0 22px 18px}

/* ══ COMPARATIF 2 COLONNES ═══════════════════════════════════════════ */
.sec-comp{padding:64px 24px;background:var(--white)}
.comp2-wrap{width:100%;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-lg);margin-top:8px}
/* En-têtes */
.comp2-head{display:grid;grid-template-columns:1fr 1fr 1fr;background:#f8fafc}
.comp2-col-label{padding:16px 20px}
.comp2-col-other{padding:16px 20px;text-align:center;border-left:1px solid var(--border)}
.comp2-col-us{padding:16px 20px;text-align:center;background:var(--blue);position:relative;border-left:1px solid var(--blue)}
.comp2-badge-top{display:block;font-size:10px;font-weight:700;background:var(--gold);color:var(--text);padding:2px 8px;border-radius:99px;margin-bottom:6px;width:fit-content;margin-left:auto;margin-right:auto}
.comp2-head-title{display:block;font-family:'Poppins',sans-serif;font-size:14px;font-weight:700;color:var(--text)}
.comp2-col-us .comp2-head-title{color:white}
.comp2-head-sub{display:block;font-size:11px;color:var(--text-secondary);margin-top:2px}
.comp2-col-us .comp2-head-sub{color:rgba(255,255,255,.65)}
/* Lignes */
.comp2-row{display:grid;grid-template-columns:1fr 1fr 1fr;border-top:1px solid var(--border);transition:background .15s}
.comp2-row:hover{background:#f8fafc}
.comp2-label{padding:14px 20px;font-size:13px;font-weight:500;color:var(--text);display:flex;align-items:center}
.comp2-other{padding:14px 20px;text-align:center;display:flex;align-items:center;justify-content:center;border-left:1px solid var(--border);background:#fcfcfd}
.comp2-us{padding:14px 20px;text-align:center;display:flex;align-items:center;justify-content:center;border-left:2px solid var(--blue);background:#eff6ff;font-weight:600}
/* Icônes */
.ci{display:inline-flex;align-items:center;gap:4px;font-size:13px}
.ci-ok{color:#16a34a;font-weight:600}
.ci-no{color:#dc2626;font-weight:500}
.ci-mid{color:#d97706;font-weight:500}
.comp-note{font-size:12px;color:var(--text-secondary);margin-top:14px;text-align:center;font-style:italic}
/* Mobile */
@media(max-width:600px){
  .sec-comp{padding:40px 16px}
  .comp2-label{font-size:12px;padding:12px 10px}
  .comp2-other,.comp2-us{padding:12px 8px}
  .ci{font-size:11px}
  .comp2-head{font-size:12px}
  .comp2-col-label,.comp2-col-other,.comp2-col-us{padding:12px 10px}
}

/* ══ SECTION CTA FINAL ═══════════════════════════════════════════════ */
.sec-cta-final{
  padding:96px 24px;
  background:linear-gradient(135deg,var(--blue-dark) 0%,#1d3a6e 60%,#1e2e5a 100%);
  position:relative;overflow:hidden;text-align:center;
}
.sec-cta-final::before{
  content:'';position:absolute;inset:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.sec-cta-final-inner{position:relative;z-index:1;max-width:680px;margin:0 auto}
.sec-cta-final-title{
  font-family:'Poppins',sans-serif;font-size:clamp(28px,4.5vw,42px);
  font-weight:800;color:white;line-height:1.2;margin-bottom:18px;
}
.sec-cta-final-title .hl{color:var(--gold)}
.sec-cta-final-sub{
  font-size:clamp(15px,2vw,18px);color:rgba(255,255,255,.75);
  line-height:1.7;margin-bottom:36px;max-width:520px;margin-left:auto;margin-right:auto;
}
.btn-cta-final{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--gold);color:var(--text);
  font-family:'Poppins',sans-serif;font-size:18px;font-weight:700;
  padding:18px 44px;border-radius:12px;border:none;cursor:pointer;
  text-decoration:none;transition:background .2s,transform .15s,box-shadow .2s;
  box-shadow:0 6px 32px rgba(245,158,11,.45);
  margin-bottom:28px;
}
.btn-cta-final:hover{background:var(--gold-hover);transform:translateY(-3px);box-shadow:0 10px 40px rgba(245,158,11,.55)}
@media(max-width:600px){
  .sec-cta-final{padding:60px 16px}
  .btn-cta-final{font-size:16px;padding:15px 28px;width:100%;justify-content:center}
}
.footer-inner{max-width:1080px;margin:0 auto}
.footer-top{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:28px;margin-bottom:40px}
.footer-logo{display:flex;align-items:center;gap:10px;text-decoration:none;margin-bottom:14px}
.footer-logo-icon{width:36px;height:36px;background:var(--blue);border-radius:7px;display:flex;align-items:center;justify-content:center;font-family:'Poppins',sans-serif;font-size:18px;font-weight:900;color:white}
.footer-logo-text{font-family:'Poppins',sans-serif;font-size:17px;font-weight:700;color:white}
.footer-about{font-size:13px;color:rgba(255,255,255,.48);line-height:1.7;font-weight:300;max-width:220px}
.footer-col h4,.footer-col-title{font-family:'Poppins',sans-serif;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;color:rgba(255,255,255,.35);margin-bottom:16px}
.footer-col a,.footer-col p{display:block;font-size:13px;color:rgba(255,255,255,.52);text-decoration:none;margin-bottom:9px;font-weight:300;transition:color .2s;line-height:1.5}
.footer-col a:hover{color:var(--gold)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding-top:22px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px}
.footer-bottom p{font-size:12px;color:rgba(255,255,255,.22);font-weight:300}
.footer-bottom-links{display:flex;gap:16px}
.footer-bottom-links a{font-size:12px;color:rgba(255,255,255,.28);text-decoration:none;transition:color .2s}
.footer-bottom-links a:hover{color:var(--gold)}

/* ══ FOOTER BASE ════════════════════════════════════════════════════ */
footer{background:var(--blue-dark);padding:56px 24px 32px}

/* ══ NAV LINKS (desktop) ═══════════════════════════════════════════ */
.nav-links{
  display:flex;align-items:center;justify-content:center;gap:2px;
  flex:1;
}
.nav-link{
  display:inline-flex;align-items:center;
  padding:8px 14px;border-radius:8px;text-decoration:none;
  font-family:'Poppins',sans-serif;font-size:13px;font-weight:600;
  color:var(--text);white-space:nowrap;
  transition:background .2s,color .2s;
}
.nav-link:hover{background:var(--blue-light);color:var(--blue)}

/* ══ BURGER (mobile uniquement) ════════════════════════════════════ */
.nav-burger{
  display:none;background:none;border:none;cursor:pointer;
  width:42px;height:42px;border-radius:8px;
  flex-direction:column;justify-content:center;align-items:center;gap:5px;
  padding:0;
  transition:background .2s;
  order:-1; /* burger AVANT le CTA sur mobile */
}
.nav-burger:hover{background:var(--blue-light)}
.nav-burger span{
  display:block;width:22px;height:2px;background:var(--text);
  border-radius:2px;transition:transform .25s,opacity .2s;
}
.nav-burger.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-burger.active span:nth-child(2){opacity:0}
.nav-burger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ══ DRAWER ════════════════════════════════════════════════════════ */
.nav-drawer{
  position:fixed;inset:0;z-index:200;
  display:none;
}
.nav-drawer.open{display:block}
.nav-drawer-backdrop{
  position:absolute;inset:0;
  background:rgba(15,23,42,.55);backdrop-filter:blur(2px);
  animation:drawer-fade .25s ease;
}
@keyframes drawer-fade{from{opacity:0}to{opacity:1}}
.nav-drawer-panel{
  position:absolute;top:0;right:0;bottom:0;
  width:88%;max-width:340px;
  background:white;
  display:flex;flex-direction:column;
  box-shadow:-8px 0 32px rgba(0,0,0,.18);
  animation:drawer-slide .28s ease;
}
@keyframes drawer-slide{from{transform:translateX(100%)}to{transform:translateX(0)}}
.nav-drawer-head{
  display:flex;align-items:center;justify-content:space-between;
  padding:18px 22px;border-bottom:1px solid var(--border);
}
.nav-drawer-title{
  font-family:'Poppins',sans-serif;font-size:14px;font-weight:600;
  color:var(--text-secondary);letter-spacing:.04em;text-transform:uppercase;
}
.nav-drawer-close{
  background:none;border:none;cursor:pointer;
  width:36px;height:36px;border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s;
}
.nav-drawer-close:hover{background:#f1f5f9}
.nav-drawer-close svg{
  width:22px;height:22px;stroke:var(--text);fill:none;
  stroke-width:2;stroke-linecap:round;stroke-linejoin:round;
}
.nav-drawer-links{
  display:flex;flex-direction:column;padding:12px 0;flex:1;
}
.nav-drawer-links a{
  padding:14px 22px;text-decoration:none;
  font-family:'Inter',sans-serif;font-size:16px;font-weight:500;color:var(--text);
  border-left:3px solid transparent;
  transition:background .15s,color .15s,border-color .15s;
}
.nav-drawer-links a:hover{
  background:var(--blue-light);color:var(--blue);border-left-color:var(--blue);
}
.nav-drawer-foot{
  padding:18px 22px;border-top:1px solid var(--border);
}
.nav-drawer-phone{
  display:inline-flex;align-items:center;gap:8px;
  font-family:'Poppins',sans-serif;font-size:15px;font-weight:600;
  color:var(--blue);text-decoration:none;
}
.nav-drawer-phone svg{
  width:16px;height:16px;stroke:currentColor;fill:none;
  stroke-width:2;stroke-linecap:round;stroke-linejoin:round;
}

/* Lock body scroll when drawer is open */
body.drawer-open{overflow:hidden}

/* ══ RESPONSIVE NAV ════════════════════════════════════════════════ */
@media(max-width:960px){
  .nav-links{display:none}
  .nav-burger{display:flex}
  /* Touch targets minimum 44px */
  .btn-primary,.btn-gold,.btn-cta-gold,.nav-cta,.nav-phone-ico{min-width:44px;min-height:44px}
  .nav-phone-text{display:none}
  .nav-phone-ico{width:34px;height:34px}
  .hero{min-height:auto;padding:104px 16px 40px}
  .steps-grid,.chiffres-grid{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr 1fr}
  .fg-row{grid-template-columns:1fr;gap:0}
}
@media(max-width:600px){
  .nav{padding:0 16px;gap:10px}
  .nav-cta{padding:8px 12px;font-size:12px}
  .hero{padding:80px 16px 40px}
  .hero-inner{min-height:0;gap:36px}
  .hero-h1{margin-bottom:8px;font-size:clamp(22px,7vw,32px)}
  .hero-h1 .h1-line{white-space:normal}
  .hero-h1 .h1-nowrap{white-space:nowrap;font-size:clamp(18px,5.8vw,32px)}
  .hero-sub{position:static;transform:none;left:auto;bottom:auto;font-size:14px;text-align:center;margin-bottom:12px}
  .form-card{margin-top:32px}
  .sec,.sec-blue{padding:40px 16px}
  .sec-sub{margin-bottom:32px}
  .steps-grid,.chiffres-grid{margin-bottom:28px}
  .faq-list{margin-bottom:28px}
  .footer-top{grid-template-columns:1fr 1fr}
  footer{padding:40px 16px 24px}
  .mobile-br{display:block}
  }
@media(max-width:400px){
  .nav-logo-text{font-size:15px}
  .nav-phone-ico{display:none}
  .nav-cta{padding:9px 16px}
  .footer-top{grid-template-columns:1fr}
}
/* ══ AUTOCOMPLETE VILLES ═════════════════════════════════════════════ */
.ac-wrap{position:relative}
.ac-list{
  position:absolute;z-index:9998;
  top:100%;left:0;right:0;
  background:white;border-radius:10px;
  box-shadow:0 8px 32px rgba(0,0,0,.16);
  overflow:hidden;
  max-height:220px;overflow-y:auto;
  display:none;
  margin-top:4px;
}
.ac-list::-webkit-scrollbar{width:4px}
.ac-list::-webkit-scrollbar-thumb{background:var(--border);border-radius:99px}
.ac-item{
  padding:10px 14px;font-size:14px;color:var(--text);
  cursor:pointer;display:flex;align-items:center;justify-content:space-between;
  gap:8px;transition:background .1s;border-bottom:1px solid #f1f5f9;
}
.ac-item:last-child{border-bottom:none}
.ac-item:hover,.ac-item.active{background:var(--blue-light)}
.ac-item:hover .ac-cp,.ac-item.active .ac-cp{color:var(--blue)}
.ac-name{font-weight:500;flex:1}
.ac-cp{font-size:12px;color:var(--text-secondary);flex-shrink:0}
.ac-loading{padding:10px 14px;font-size:13px;color:var(--text-secondary);text-align:center}
.ac-empty{padding:10px 14px;font-size:13px;color:var(--text-secondary);text-align:center;font-style:italic}
/* ══ COOKIE BANNER ══════════════════════════════════════════════════ */
.cookie-banner{
  position:fixed;bottom:16px;left:16px;right:16px;
  max-width:480px;margin:0 auto;
  z-index:10000;
  background:white;border-radius:12px;
  box-shadow:0 12px 48px rgba(0,0,0,.18);
  padding:20px 22px;
  font-family:'Inter',sans-serif;
  display:none;
  animation:cb-slide .35s ease both;
}
@keyframes cb-slide{from{transform:translateY(20px);opacity:0}to{transform:translateY(0);opacity:1}}
.cookie-banner.show{display:block}
.cookie-banner h3{font-family:'Poppins',sans-serif;font-size:15px;font-weight:700;color:var(--text);margin-bottom:8px}
.cookie-banner p{font-size:13px;color:var(--text-secondary);line-height:1.55;margin-bottom:14px}
.cookie-banner p a{color:var(--blue);text-decoration:underline}
.cookie-actions{display:flex;gap:8px;flex-wrap:wrap}
.cookie-btn{
  flex:1;min-width:120px;
  padding:10px 16px;border-radius:8px;border:none;cursor:pointer;
  font-family:'Poppins',sans-serif;font-size:13px;font-weight:600;
  transition:all .15s;
}
.cookie-btn-accept{background:var(--blue);color:white}
.cookie-btn-accept:hover{background:var(--blue-mid)}
.cookie-btn-refuse{background:#f1f5f9;color:var(--text)}
.cookie-btn-refuse:hover{background:#e2e8f0}
@media(max-width:600px){
  .cookie-banner{bottom:8px;left:8px;right:8px;padding:16px}
}
/* ══ PAGES VILLES ════════════════════════════════════════════════════ */
.city-content{max-width:860px;margin:0 auto;padding:64px 24px}
.city-content h2{font-family:'Poppins',sans-serif;font-size:clamp(20px,2.8vw,26px);font-weight:700;color:var(--text);margin:40px 0 16px}
.city-content h2:first-child{margin-top:0}
.city-content p{font-size:15.5px;color:var(--text-secondary);line-height:1.8;margin-bottom:16px}
.city-content p a{color:var(--blue);text-decoration:underline}
.city-content strong{color:var(--text);font-weight:600}

/* Tableau des prix */
.price-table-wrap{overflow-x:auto;margin:24px 0}
.price-table{width:100%;border-collapse:collapse;font-size:14px;background:white;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
.price-table th{background:var(--blue);color:white;font-family:'Poppins',sans-serif;font-weight:600;padding:12px 16px;text-align:left;font-size:13px}
.price-table td{padding:12px 16px;border-bottom:1px solid var(--border);color:var(--text-secondary)}
.price-table tr:last-child td{border-bottom:none}
.price-table tr:nth-child(even) td{background:#f8fafc}
.price-table td:first-child{font-weight:600;color:var(--text)}
.price-table td.price{color:var(--blue);font-weight:600}

/* Bloc villes proches */
.nearby-cities{margin:40px 0;padding:28px;background:var(--blue-light);border-radius:var(--radius)}
.nearby-cities h3{font-family:'Poppins',sans-serif;font-size:16px;font-weight:700;color:var(--text);margin-bottom:16px}
.nearby-grid{display:flex;gap:12px;flex-wrap:wrap}
.nearby-card{display:flex;align-items:center;gap:8px;padding:10px 16px;background:white;border-radius:8px;text-decoration:none;color:var(--text);font-size:14px;font-weight:500;border:1.5px solid var(--border);transition:all .2s}
.nearby-card:hover{border-color:var(--blue);color:var(--blue);transform:translateY(-1px);box-shadow:0 4px 12px rgba(37,99,235,.1)}
.nearby-card svg{width:14px;height:14px;stroke:var(--blue);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}

@media(max-width:600px){
  .city-content{padding:40px 16px}
  .nearby-cities{padding:20px 16px}
  .price-table th,.price-table td{padding:10px 12px;font-size:13px}
}

/* ══ SECTION VILLES HOMEPAGE ═════════════════════════════════════════ */
.sec-villes{padding:64px 24px;background:var(--blue-light)}
.sec-villes .sec-inner{max-width:860px;margin:0 auto}
.villes-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:32px}
.ville-card{background:white;border-radius:var(--radius);padding:16px 18px;text-decoration:none;display:flex;align-items:center;justify-content:space-between;border:1.5px solid var(--border);transition:all .2s;gap:8px}
.ville-card:hover{border-color:var(--blue);transform:translateY(-2px);box-shadow:0 6px 20px rgba(37,99,235,.1)}
.ville-card-name{font-family:'Poppins',sans-serif;font-size:14px;font-weight:600;color:var(--text);display:block}
.ville-card-cp{font-size:12px;color:var(--text-secondary);display:block;margin-top:2px}
.ville-card svg{width:16px;height:16px;stroke:var(--blue);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
@media(max-width:960px){.villes-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:600px){.villes-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:400px){.villes-grid{grid-template-columns:1fr}}

/* ══ PAGE NOS-VILLES ═════════════════════════════════════════════════ */
.nos-villes-hero{background:var(--blue-dark);padding:120px 24px 64px;text-align:center;color:white}
.nos-villes-hero h1{font-family:'Poppins',sans-serif;font-size:clamp(28px,4vw,44px);font-weight:800;margin-bottom:16px;line-height:1.2}
.nos-villes-hero h1 span{color:var(--gold)}
.nos-villes-hero p{font-size:18px;color:rgba(255,255,255,.85);max-width:560px;margin:0 auto}
.nos-villes-content{max-width:1100px;margin:0 auto;padding:64px 24px}
.nos-villes-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:40px}
.nos-villes-card{background:white;border-radius:var(--radius);padding:24px;border:1.5px solid var(--border);box-shadow:var(--shadow);text-decoration:none;transition:all .2s;display:block}
.nos-villes-card:hover{border-color:var(--blue);transform:translateY(-3px);box-shadow:var(--shadow-lg)}
.nos-villes-card-name{font-family:'Poppins',sans-serif;font-size:17px;font-weight:700;color:var(--text);margin-bottom:6px}
.nos-villes-card-cp{font-size:12px;color:var(--text-secondary);font-weight:500;margin-bottom:8px}
.nos-villes-card-desc{font-size:13.5px;color:var(--text-secondary);line-height:1.7}
.nos-villes-card-link{margin-top:14px;font-size:13px;color:var(--blue);font-weight:600;display:flex;align-items:center;gap:5px}
.nos-villes-card-link svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}
@media(max-width:960px){.nos-villes-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.nos-villes-grid{grid-template-columns:1fr}.nos-villes-content{padding:40px 16px}}

/* ══ PAGE 404 ════════════════════════════════════════════════════════ */
.page-404{min-height:100vh;display:flex;align-items:center;justify-content:center;background:var(--blue-light);padding:24px}
.page-404-inner{text-align:center;max-width:520px}
.page-404-num{font-family:'Poppins',sans-serif;font-size:120px;font-weight:800;color:var(--blue);line-height:1;margin-bottom:8px;opacity:.15}
.page-404-title{font-family:'Poppins',sans-serif;font-size:28px;font-weight:700;color:var(--text);margin-bottom:16px}
.page-404-sub{font-size:16px;color:var(--text-secondary);margin-bottom:32px;line-height:1.7}
.page-404-btn{display:inline-flex;align-items:center;gap:8px;background:var(--blue);color:white;font-family:'Poppins',sans-serif;font-weight:600;font-size:15px;padding:14px 28px;border-radius:10px;text-decoration:none;transition:all .2s}
.page-404-btn:hover{background:var(--blue-mid);transform:translateY(-2px);box-shadow:0 6px 24px rgba(37,99,235,.3)}

/* ══ SECTION CONSEILS DÉMÉNAGEMENT ══════════════════════════════════ */
.sec-conseils{padding:64px 24px;background:white}
.conseils-inner{max-width:1080px;margin:0 auto}
.sec-conseils .sec-title{margin-bottom:40px}
.conseils-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-bottom:24px}
.conseil-card{
  background:#f8fafc;border:1.5px solid var(--border);border-radius:var(--radius);
  padding:28px 24px;display:flex;flex-direction:column;gap:12px;
  transition:border-color .2s,box-shadow .2s,transform .2s;
}
.conseil-card:hover{border-color:var(--blue);box-shadow:0 6px 24px rgba(37,99,235,.09);transform:translateY(-2px)}
.conseil-stat{font-family:'Poppins',sans-serif;font-size:40px;font-weight:800;color:var(--blue);line-height:1}
.conseil-ico{
  width:40px;height:40px;background:var(--blue-light);border-radius:9px;
  display:flex;align-items:center;justify-content:center;
}
.conseil-ico svg{width:20px;height:20px;stroke:var(--blue);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.conseil-h{font-family:'Poppins',sans-serif;font-size:15px;font-weight:700;color:var(--text);margin:0}
.conseil-p{font-size:13.5px;color:var(--text-secondary);line-height:1.75;margin:0;flex:1}
.conseil-p strong{color:var(--text);font-weight:600}
.conseils-links{font-size:14px;color:var(--text-secondary);line-height:1.9;text-align:center;margin:0}
.conseils-links a{color:var(--blue);text-decoration:none;font-weight:500}
.conseils-links a:hover{text-decoration:underline}
@media(max-width:900px){.conseils-grid{grid-template-columns:1fr 1fr}}
@media(max-width:580px){.conseils-grid{grid-template-columns:1fr}.conseil-stat{font-size:32px}}

/* ══ CLASSES UTILITAIRES ═════════════════════════════════════════════ */
.sec-gold{color:var(--gold)}

/* ══ SCROLL REVEAL ═══════════════════════════════════════════════════ */
/* Progressive enhancement : visible par défaut, animation active seulement si JS tourne */
.reveal{transition:opacity .5s ease,transform .5s ease}
html.js-ready .reveal{opacity:0;transform:translateY(18px)}
html.js-ready .reveal.vis{opacity:1;transform:translateY(0)}
.d1{transition-delay:.1s}
.d2{transition-delay:.25s}
.d3{transition-delay:.4s}

/* ══ PROGRESS BAR FORMULAIRE ════════════════════════════════════════ */
.form-progress{height:3px;background:rgba(255,255,255,.15);border-radius:99px;margin:0 0 16px;overflow:hidden}
.form-progress-bar{height:100%;background:var(--gold);border-radius:99px;transition:width .4s ease}

/* ══ FAQ — paragraphes ═══════════════════════════════════════════════ */
.faq-a p{margin:0 0 10px}
.faq-a p:last-child{margin-bottom:0}

/* ══ VILLES GRID — villes principales ═══════════════════════════════ */
.ville-card.featured{border-color:rgba(37,99,235,.3);background:linear-gradient(135deg,#f0f7ff,#fff)}
.ville-card.featured .ville-card-name{color:var(--blue)}

/* ══ PAGE MERCI ══════════════════════════════════════════════════════ */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(28px)}
  to{opacity:1;transform:translateY(0)}
}
@keyframes popIn{
  from{opacity:0;transform:scale(.6)}
  to{opacity:1;transform:scale(1)}
}
.page-merci body{display:flex;flex-direction:column;min-height:100vh}
.page-merci main{
  flex:1;display:flex;align-items:center;justify-content:center;
  padding:112px 24px 72px;
  background:linear-gradient(160deg,#f8faff 0%,#eff6ff 60%,#fff 100%);
}
.merci-card{
  background:white;border-radius:20px;box-shadow:var(--shadow-lg);
  padding:56px 48px;max-width:600px;width:100%;text-align:center;
  animation:fadeUp .55s cubic-bezier(.22,.68,0,1.2) both;
}
.success-icon{
  width:80px;height:80px;border-radius:50%;background:var(--green-light);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 28px;
  animation:popIn .5s .2s cubic-bezier(.22,.68,0,1.4) both;
}
.success-icon svg{width:38px;height:38px;stroke:var(--green);fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}
.merci-title{
  font-family:'Poppins',sans-serif;font-size:clamp(22px,4vw,30px);font-weight:800;
  color:var(--text);line-height:1.2;margin-bottom:12px;
}
.merci-title span{color:var(--blue)}
.merci-sub{font-size:16px;color:var(--text-secondary);line-height:1.6;margin-bottom:24px}
.merci-sub strong{color:var(--text)}
.merci-badge-delay{
  display:inline-flex;align-items:center;gap:6px;
  background:#fefce8;border:1px solid #fde68a;
  border-radius:20px;padding:6px 14px;
  font-size:13px;font-weight:600;color:#92400e;
  margin-bottom:24px;
}
.merci-badge-delay::before{content:'⏱';font-size:14px}
.merci-divider{height:1px;background:var(--border);margin:0 0 32px}
.merci-steps{display:flex;flex-direction:column;gap:0;margin-bottom:36px;text-align:left}
.merci-step{
  display:flex;align-items:flex-start;gap:16px;
  padding:16px 0;border-bottom:1px solid var(--border);
  animation:fadeUp .4s both;
}
.merci-step:last-child{border-bottom:none}
.merci-step:nth-child(1){animation-delay:.3s}
.merci-step:nth-child(2){animation-delay:.42s}
.merci-step:nth-child(3){animation-delay:.54s}
.merci-step-num{
  width:36px;height:36px;border-radius:50%;background:var(--blue);color:white;
  display:flex;align-items:center;justify-content:center;
  font-family:'Poppins',sans-serif;font-size:14px;font-weight:700;
  flex-shrink:0;margin-top:2px;
}
.merci-step-body{flex:1}
.merci-step-title{font-family:'Poppins',sans-serif;font-size:15px;font-weight:700;color:var(--text);margin-bottom:3px}
.merci-step-desc{font-size:13px;color:var(--text-secondary);line-height:1.5}
.merci-cta-home{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  width:100%;height:48px;background:var(--blue);color:white;
  font-family:'Poppins',sans-serif;font-size:15px;font-weight:600;
  border-radius:10px;text-decoration:none;margin-bottom:16px;
  transition:background .2s,transform .15s;
}
.merci-cta-home:hover{background:var(--blue-mid);transform:translateY(-1px)}
.merci-cta-home svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.merci-back-link{
  display:inline-flex;align-items:center;gap:6px;
  color:var(--text-secondary);font-size:14px;text-decoration:none;transition:color .2s;
}
.merci-back-link:hover{color:var(--blue)}
.merci-back-link svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
@media(max-width:600px){.merci-card{padding:36px 24px}}
