/* =========================================================
   RitakTrade — style.css (Clean + Structured)
   Identité: Bleu nuit + Bordeaux
   - Nettoyé (doublons retirés)
   - Modal subscribe complet (input + select)
   - Nav mobile + burger X + scroll lock
   ========================================================= */

/* =========================
   VARIABLES + BASE
========================= */
:root{
  --text: #ffffff;
  --muted: rgba(255,255,255,.80);

  --primary: #0F1C2E;      /* Bleu nuit */
  --secondary: #1F2A3A;    /* Bleu/gris corporate */
  --dark: #0B1220;         /* Très sombre */
  --light: #F6F7FB;        /* Fond clair */

  --brand: #8B1E24;        /* Bordeaux */
  --brandHover: #2b0608;

  --navGlass: rgba(15, 28, 46, .72);
  --radius: 16px;
  --shadow: 0 18px 45px rgba(0,0,0,.35);
  --container: 1120px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:#fff;
  color:#101114;
  overflow-x:hidden;
}

.container{
  width: min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

/* =========================
   BUTTONS
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration:none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: var(--brand);
  color:#fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}
.btn--primary:hover{ background: var(--brandHover); }

.btn--secondary{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
  color:#fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.btn--secondary:hover{ background: rgba(255,255,255,.16); }

.btn--nav{
  height: 40px;
  padding: 0 14px;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.20);
  color:#fff;
}
.btn--nav:hover{ background: rgba(255,255,255,.18); }

/* =========================
   HERO
========================= */
.hero{
  position:relative;
  min-height:78vh;
  overflow:hidden;
  color:var(--text);
  background:var(--dark);
}

/* background image */
.hero__bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transform:scale(1.02);
  filter:saturate(1.05) contrast(1.05);
}

/* overlay */
.hero__overlay{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(48, 54, 61, 0.88), rgba(50, 55, 61, 0.55)),
    linear-gradient(to bottom, rgba(11,18,32,.20), rgba(0,0,0,.55));
}

/* =========================
   NAV
========================= */
.nav{
  position: relative;
  z-index: 3;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
}

/* brand */
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--text);
  font-weight:800;
}
.brand__logo{
  width:26px;
  height:26px;
  border-radius:8px;
  background: linear-gradient(135deg, var(--brand), rgba(255,255,255,.12));
  box-shadow:0 10px 25px rgba(0,0,0,.25);
}
.brand__name{
  font-size:22px;
  letter-spacing:.2px;
}

/* links desktop */
.nav__links{
  display:flex;
  align-items:center;
  gap:18px;
  padding:10px 12px;
  border-radius:999px;
  background: var(--navGlass);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
}

.nav__links a{
  color: rgba(255,255,255,.90);
  text-decoration:none;
  font-weight:700;
  font-size:13px;
  padding:10px 10px;
  border-radius:999px;
  transition: background .15s ease, color .15s ease;
}
.nav__links a:hover{
  background: rgba(255,255,255,.10);
  color:#fff;
}

/* burger */
.nav__toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  cursor:pointer;
  position:relative;
  z-index:4;
}

.nav__burger,
.nav__burger::before,
.nav__burger::after{
  content:"";
  position:absolute;
  left:50%;
  width:18px;
  height:2px;
  background:#fff;
  transform: translateX(-50%);
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}
.nav__burger{ top:50%; }
.nav__burger::before{ top:-6px; }
.nav__burger::after{ top:6px; }

/* Burger -> X */
.nav__toggle.is-open .nav__burger{ background: transparent; }
.nav__toggle.is-open .nav__burger::before{
  top:0; transform: translateX(-50%) rotate(45deg);
}
.nav__toggle.is-open .nav__burger::after{
  top:0; transform: translateX(-50%) rotate(-45deg);
}

/* block scroll when menu open */
body.nav-open{
  overflow:hidden;
  height:100vh;
  touch-action:none;
}

/* =========================
   HERO CONTENT
========================= */
.hero__content{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  min-height: calc(78vh - 84px);
  padding:44px 0 64px;
}

.hero__text{ width: min(720px, 100%); }

.hero__kicker{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
}
.tag--soft{
  background: rgba(139,30,36,.22);
  border-color: rgba(139,30,36,.35);
}

.hero__headline{
  margin:0 0 14px;
  line-height:1.05;
  font-size: clamp(34px, 4vw, 56px);
  font-weight:900;
  letter-spacing:-.3px;
}

