@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --black:#1a1b1f;
  --asphalt:#f0ede4;
  --red:#D0021B;
  --red-dark:#9c0115;
  --gold:#F2A900;
  --off-white:#FCFAF5;
  --steel:#77797f;
  --line:#e3ded0;
  --whatsapp:#25D366;
  --whatsapp-dark:#1aa851;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter', sans-serif;
  background:var(--off-white);
  color:var(--black);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4, .eyebrow, nav a, .btn, .stat-num{
  font-family:'Oswald', sans-serif;
  text-transform:uppercase;
  letter-spacing:0.02em;
}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
ul{list-style:none;}
.wrap{max-width:1180px; margin:0 auto; padding:0 24px;}

/* ===== Header ===== */
.promo-bar{
  background:var(--black); color:var(--off-white); position:relative; z-index:60;
  text-align:center; font-family:'Oswald',sans-serif;
  font-size:13px; letter-spacing:0.06em; padding:10px 16px;
}
.promo-bar b{color:var(--gold);}

header{
  background:#ffffff;
  position:sticky; top:0; z-index:50;
  border-bottom:1px solid var(--line);
  box-shadow:0 2px 12px rgba(17,17,21,0.04);
}
header .wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:10px; padding-bottom:10px; gap:20px;
}
.logo-mark{display:flex; align-items:center; gap:12px;}
.logo-mark img{height:46px; width:auto;}
nav{display:flex; align-items:center; gap:24px;}
nav a{
  color:var(--black); font-size:14px; font-weight:500;
  padding:6px 2px; border-bottom:2px solid transparent;
  transition:border-color .15s, color .15s;
}
nav a.active, nav a:hover{border-color:var(--red); color:var(--red);}
.header-ctas{display:flex; align-items:center; gap:12px;}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-size:14px; font-weight:600;
  padding:12px 24px; border-radius:3px; cursor:pointer;
  border:2px solid transparent; transition:transform .12s, box-shadow .12s;
}
.btn:hover{transform:translateY(-1px);}
.btn-primary{background:var(--red); color:#ffffff; box-shadow:0 3px 0 var(--red-dark);}
.btn-primary:hover{box-shadow:0 5px 0 var(--red-dark);}
.btn-ghost{border-color:var(--black); color:var(--black); background:transparent;}
.btn-ghost:hover{border-color:var(--red); color:var(--red);}
.btn-gold{background:var(--gold); color:var(--black); box-shadow:0 3px 0 #b98300;}
.btn-gold:hover{box-shadow:0 5px 0 #b98300;}
.btn-whatsapp{background:var(--whatsapp); color:#fff; box-shadow:0 3px 0 var(--whatsapp-dark);}
.btn-whatsapp:hover{box-shadow:0 5px 0 var(--whatsapp-dark);}
.btn-sm{padding:9px 16px; font-size:13px;}
.btn-block{width:100%;}

/* ===== Floating WhatsApp bubble ===== */
.wa-float{
  position:fixed; bottom:24px; right:24px; z-index:80;
  width:58px; height:58px; border-radius:50%;
  background:var(--whatsapp); display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 24px rgba(37,211,102,0.4);
  transition:transform .15s;
}
.wa-float:hover{transform:scale(1.08);}
.wa-float svg{width:28px; height:28px;}

/* ===== Hero ===== */
.hero{
  position:relative;
  background:var(--asphalt);
  color:var(--black);
  overflow:hidden;
  padding:80px 0 64px;
}
.hero .wrap{position:relative; z-index:2; display:grid; grid-template-columns:1.15fr 0.85fr; gap:48px; align-items:center;}
.eyebrow{
  color:var(--red-dark); font-size:14px; font-weight:600; margin-bottom:18px;
  display:flex; align-items:center; gap:10px;
}
.eyebrow .dot{width:8px;height:8px;background:var(--red);border-radius:50%; display:inline-block;}
.hero h1{
  font-size:52px; line-height:1.03; font-weight:700; margin-bottom:22px; color:var(--black);
}
.hero h1 .accent{color:var(--red);}
.hero p.lede{
  font-family:'Inter',sans-serif; text-transform:none; letter-spacing:normal;
  font-size:17px; color:#4d4f56; max-width:520px; margin-bottom:30px;
}
.hero-ctas{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:36px;}
.hero-stats{display:flex; gap:32px; border-top:1px solid var(--line); padding-top:24px; flex-wrap:wrap;}
.hero-stats div{display:flex; flex-direction:column; gap:4px;}
.stat-num{font-size:28px; color:var(--red); font-weight:600;}
.stat-label{font-family:'Inter',sans-serif; text-transform:none; letter-spacing:normal; font-size:13px; color:var(--steel);}

.hero-visual{
  position:relative; background:#ffffff; border:1px solid var(--line); border-radius:8px;
  padding:30px; min-height:340px; display:flex; flex-direction:column; justify-content:space-between;
  box-shadow:0 18px 40px rgba(17,17,21,0.06);
}
.plate{
  background:#ffffff; color:var(--black); border-radius:4px; padding:10px 18px;
  font-family:'Oswald',sans-serif; font-weight:700; font-size:20px; letter-spacing:0.08em;
  display:inline-flex; align-items:center; gap:10px; width:fit-content;
  border:3px solid var(--black);
}
.plate::before{content:"F"; background:#0052b4; color:#fff; font-size:12px; padding:2px 6px; border-radius:2px;}
.hero-visual .caption{font-family:'Inter'; text-transform:none; letter-spacing:normal; color:var(--steel); font-size:13px; margin-top:8px;}
.checker-strip{
  display:flex; height:14px; border-radius:3px; overflow:hidden; margin:20px 0;
  border:1px solid var(--line);
}
.checker-strip span{flex:1; background:#ffffff;}
.checker-strip span:nth-child(even){background:var(--black);}
.hero-visual .quote{
  font-family:'Inter'; text-transform:none; letter-spacing:normal;
  font-size:15px; color:#3a3b41; border-left:3px solid var(--red); padding-left:16px;
}
.hero-illus{width:100%; height:auto;}

/* ===== Bandeau villes ===== */
.band{
  background:var(--red); color:#ffffff;
  padding:14px 0; overflow:hidden; white-space:nowrap;
  font-family:'Oswald'; font-size:14px; letter-spacing:0.08em; font-weight:600;
}
.band .track{display:inline-block; animation:scroll 28s linear infinite;}
.band span{margin:0 22px;}
@keyframes scroll{from{transform:translateX(0);} to{transform:translateX(-50%);}}

/* ===== Section generic ===== */
section{padding:80px 0;}
.section-head{max-width:640px; margin-bottom:48px;}
.section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
.section-head .eyebrow{color:var(--red); font-size:13px; font-weight:600; margin-bottom:12px;}
.section-head.center .eyebrow{justify-content:center;}
.section-head h2{font-size:36px; font-weight:700; line-height:1.08;}
.section-head p{
  font-family:'Inter'; text-transform:none; letter-spacing:normal;
  color:var(--steel); font-size:16px; margin-top:14px;
}

/* ===== Parcours / timeline ===== */
.track-section{background:#ffffff; color:var(--black);}
.track-section .section-head h2{color:var(--black);}
.track-section .eyebrow{color:var(--red-dark);}
.track{position:relative; display:grid; grid-template-columns:repeat(4,1fr); gap:0; margin-top:16px;}
.track::before{
  content:""; position:absolute; top:26px; left:0; right:0; height:4px;
  background:repeating-linear-gradient(90deg, var(--gold) 0 24px, transparent 24px 40px);
}
.checkpoint{position:relative; padding:0 18px 0 0;}
.checkpoint .cp-num{
  width:54px; height:54px; border-radius:50%; background:var(--asphalt); border:3px solid var(--red);
  display:flex; align-items:center; justify-content:center; font-family:'Oswald'; font-weight:700; font-size:20px;
  color:var(--red); position:relative; z-index:2; margin-bottom:22px;
}
.checkpoint h4{font-size:18px; margin-bottom:10px; letter-spacing:0.01em; color:var(--black);}
.checkpoint p{font-family:'Inter'; text-transform:none; letter-spacing:normal; font-size:14px; color:var(--steel);}

/* ===== Tabs (tarifs) ===== */
.tabs{display:flex; gap:8px; border-bottom:1px solid var(--line); margin-bottom:44px; flex-wrap:wrap;}
.tab-btn{
  background:none; border:none; cursor:pointer; font-family:'Oswald'; text-transform:uppercase;
  letter-spacing:0.03em; font-size:15px; font-weight:600; color:var(--steel);
  padding:14px 6px; margin-right:26px; border-bottom:3px solid transparent; transition:color .15s, border-color .15s;
}
.tab-btn.active, .tab-btn:hover{color:var(--red); border-color:var(--red);}
.tab-panel{display:none;}
.tab-panel.active{display:block;}

/* ===== Pricing ===== */
.pricing-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
.pricing-grid.cols-2{grid-template-columns:repeat(2,1fr);}
.price-card{
  background:#fff; border:1px solid var(--line); border-radius:8px; padding:28px 24px;
  position:relative; transition:transform .15s, box-shadow .15s; display:flex; flex-direction:column;
}
.price-card:hover{transform:translateY(-4px); box-shadow:0 14px 30px rgba(17,17,21,0.08);}
.price-card.highlight{border:2px solid var(--red); box-shadow:0 14px 30px rgba(208,2,27,0.12);}
.price-card .tag{
  position:absolute; top:-13px; right:22px; background:var(--gold); color:var(--black);
  font-family:'Oswald'; font-size:11px; font-weight:700; padding:5px 12px; border-radius:3px;
}
.price-card h3{font-size:19px; margin-bottom:4px;}
.price-card .subtitle{
  font-family:'Inter'; text-transform:none; letter-spacing:normal; font-size:13px; color:var(--steel); margin-bottom:14px;
}
.price-box{background:var(--asphalt); border-radius:6px; padding:16px 18px; display:flex; align-items:baseline; justify-content:space-between; gap:10px; margin-bottom:20px;}
.price-box .price{font-family:'Oswald'; font-size:34px; font-weight:700; color:var(--red);}
.price-box .old-price{font-family:'Inter'; text-transform:none; letter-spacing:normal; font-size:14px; color:var(--steel); text-decoration:line-through;}
.price-card ul{margin:0 0 24px; display:flex; flex-direction:column; gap:10px;}
.price-card li{
  font-family:'Inter'; text-transform:none; letter-spacing:normal; font-size:14px;
  display:flex; gap:9px; align-items:flex-start; color:#3a3b41;
}
.price-card li::before{content:"✓"; color:var(--red); font-weight:700; flex-shrink:0;}
.price-card .card-ctas{margin-top:auto; display:flex; flex-direction:column; gap:8px;}
.fine-print{
  font-family:'Inter'; text-transform:none; letter-spacing:normal; font-size:13px; color:var(--steel);
  margin-top:26px;
}

/* ===== Zone ===== */
.zone{background:var(--asphalt); color:var(--black);}
.zone .wrap{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;}
.zone .section-head h2{color:var(--black);}
.zone-list{display:grid; grid-template-columns:1fr 1fr; gap:12px 24px;}
.zone-list li{
  font-family:'Inter'; text-transform:none; letter-spacing:normal; font-size:15px;
  padding:10px 0; border-bottom:1px solid var(--line); color:#3a3b41;
  display:flex; align-items:center; gap:10px;
}
.zone-list li::before{content:"📍"; font-size:13px;}
.zone-map-box{
  background:#ffffff; border:1px solid var(--line); border-radius:8px; padding:32px;
  text-align:center; box-shadow:0 14px 30px rgba(17,17,21,0.06);
}
.zone-map-box .big{font-family:'Oswald'; font-size:44px; color:var(--red); font-weight:700;}
.zone-map-box .lab{font-family:'Inter'; text-transform:none; letter-spacing:normal; color:var(--steel); font-size:14px; margin-top:6px;}

/* ===== FAQ ===== */
.faq-list{max-width:760px;}
.faq-item{border-bottom:1px solid var(--line);}
.faq-item summary{
  cursor:pointer; list-style:none; padding:20px 4px; display:flex; justify-content:space-between; align-items:center;
  font-family:'Oswald'; font-size:16px; font-weight:500; letter-spacing:0.01em;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{content:"+"; font-size:22px; color:var(--red); font-weight:700; transition:transform .15s;}
.faq-item[open] summary::after{transform:rotate(45deg);}
.faq-item p{
  font-family:'Inter'; text-transform:none; letter-spacing:normal; font-size:15px; color:#3a3b41;
  padding:0 4px 20px; max-width:640px;
}

/* ===== CTA final ===== */
.cta-final{
  background:linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%);
  color:#ffffff; text-align:center;
}
.cta-final h2{font-size:34px; margin-bottom:14px;}
.cta-final p{
  font-family:'Inter'; text-transform:none; letter-spacing:normal; font-size:16px;
  color:#ffe1e5; max-width:520px; margin:0 auto 30px;
}
.cta-final .cta-btns{display:flex; gap:14px; justify-content:center; flex-wrap:wrap;}

/* ===== Formulaire inscription ===== */
.form-page{background:var(--asphalt); padding:60px 0 90px;}
.form-shell{
  display:grid; grid-template-columns:1fr 1.3fr; gap:0; max-width:980px; margin:0 auto;
  background:#fff; border-radius:12px; overflow:hidden; box-shadow:0 20px 50px rgba(17,17,21,0.1);
}
.form-side{
  background:var(--black); color:#fff; padding:44px 38px; display:flex; flex-direction:column; justify-content:space-between;
}
.form-side h3{font-size:24px; margin-bottom:14px; line-height:1.15;}
.form-side p{font-family:'Inter'; text-transform:none; letter-spacing:normal; font-size:14px; color:#c7c8cf; margin-bottom:26px;}
.form-side ul{display:flex; flex-direction:column; gap:14px; margin-bottom:30px;}
.form-side li{
  font-family:'Inter'; text-transform:none; letter-spacing:normal; font-size:14px; color:#e7e7ea;
  display:flex; gap:10px; align-items:flex-start;
}
.form-side li::before{content:"✓"; color:var(--gold); font-weight:700;}
.form-main{padding:44px 38px;}
.field{margin-bottom:18px;}
.field label{display:block; font-size:13px; font-weight:600; margin-bottom:7px; color:var(--black); font-family:'Inter';}
.field input, .field select, .field textarea{
  width:100%; padding:12px 14px; border:1px solid var(--line); border-radius:6px;
  font-family:'Inter'; font-size:14px; background:#fdfcf9; color:var(--black);
}
.field input:focus, .field select:focus, .field textarea:focus{outline:2px solid var(--red); outline-offset:1px;}
.field-row{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
.form-note{font-family:'Inter'; font-size:12px; color:var(--steel); margin-top:14px; text-align:center;}
.divider-or{
  display:flex; align-items:center; gap:14px; margin:26px 0; font-family:'Oswald'; font-size:12px; letter-spacing:0.08em; color:var(--steel);
}
.divider-or::before, .divider-or::after{content:""; flex:1; height:1px; background:var(--line);}

/* ===== Merci page ===== */
.thanks{min-height:60vh; display:flex; align-items:center; justify-content:center; text-align:center; padding:80px 20px;}
.thanks-card{max-width:520px;}
.thanks-icon{
  width:74px; height:74px; border-radius:50%; background:var(--red); color:#fff; display:flex; align-items:center; justify-content:center;
  font-size:32px; margin:0 auto 24px;
}
.thanks h1{font-size:32px; margin-bottom:14px;}
.thanks p{font-family:'Inter'; text-transform:none; letter-spacing:normal; color:var(--steel); font-size:15px; margin-bottom:30px;}

/* ===== Footer ===== */
footer{background:#ffffff; color:var(--steel); padding:52px 0 26px; font-size:14px; border-top:1px solid var(--line);}
.foot-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:32px; margin-bottom:36px;}
.foot-grid img{height:38px; margin-bottom:14px;}
.foot-grid p{font-size:13px; line-height:1.6; max-width:260px;}
.foot-grid h5{font-family:'Oswald'; color:var(--black); font-size:14px; margin-bottom:16px; letter-spacing:0.05em;}
.foot-grid li{margin-bottom:10px;}
.foot-grid a{color:var(--steel);}
.foot-grid a:hover{color:var(--red);}
.foot-bottom{
  border-top:1px solid var(--line); padding-top:20px; display:flex; justify-content:space-between;
  flex-wrap:wrap; gap:12px; font-size:13px;
}

/* ===== Responsive ===== */
@media(max-width:900px){
  .hero .wrap{grid-template-columns:1fr;}
  .hero h1{font-size:36px;}
  .pricing-grid, .pricing-grid.cols-2{grid-template-columns:1fr;}
  .track{grid-template-columns:1fr 1fr; gap:26px;}
  .track::before{display:none;}
  .zone .wrap{grid-template-columns:1fr;}
  .foot-grid{grid-template-columns:1fr 1fr;}
  nav{display:none;}
  header .wrap{justify-content:space-between;}
  .form-shell{grid-template-columns:1fr;}
  .field-row{grid-template-columns:1fr;}
}