.hero__headlineAccent{ color: rgba(255,255,255,.95); }

.hero__lead{
  margin:0 0 22px;
  color: var(--muted);
  line-height:1.6;
  font-size:16px;
  max-width:62ch;
}

.hero__cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:16px;
}

/* =========================
   SECTION 2 : Problèmes / Solution
========================= */
.ps{
  background: var(--light);
  border-top:1px solid rgba(0,0,0,.06);
}
.ps__container{ padding:22px 0; }

.ps__grid{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  box-shadow:0 18px 40px rgba(0,0,0,.06);
  display:grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items:stretch;
  overflow:hidden;
}

.ps__col{ padding:18px 22px; }
.ps__title{
  margin:0 0 14px;
  font-size:18px;
  font-weight:800;
  color:#1b1f2a;
}
.ps__brand{ color: var(--brand); }
.ps__divider{ background: rgba(0,0,0,.10); }

.ps__list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}

.ps__item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.06);
  background:#fbfbfe;
}

.ps__text{
  font-weight:700;
  font-size:14px;
  color:#2b3142;
}

.ps__icon{
  width:28px;
  height:28px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  line-height:1;
  flex:0 0 28px;
}

.ps__icon--bad{
  background: rgba(139,30,36,.12);
  color: var(--brand);
  border:1px solid rgba(139,30,36,.25);
}
.ps__icon--good{
  background: rgba(34,197,94,.14);
  color:#16a34a;
  border:1px solid rgba(34,197,94,.28);
}
.ps__highlight{ color: var(--brand); font-weight:900; }

/* =========================
   SECTION 3 : Comment ça marche ?
========================= */
.how{
  background: var(--primary);
  padding:56px 0 64px;
}
.how__wrap{ text-align:center; }

.how__title{
  margin:0 0 22px;
  color:#fff;
  font-size:22px;
  font-weight:900;
  letter-spacing:-.2px;
}

.how__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  align-items:stretch;
}

.how__card{
  border-radius:14px;
  overflow:hidden;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 40px rgba(0,0,0,.25);
  transition: transform .18s ease, border-color .18s ease;
}
.how__card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.18);
}

.how__media{
  height:180px;
  background: rgba(255,255,255,.05);
}
.how__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.how__footer{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
}

.how__step{
  width:30px;
  height:30px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color:#fff;
  background: var(--brand);
  border:1px solid rgba(255,255,255,.18);
  flex:0 0 30px;
}

.how__text{
  margin:0;
  color: rgba(255,255,255,.92);
  font-weight:800;
  font-size:14px;
  text-align:left;
}

/* =========================
   SECTION 4 : Nos Forfaits
========================= */
.pricing{
  background:#fff;
  padding:64px 0 74px;
  border-top:1px solid rgba(0,0,0,.06);
}
.pricing__wrap{ text-align:center; }

.pricing__titleWrap{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-bottom:18px;
}
.pricing__title{
  margin:0;
  font-size:22px;
  font-weight:900;
  color:#1b1f2a;
  white-space:nowrap;
}
.pricing__line{
  flex:1;
  height:1px;
  max-width:180px;
  background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,.25), rgba(0,0,0,0));
}

.pricing__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  align-items:stretch;
  margin-top:14px;
}

.plan{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  text-align:left;
}
.plan:hover{
  transform: translateY(-2px);
  border-color: rgba(0,0,0,.16);
  box-shadow:0 22px 55px rgba(0,0,0,.12);
}

.plan__head{
  padding:16px 18px;
  background:#f3f4f8;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.plan__head--featured{
  background: linear-gradient(135deg, rgba(139,30,36,.96), rgba(161,36,44,.96));
  color:#fff;
}
.plan__head--dark{
  background: var(--secondary);
  color:#fff;
}

.plan__name{ margin:0; font-size:18px; font-weight:900; }
.plan__body{ padding:18px; }

.plan__kpi{
  margin:0 0 10px;
  display:flex;
  align-items:baseline;
  gap:8px;
}
.plan__kpiValue{
  font-size:28px;
  font-weight:900;
  color:#1b1f2a;
}
.plan__kpiUnit{
  font-weight:800;
  color: rgba(27,31,42,.80);
}

.plan__price{
  margin:0 0 14px;
  display:flex;
  align-items:baseline;
  gap:6px;
}
.plan__amount{
  font-size:28px;
  font-weight:950;
  color: var(--brand);
  letter-spacing:-.3px;
}
.plan__currency{ font-weight:900; color: rgba(27,31,42,.82); }
.plan__per{ font-weight:800; color: rgba(27,31,42,.65); }

.plan__list{
  list-style:none;
  margin:0 0 16px;
  padding:0;
  display:grid;
  gap:10px;
  color: rgba(27,31,42,.86);
  font-weight:700;
  font-size:14px;
}

.plan__cta{ width:100%; }

.plan--featured{
  border-color: rgba(139,30,36,.30);
  box-shadow:0 22px 60px rgba(139,30,36,.14);
}
.plan__badge{
  position:absolute;
  top:12px;
  right:12px;
  background: rgba(255,255,255,.95);
  color: var(--brand);
  font-weight:900;
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(139,30,36,.22);
}

/* =========================
   SECTION 5 : Pourquoi nous
========================= */
.why{
  background: var(--light);
  padding:64px 0 74px;
  border-top:1px solid rgba(0,0,0,.06);
}

.why__titleWrap{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-bottom:22px;
}
.why__title{
  margin:0;
  font-size:22px;
  font-weight:950;
  color:#1b1f2a;
  white-space:nowrap;
}
.why__brand{ color: var(--brand); }
.why__line{
  flex:1;
  height:1px;
  max-width:220px;
  background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,.22), rgba(0,0,0,0));
}

.why__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}

.why__left{ display:grid; gap:12px; }

.whyCard{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px;
  border-radius:16px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 18px 40px rgba(0,0,0,.06);
}
.whyCard__icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(139,30,36,.10);
  border:1px solid rgba(139,30,36,.18);
  color: var(--brand);
  flex: 0 0 44px;
}
.whyCard__icon svg{ width:22px; height:22px; }

.whyCard__text h3{
  margin:0 0 4px;
  font-size:15px;
  font-weight:950;
  color:#1b1f2a;
}
.whyCard__text p{
  margin:0;
  font-size:13px;
  line-height:1.5;
  color: rgba(27,31,42,.80);
  font-weight:650;
}

.whyMini{
  padding:14px;
  border-radius:16px;
  background: rgba(26,31,44,.06);
  border:1px dashed rgba(0,0,0,.12);
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.whyMini__dot{
  width:10px; height:10px;
  border-radius:999px;
  margin-top:6px;
  background: var(--brand);
  flex:0 0 10px;
}
.whyMini p{
  margin:0;
  color: rgba(27,31,42,.85);
  font-weight:700;
  font-size:13px;
  line-height:1.55;
}

.whyPhoto{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  box-shadow:0 22px 55px rgba(0,0,0,.10);
}
.whyPhoto img{
  width:100%;
  height:250px;
  object-fit:cover;
  display:block;
}

.why__stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:12px;
}
.stat{
  border-radius:16px;
  padding:12px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 18px 40px rgba(0,0,0,.06);
  text-align:center;
}
.stat__num{ font-weight:950; font-size:16px; color:#1b1f2a; }
.stat__label{ margin-top:4px; font-size:12px; color: rgba(27,31,42,.75); font-weight:750; }

/* =========================
   MOBILITÉ (form + marketing)
========================= */
.mobility{
  /* ✅ fond différent (bleu clair premium) */
  background: linear-gradient(180deg, #EEF3FF 0%, #F7F9FF 100%);
  padding: 64px 0 72px;
  border-top: 1px solid rgba(0,0,0,.06);
}

.mobility__wrap{ display:grid; gap:18px; }

.mobility__titleWrap{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
}
.mobility__title{
  margin:0;
  font-size:22px;
  font-weight:950;
  color:#1b1f2a;
}
.mobility__line{
  flex:1;
  max-width:200px;
  height:1px;
  background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,.25), rgba(0,0,0,0));
}
.mobility__subtitle{
  text-align:center;
  margin:0 auto 6px;
  max-width:75ch;
  color: rgba(27,31,42,.82);
  font-weight:650;
  line-height:1.6;
}

.mobility__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:start;
}

.mobilityCard{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  padding:20px;
  box-shadow:0 22px 55px rgba(0,0,0,.08);
}
.mobilityCard__pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  font-weight:950;
  font-size:12px;
  color: var(--brand);
  background: rgba(139,30,36,.10);
  border:1px solid rgba(139,30,36,.18);
}
.mobilityCard__title{
  margin:12px 0 10px;
  font-size:18px;
  font-weight:950;
  color:#1b1f2a;
}
.mobilityCard__text{
  margin:0 0 14px;
  color: rgba(27,31,42,.78);
  line-height:1.65;
  font-size:14px;
}

.mobilityForm{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  box-shadow:0 22px 55px rgba(0,0,0,.10);
  overflow:hidden;
}
.mobilityForm__head{ padding:18px 18px 0; }
.mobilityForm__title{
  margin:0 0 6px;
  font-size:16px;
  font-weight:950;
  color:#1b1f2a;
}
.mobilityForm__text{
  margin:0 0 14px;
  color: rgba(27,31,42,.72);
  font-weight:650;
  line-height:1.6;
  font-size:13px;
}

.mForm{ padding:0 18px 18px; }

.mForm__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

.mForm__field{
  display:grid;
  gap:8px;
  margin-bottom:12px;
}

.mForm__label{
  font-weight:900;
  font-size:13px;
  color:#1b1f2a;
}

.mForm__input,
.mForm__textarea{
  width:100%;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.14);
  padding:12px;
  font: inherit;
  outline:none;
  transition: border-color .15s ease, box-shadow .15s ease;
  background:#fff;
}
.mForm__textarea{ resize: vertical; }

.mForm__input:focus,
.mForm__textarea:focus{
  border-color: rgba(139,30,36,.55);
  box-shadow: 0 0 0 4px rgba(139,30,36,.12);
}

.mForm__error{
  min-height:14px;
  color: var(--brand);
  font-weight:850;
  font-size:12px;
}

.mForm__btn{ width:100%; }

.mForm__success{
  margin-top:12px;
  background: rgba(34,197,94,.12);
  border:1px solid rgba(34,197,94,.28);
  padding:12px;
  border-radius:14px;
  color:#166534;
  font-weight:900;
  text-align:center;
}

/* Mobility list + note (restauré) */
.mobilityList{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.mobilityList li{
  font-size: 14px;
  font-weight: 800;
  color:#1b1f2a;
}

.mobilityNote{
  margin-top: 14px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(26,31,44,.06);
  border: 1px dashed rgba(0,0,0,.14);
  color: rgba(27,31,42,.85);
  font-weight: 700;
  line-height: 1.55;
  font-size: 13px;
}

.mobilityCard__text{ margin: 10px 0 14px; }

/* Image car (pro) */
.mobilityMedia{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
  margin-bottom: 14px;
}

.mobilityMedia img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}



/* safety patch (responsive) */
.mobility * { max-width: 100%; }

/* =========================
   CONTACT SECTION
========================= */
.contact{
  background: var(--secondary);
  padding:64px 0 54px;
  border-top:1px solid rgba(255,255,255,.08);
}
.contact__wrap{ display:grid; gap:18px; }

.contact__titleWrap{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
}
.contact__title{
  margin:0;
  font-size:22px;
  font-weight:950;
  color:#fff;
}
.contact__line{
  flex:1;
  max-width:200px;
  height:1px;
  background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,.25), rgba(255,255,255,0));
}
.contact__subtitle{
  text-align:center;
  max-width:70ch;
  margin:0 auto;
  color: rgba(255,255,255,.82);
  font-weight:600;
  line-height:1.6;
}

.contact__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
}

.contactCard,
.contactSocial{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:18px;
  box-shadow:0 22px 55px rgba(0,0,0,.28);
}

.contactCard__title{
  margin:0 0 8px;
  color:#fff;
  font-size:18px;
  font-weight:900;
}

.contactCard__text{
  margin:0 0 16px;
  color: rgba(255,255,255,.78);
  font-size:14px;
  line-height:1.6;
}

.contactCard__actions{
  display:grid;
  gap:10px;
  margin-bottom:16px;
}
.contactCard__btn{ width:100%; }

.contactCard__info{
  display:grid;
  gap:10px;
}

.infoRow{
  display:flex;
  gap:12px;
  align-items:flex-start;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  padding:12px;
  border-radius:14px;
}
.infoRow__icon{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background: rgba(139,30,36,.16);
  border:1px solid rgba(139,30,36,.22);
}
.infoRow__label{
  display:block;
  font-size:12px;
  color: rgba(255,255,255,.7);
  font-weight:700;
}
.infoRow__value{
  font-size:13px;
  color:#fff;
  font-weight:850;
}

.contactSocial__title{
  margin:0 0 8px;
  color:#fff;
  font-size:15px;
  font-weight:900;
}
.contactSocial__text{
  margin:0 0 14px;
  color: rgba(255,255,255,.78);
  font-size:13px;
  line-height:1.6;
}
.contactSocial__links{ display:grid; gap:10px; }

.socialLink{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  border-radius:16px;
  text-decoration:none;
  color:#fff;
  font-weight:900;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  transition: .15s ease;
}
.socialLink:hover{
  background: rgba(255,255,255,.10);
  transform: translateY(-1px);
}
.socialLink__icon{
  width:38px;
  height:38px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(139,30,36,.16);
  border:1px solid rgba(139,30,36,.22);
}
.socialLink svg{ width:20px; height:20px; color:#fff; }

.contact__copyright{
  display:block;
  width:100%;
  margin-top:18px;
  padding:14px 12px 0;
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
  font-size:12px;
  line-height:1.6;
  color: rgba(255,255,255,.75);
  font-weight:650;
  word-break: break-word;
  overflow-wrap:anywhere;
}

/* =========================
   SUBSCRIBE MODAL (Forfaits)
========================= */
.rt-modal{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
}
.rt-modal.is-open{ display:block; }

.rt-modal__overlay{
  position:absolute;
  inset:0;
  background: rgba(4, 12, 28, 0.72);
  backdrop-filter: blur(6px);
}

.rt-modal__dialog{
  position:relative;
  width: min(620px, calc(100% - 32px));
  margin: 6vh auto;
  background: rgba(10, 22, 48, 0.92);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:16px;
  padding:22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  color:#fff;
}

.rt-modal__close{
  position:absolute;
  top:10px;
  right:10px;
  width:38px;
  height:38px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color:#fff;
  font-size:22px;
  cursor:pointer;
}

.rt-modal__title{
  margin:0 0 6px;
  font-size:1.25rem;
  letter-spacing:.2px;
}
.rt-modal__subtitle{
  margin:0 0 18px;
  color: rgba(255,255,255,0.75);
  font-size:.95rem;
}

.rt-form__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

.rt-field label{
  display:block;
  font-size:.85rem;
  color: rgba(255,255,255,0.80);
  margin:0 0 6px;
}

.rt-field input,
.rt-field textarea,
.rt-field select{
  width:100%;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color:#fff;
  padding:12px;
  outline:none;
}

.rt-field select option{ color:#101114; } /* lisible dans dropdown */

.rt-field input:focus,
.rt-field textarea:focus,
.rt-field select:focus{
  border-color: rgba(152, 22, 47, 0.65);
  box-shadow: 0 0 0 4px rgba(152, 22, 47, 0.18);
}

.rt-form__footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:14px;
  flex-wrap:wrap;
}

.rt-form__plan{
  display:flex;
  align-items:center;
  gap:8px;
  color: rgba(255,255,255,0.85);
}

.rt-badge{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  font-size:.8rem;
}

.rt-form__status{
  margin:12px 0 0;
  font-size:.9rem;
  color: rgba(255,255,255,0.80);
}

/* =========================
   ACCESSIBILITY
========================= */
a:focus-visible, button:focus-visible{
  outline: 3px solid rgba(139,30,36,.45);
  outline-offset: 2px;
  border-radius: 12px;
}

/* =========================
   KEYFRAMES
========================= */
@keyframes heroFadeUp{
  from{ opacity:0; transform: translateY(8px); }
  to{ opacity:1; transform: translateY(0); }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px){
  .nav__toggle{ display:inline-flex; }

  .nav__links{
    position:absolute;
    right:0;
    top:70px;
    width: min(360px, 92vw);
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding:14px;
    border-radius:16px;
    background: rgba(15, 28, 46, .95);
    border:1px solid rgba(255,255,255,.14);
    box-shadow: var(--shadow);

    opacity:0;
    transform: translateY(-10px);
    pointer-events:none;
    transition: opacity .15s ease, transform .15s ease;
    backdrop-filter: blur(10px);
  }

  .nav__links a{
    padding:12px;
    background: rgba(255,255,255,.06);
    border-radius:12px;
  }

  .nav__links.is-open{
    opacity:1;
    transform: translateY(0);
    pointer-events:auto;
  }

  .btn--nav{ width:100%; border-radius:12px; height:44px; }

  .ps__grid{ grid-template-columns:1fr; }
  .ps__divider{ width:100%; height:1px; }
  .ps__col{ padding:16px; }

  .how__grid{ grid-template-columns:1fr; }
  .how__media{ height:210px; }

  .pricing__grid{ grid-template-columns:1fr; }

  .why__grid{ grid-template-columns:1fr; }
  .whyPhoto img{ height:220px; }
  .why__line{ max-width:120px; }

  .mobility__grid{ grid-template-columns:1fr; }
  .mobility__line{ max-width:120px; }

  .contact__grid{ grid-template-columns:1fr; }
  .contact__line{ max-width:120px; }
}

@media (max-width: 560px){
  .rt-form__grid{ grid-template-columns:1fr; }
}

@media (max-width: 520px){
  .container{ width: calc(100% - 24px); }

  .hero{ min-height:72vh; }
  .hero__content{ padding:34px 0 44px; }

  .hero__text{
    text-align:center;
    margin-inline:auto;
  }

  .hero__kicker{ justify-content:center; margin-bottom:10px; }

  .hero__headline{
    font-size:34px;
    line-height:1.08;
    max-width:22ch;
    margin-inline:auto;
  }

  .hero__lead{
    font-size:15px;
    line-height:1.65;
    margin-bottom:18px;
    max-width:34ch;
    margin-inline:auto;
    text-align:center;
  }

  .hero__cta{
    gap:10px;
    justify-content:center;
  }
  .hero__cta .btn{
    width:100%;
    height:48px;
    border-radius:14px;
    font-size:14px;
  }

  /* animations hero */
  .hero__kicker,
  .hero__headline,
  .hero__lead,
  .hero__cta{
    animation: heroFadeUp .55s ease-out both;
  }
  .hero__headline{ animation-delay:.05s; }
  .hero__lead{ animation-delay:.12s; }
  .hero__cta{ animation-delay:.18s; }

  .ps__container{ padding:14px 0; }
  .ps__title{ font-size:16px; }
  .ps__text{ font-size:13px; }

  .how{ padding:48px 0 54px; }
  .how__title{ font-size:20px; }
  .how__media{ height:200px; }
  .how__text{ font-size:13px; }

  .pricing{ padding:54px 0 62px; }
  .pricing__title{ font-size:20px; }
  .plan__body{ padding:16px; }
  .plan__amount{ font-size:26px; }
  .plan__kpiValue{ font-size:26px; }
  .plan__list{ gap:9px; }

  .why{ padding:54px 0 62px; }
  .why__title{ font-size:20px; }
  .whyCard{ padding:12px; border-radius:16px; }
  .whyCard__text h3{ font-size:14px; }
  .whyCard__text p{ font-size:13px; }
  .whyPhoto img{ height:210px; }
  .why__stats{ grid-template-columns:1fr; }

  .mForm__row{ grid-template-columns:1fr; }
  .mForm__input, .mForm__textarea{ font-size:16px; } /* évite zoom iOS */

  .contact{ padding:56px 0 70px; }
  .contact__title{ font-size:20px; }
  .contact__subtitle{ font-size:14px; }
  .contactCard, .contactSocial{ padding:16px; }
  .socialLink{ padding:12px; }

  .contact__copyright{
    padding-top:16px;
    margin-top:16px;
    font-size:12px;
  }
}

/* =========================
   REDUCED MOTION (single block)
========================= */
@media (prefers-reduced-motion: reduce){
  *{
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 520px){
  .mobilityMedia img{ height: 190px; }
}


/* ===== SUBSCRIBE MODAL — HARD FIX ===== */
.rt-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  display: none;
}

.rt-modal.is-open {
  display: block;
}

/* ===== MODAL SCROLL FIX ===== */
.rt-modal{
  overflow-y: auto; /* permet le scroll sur mobile */
}

.rt-modal__dialog{
  max-height: calc(100vh - 80px); /* laisse de l’air en haut/bas */
  overflow-y: auto;              /* scroll INTERNE du formulaire */
}

.rt-modal__dialog{
  padding-bottom: 28px;
}

/* ===== Subscribe status (UX) ===== */
.rt-form__status{
  margin: 12px 0 0;
  font-size: .95rem;
  font-weight: 700;
  color: rgba(255,255,255,.82);
}

.rt-form__status.is-success{
  color: #b8ffd2;
}

.rt-form__status.is-error{
  color: #ffb4b4;
}




