/* ============================================================
   OHLALA LOCKERS — Design System v4
   Colors : #0A1A3A (navy) | #EEB541 (gold)
   Fonts  : Montserrat (titres) | Open Sans (corps)
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --navy:       #0A1A3A;
  --navy-mid:   #112247;
  --navy-light: #1a3160;
  --gold:       #EEB541;
  --gold-dark:  #c9921e;
  --gold-light: #f5c86a;
  --gold-pale:  #fdf3dc;
  --white:      #FFFFFF;
  --off-white:  #F7F5F0;
  --gray-100:   #F2F2F0;
  --gray-200:   #E0DED8;
  --gray-400:   #9A9890;
  --gray-600:   #5A5850;
  --text:       #1A1A18;
  --text-mid:   #3A3830;

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

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 24px rgba(0,0,0,.14);
  --shadow-lg:  0 20px 48px rgba(0,0,0,.22);
  --shadow-gold:0 8px 32px rgba(238,181,65,.28);

  --header-h:   72px;
  --container:  1160px;
  --container-narrow: 800px;
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

/* ── CONTAINER ──────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

/* ── LANGUE BAR ─────────────────────────────────────────────── */
.lang-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(238,181,65,.12);
  position: sticky; top: 0; z-index: 200;
}
.lang-bar__inner {
  display: flex; justify-content: flex-end; gap: 0;
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
.lang-bar__item {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.45); transition: color var(--transition);
  border-bottom: 2px solid transparent;
}
.lang-bar__item:hover { color: var(--gold); }
.lang-bar__item--active { color: var(--gold); border-bottom-color: var(--gold); }

/* ── HEADER ─────────────────────────────────────────────────── */
.header {
  background: var(--navy);
  border-bottom: 1px solid rgba(238,181,65,.1);
  position: sticky; top: 36px; z-index: 300;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.header__inner {
  display: flex; align-items: center; gap: 12px;
  max-width: var(--container); margin: 0 auto;
  padding: 0 16px; height: 64px;
}
.header__logo { display: flex; align-items: center; flex-shrink: 0; }
.header__logo-img {
  height: 40px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.header__nav { display: none; align-items: center; gap: 4px; margin-left: auto; }
.header__nav-link {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.65);
  transition: color var(--transition), background var(--transition);
  font-family: var(--font-title);
}
.header__nav-link:hover { color: var(--white); background: rgba(255,255,255,.06); }
.header__nav-link.active { color: var(--gold); }

/* Dropdown destinations */
.nav-dropdown { position: relative; }
.nav-dropdown__toggle {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; font-family: var(--font-title);
  color: rgba(255,255,255,.65); cursor: pointer;
  transition: color var(--transition), background var(--transition);
}
.nav-dropdown__toggle:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav-dropdown__toggle svg { transition: transform .2s; }
.nav-dropdown:hover .nav-dropdown__toggle svg { transform: rotate(180deg); }
.nav-dropdown__menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--navy-mid); border: 1px solid rgba(238,181,65,.15);
  border-radius: var(--radius-md); min-width: 220px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .2s;
  z-index: 99;
}
.nav-dropdown:hover .nav-dropdown__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown__item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; font-size: 13px; color: rgba(255,255,255,.7);
  transition: all .15s; border-radius: 0;
}
.nav-dropdown__item:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0; }
.nav-dropdown__item:last-child  { border-radius: 0 0 var(--radius-md) var(--radius-md); }
.nav-dropdown__item:hover { background: rgba(238,181,65,.08); color: var(--gold); }
.nav-dropdown__item .icon { font-size: 14px; }

.header__cta {
  display: none; flex-shrink: 0; margin-left: 12px;
}

/* Burger */
.header__burger {
  display: flex; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; padding: 6px;
  border-radius: var(--radius-sm); justify-content: center; align-items: center;
}
.header__burger-line {
  width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all .2s;
}

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--navy-mid);
  border-top: 1px solid rgba(238,181,65,.08);
  padding: 16px 24px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu__link {
  display: block; padding: 12px 0;
  font-size: 15px; font-weight: 600; font-family: var(--font-title);
  color: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.mobile-menu__link:hover { color: var(--gold); }
.mobile-menu__sub {
  display: block; padding: 10px 0 10px 16px;
  font-size: 14px; color: rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.mobile-menu__sub:hover { color: var(--gold-light); }
.mobile-menu__cta { margin-top: 16px; text-align: center; }

/* ── BOUTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px;
  font-size: 14px; font-weight: 700; font-family: var(--font-title);
  letter-spacing: .2px; transition: all var(--transition);
  white-space: nowrap; cursor: pointer; border: 2px solid transparent;
}
.btn--gold {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.btn--outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn--outline-navy {
  background: transparent; color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover { background: var(--navy); color: var(--white); }
.btn--lg { padding: 15px 32px; font-size: 15px; }
.btn--sm { padding: 8px 18px; font-size: 13px; }
.btn--full { width: 100%; }

/* ── SECTIONS ───────────────────────────────────────────────── */
.section { padding: 52px 0; }
.section--dark  { background: var(--navy); }
.section--mid   { background: var(--navy-mid); }
.section--light { background: var(--off-white); }
.section--white { background: var(--white); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 16px;
}
.section-title.dark  { color: var(--white); }
.section-title.light { color: var(--navy); }
.section-subtitle {
  font-size: 17px; line-height: 1.7;
  max-width: 600px; margin: 0 auto;
}
.section-subtitle.dark  { color: rgba(255,255,255,.6); }
.section-subtitle.light { color: var(--gray-600); }
.section-divider {
  width: 48px; height: 3px;
  background: var(--gold); border-radius: 2px;
  margin: 16px auto 0;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  padding: 72px 0 60px;
  overflow: hidden;
  min-height: auto;
  display: flex; align-items: center;
}
.hero__bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero__bg-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 65% 40%, rgba(238,181,65,.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(17,34,71,.9) 0%, transparent 60%);
}
.hero__inner { position: relative; z-index: 1; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(238,181,65,.1);
  border: 1px solid rgba(238,181,65,.25);
  border-radius: 30px; padding: 8px 20px;
  font-size: 13px; font-weight: 600; font-family: var(--font-title);
  color: var(--gold); margin-bottom: 28px;
}
.hero__badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}
.hero__title {
  font-family: var(--font-title);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800; line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px; letter-spacing: -.5px;
}
.hero__title span { color: var(--gold); }
.hero__subtitle {
  font-size: 18px; line-height: 1.7;
  color: rgba(255,255,255,.65);
  max-width: 540px; margin-bottom: 36px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero__trust {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 13px; font-weight: 600; font-family: var(--font-title);
  color: rgba(255,255,255,.45);
}
.hero__trust-item { display: flex; align-items: center; gap: 7px; }
.hero__trust-item svg { color: var(--gold); }
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(238,181,65,.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:1;height:40px} 50%{opacity:.4;height:20px} }

/* ── FEATURES GRID ──────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.feature-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}
.feature-card:hover { background: rgba(238,181,65,.06); border-color: rgba(238,181,65,.2); transform: translateY(-4px); }
.feature-card__icon { font-size: 32px; margin-bottom: 14px; }
.feature-card__title {
  font-family: var(--font-title);
  font-size: 16px; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.feature-card__desc { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ── ENCART TARIFS ──────────────────────────────────────────── */
.price-cards-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px; max-width: 380px; margin: 0 auto 28px;
}
.price-card-mini {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px 24px;
  text-align: center; position: relative;
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.price-card-mini:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card-mini--pop {
  border-color: var(--gold); border-width: 2px;
  box-shadow: var(--shadow-gold);
}
.pcm-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-family: var(--font-title); font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 16px; border-radius: 20px; white-space: nowrap;
}
.pcm-icon { font-size: 32px; margin-bottom: 10px; }
.pcm-name { font-family: var(--font-title); font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.pcm-desc { font-size: 13px; color: var(--gray-600); margin-bottom: 4px; }
.pcm-dims { font-size: 11px; color: var(--gray-400); margin-bottom: 18px; }
.pcm-price { margin-bottom: 18px; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; }
.pcm-from { font-family: var(--font-title); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--gray-600); margin-bottom: 4px; }
.pcm-amount { font-family: var(--font-title); font-size: 46px; font-weight: 800; color: var(--navy); line-height: 1; }
.pcm-unit { font-size: 14px; color: var(--gray-400); margin-top: 2px; }

.price-toggle-wrap { text-align: center; margin-bottom: 16px; }
.price-toggle-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px; border-radius: 30px;
  border: 1.5px solid var(--gray-200);
  font-size: 13px; font-weight: 600; font-family: var(--font-title);
  color: var(--gray-600); transition: all var(--transition);
}
.price-toggle-btn:hover { border-color: var(--navy); color: var(--navy); }
.tarifs-detail { max-height: 0; overflow: hidden; transition: max-height .4s ease, opacity .3s; opacity: 0; }
.tarifs-detail.open { max-height: 600px; opacity: 1; }

/* Grille tarifaire complète */
.pricing-tbl {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-md); font-size: 14px;
  margin: 0 auto 14px; max-width: 680px;
}
.pricing-tbl thead th {
  background: var(--navy); color: var(--gold);
  padding: 12px 16px; text-align: center;
  font-family: var(--font-title); font-size: 12px; font-weight: 700;
}
.pricing-tbl thead th:first-child { text-align: left; }
.pricing-tbl tbody td { padding: 11px 14px; border-bottom: 1px solid var(--gray-200); text-align: center; color: var(--text); }
.pricing-tbl tbody td:first-child { text-align: left; font-weight: 700; color: var(--navy-mid); }
.pricing-tbl tbody tr:last-child td { border-bottom: none; }
.pricing-tbl tbody tr:hover td { background: rgba(238,181,65,.04); }
.pricing-tbl tbody tr.row-hl td { background: rgba(238,181,65,.06); font-weight: 700; }
.pricing-note { text-align: center; font-size: 12px; color: var(--gray-600); }
.dur-pill {
  display: inline-block; font-family: var(--font-title);
  font-size: 12px; font-weight: 700;
  background: var(--gray-100); color: var(--navy);
  padding: 4px 12px; border-radius: 20px;
}
.price-val { font-family: var(--font-title); font-size: 17px; font-weight: 800; color: var(--navy); }

/* ── STEPS ──────────────────────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  display: none;
  position: absolute; top: 28px; left: 12.5%; right: 12.5%;
  height: 2px; background: linear-gradient(to right, var(--gold), rgba(238,181,65,.2));
  z-index: 0;
}
.step-item { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy-mid); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-title); font-size: 18px; font-weight: 800;
  color: var(--gold);
}
.step-icon { font-size: 22px; margin-bottom: 10px; }
.step-title { font-family: var(--font-title); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.step-desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.08); }
.faq-item.light { border-bottom-color: var(--gray-200); }
.faq-item__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; gap: 16px; text-align: left;
  font-family: var(--font-title); font-size: 15px; font-weight: 600;
  color: var(--white); cursor: pointer; background: none;
  transition: color var(--transition);
}
.faq-item.light .faq-item__question { color: var(--navy); }
.faq-item__question:hover { color: var(--gold); }
.faq-item__icon { flex-shrink: 0; transition: transform .25s; color: var(--gold); }
.faq-item__question[aria-expanded="true"] .faq-item__icon { transform: rotate(180deg); }
.faq-item__answer { padding: 0 0 18px; display: none; }
.faq-item__answer[aria-hidden="false"] { display: block; }
.faq-item__answer p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.6); }
.faq-item.light .faq-item__answer p { color: var(--gray-600); }

/* ── CONTACT SECTION ────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.contact-map iframe { width: 100%; height: 100%; border: 0; }
.map-placeholder {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg); height: 100%; min-height: 280px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: rgba(255,255,255,.3);
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info__title {
  font-family: var(--font-title); font-size: 22px; font-weight: 800;
  color: var(--white); margin-bottom: 4px;
}
.contact-info__row { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,.7); }
.contact-info__row svg { color: var(--gold); flex-shrink: 0; }
.contact-info__link { color: rgba(255,255,255,.7); transition: color var(--transition); }
.contact-info__link:hover { color: var(--gold); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer { background: #060E1A; border-top: 1px solid rgba(238,181,65,.1); padding: 52px 0 0; }
.footer__grid {
  display: grid; grid-template-columns: 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__brand-name {
  font-family: var(--font-title); font-size: 18px;
  color: var(--white); margin-bottom: 6px;
}
.footer__tagline { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.7; margin-bottom: 16px; }
.footer__col-title {
  font-family: var(--font-title); font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--gold); margin-bottom: 14px;
}
.footer__link {
  display: block; font-size: 13px; color: rgba(255,255,255,.5);
  padding: 5px 0; transition: color var(--transition);
}
.footer__link:hover { color: var(--white); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,.25);
}
.footer__langs { display: flex; gap: 8px; }
.footer__lang { font-size: 16px; opacity: .5; transition: opacity .2s; }
.footer__lang:hover, .footer__lang--active { opacity: 1; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }

/* ── PAGE HERO (sous-pages) ─────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 60px 0 52px;
  border-bottom: 1px solid rgba(238,181,65,.1);
}
.page-hero__badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-title); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--gold); margin-bottom: 14px;
}
.page-hero__title {
  font-family: var(--font-title);
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 800; color: var(--white);
  line-height: 1.15; margin-bottom: 14px;
}
.page-hero__subtitle { font-size: 16px; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 600px; }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.35);
  padding: 14px 0 0; font-family: var(--font-title); font-weight: 600;
}
.breadcrumb a { color: rgba(255,255,255,.4); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold-light); }

/* ── CARDS GÉNÉRIQUES ───────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__body { padding: 24px; }
.card__icon { font-size: 28px; margin-bottom: 12px; }
.card__title { font-family: var(--font-title); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.card__desc { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

/* Dark cards */
.card-dark {
  background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.07);
}
.card-dark .card__title { color: var(--white); }
.card-dark .card__desc  { color: rgba(255,255,255,.55); }
.card-dark:hover { border-color: rgba(238,181,65,.25); }

/* ── HIGHLIGHT BOX ──────────────────────────────────────────── */
.highlight-box {
  background: rgba(238,181,65,.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 20px; margin: 20px 0;
  font-size: 14px; line-height: 1.65;
}
.highlight-box.light { color: var(--text); }
.highlight-box.dark  { color: rgba(255,255,255,.8); }

/* ── DIRECTION CARDS ────────────────────────────────────────── */
.directions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.direction-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md); padding: 22px;
  display: flex; gap: 16px;
}
.direction-card__mode-icon { font-size: 26px; flex-shrink: 0; }
.direction-card__title { font-family: var(--font-title); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.direction-card__time { font-family: var(--font-title); font-size: 22px; font-weight: 800; color: var(--gold); margin-bottom: 10px; }
.direction-card__steps { list-style: none; counter-reset: s; }
.direction-card__steps li {
  font-size: 12px; color: rgba(255,255,255,.5); padding-left: 18px;
  position: relative; counter-increment: s; line-height: 1.55; margin-bottom: 4px;
}
.direction-card__steps li::before {
  content: counter(s)'.'; position: absolute; left: 0;
  color: var(--gold); font-weight: 700; font-size: 11px;
}

/* ── STAT INLINE ────────────────────────────────────────────── */
.stats-row { display: flex; gap: 32px; flex-wrap: wrap; margin: 24px 0; }
.stat-item__num {
  font-family: var(--font-title);
  font-size: 32px; font-weight: 800; color: var(--gold); line-height: 1;
}
.stat-item__label { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 3px; }
.stat-item__label.light { color: var(--gray-600); }

/* ── KEYBOXES PAGE ──────────────────────────────────────────── */
.plans-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.plan-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px 20px;
  position: relative; display: flex; flex-direction: column;
  transition: all var(--transition);
}
.plan-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.plan-card--featured { border-color: var(--gold); border-width: 2px; box-shadow: var(--shadow-gold); }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-family: var(--font-title); font-size: 9px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 14px; border-radius: 20px; white-space: nowrap;
}
.plan-badge--green { background: #22C55E; color: white; }
.plan-name { font-family: var(--font-title); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.plan-desc { font-size: 12px; color: var(--gray-600); margin-bottom: 14px; }
.plan-price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 6px; }
.plan-price__amount { font-family: var(--font-title); font-size: 38px; font-weight: 800; color: var(--navy); }
.plan-price__period { font-size: 13px; color: var(--gray-600); }
.plan-note { font-size: 11px; color: var(--gray-600); margin-bottom: 16px; }
.plan-features { flex: 1; list-style: none; margin-bottom: 20px; }
.plan-features li {
  font-size: 13px; color: var(--text-mid);
  padding: 6px 0 6px 18px; position: relative;
  border-bottom: 1px solid var(--gray-100);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ── LEGAL PAGES ────────────────────────────────────────────── */
.legal-content { background: var(--white); border-radius: var(--radius-lg); padding: 24px 20px; }
.legal-content h2 { font-family: var(--font-title); font-size: 20px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-family: var(--font-title); font-size: 16px; font-weight: 700; color: var(--navy); margin: 20px 0 8px; }
.legal-content p { font-size: 14px; color: var(--text-mid); line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { margin: 10px 0 14px 20px; }
.legal-content ul li { font-size: 14px; color: var(--text-mid); line-height: 1.7; list-style: disc; margin-bottom: 4px; }

/* ── DESTINATIONS HUB ───────────────────────────────────────── */
.dest-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.dest-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.07);
  padding: 28px 24px; display: flex; flex-direction: column; gap: 10px;
  transition: all var(--transition);
}
.dest-card:hover { border-color: rgba(238,181,65,.3); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.3); }
.dest-card__dist {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-title); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
  color: var(--gold); background: rgba(238,181,65,.1);
  padding: 3px 10px; border-radius: 20px; width: fit-content;
}
.dest-card__title { font-family: var(--font-title); font-size: 18px; font-weight: 800; color: var(--white); }
.dest-card__desc { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; flex: 1; }
.dest-card__cta { display: flex; align-items: center; gap: 6px; font-family: var(--font-title); font-size: 12px; font-weight: 700; color: var(--gold); margin-top: 4px; }
.dest-card__cta svg { transition: transform .2s; }
.dest-card:hover .dest-card__cta svg { transform: translateX(3px); }

/* ── SEO PAGE BODY ──────────────────────────────────────────── */
.seo-body { padding: 64px 0; background: var(--white); }
.seo-body__grid { display: grid; grid-template-columns: 1fr; gap: 52px; align-items: start; }
.seo-body__text h2 { font-family: var(--font-title); font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.seo-body__text h3 { font-family: var(--font-title); font-size: 17px; font-weight: 700; color: var(--navy); margin: 28px 0 10px; }
.seo-body__text p { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 14px; }
.seo-body__text strong { color: var(--navy); }
.seo-body__text ul { margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.seo-body__text ul li { font-size: 14px; color: var(--text-mid); padding-left: 18px; position: relative; line-height: 1.6; }
.seo-body__text ul li::before { content: '›'; position: absolute; left: 0; color: var(--gold); font-weight: 700; font-size: 16px; }
.seo-body__aside { position: static; display: flex; flex-direction: column; gap: 14px; }
.aside-card {
  background: var(--navy); border-radius: var(--radius-md);
  padding: 20px 22px; color: var(--white);
}
.aside-card__title { font-family: var(--font-title); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 14px; }
.aside-card__row { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 10px; line-height: 1.5; }
.aside-card__row svg { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.aside-card .btn { width: 100%; text-align: center; margin-top: 8px; }

/* SEO links internes */
.seo-links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; }
.seo-link-card {
  display: flex; flex-direction: column; gap: 3px;
  padding: 14px 16px; border-radius: var(--radius-md);
  border: 1px solid var(--gray-200); background: var(--white);
  transition: all .2s; text-decoration: none;
}
a.seo-link-card:hover { border-color: var(--gold); box-shadow: 0 4px 14px rgba(238,181,65,.12); transform: translateY(-2px); }
.seo-link-card--current { border-color: var(--gold); background: var(--gold-pale); }
.seo-link-card__label { font-family: var(--font-title); font-size: 12px; font-weight: 700; color: var(--navy); }
.seo-link-card__dist { font-size: 11px; color: var(--gray-600); }

/* SEO mini price table */
.seo-price-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-bottom: 10px; border-radius: var(--radius-md); overflow: hidden; }
.seo-price-table thead th { background: var(--navy); color: var(--gold); padding: 10px 12px; text-align: center; font-family: var(--font-title); font-size: 11px; font-weight: 700; }
.seo-price-table thead th:first-child { text-align: left; }
.seo-price-table tbody td { padding: 9px 12px; border-bottom: 1px solid var(--gray-200); text-align: center; }
.seo-price-table tbody td:first-child { text-align: left; font-weight: 700; }
.seo-price-table tbody tr.row-hl td { background: rgba(238,181,65,.05); font-weight: 700; }
.seo-price-table tbody tr:last-child td { border-bottom: none; }

/* ── BLOG ───────────────────────────────────────────────────── */
.blog-cat-tag {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--gold); background: rgba(238,181,65,.15);
  padding: 4px 12px; border-radius: 20px;
}
.blog-cat-tag--sm { font-size: 10px; padding: 3px 10px; }

/* ── Article vedette ── */
.blog-featured { margin-bottom: 56px; }
.blog-featured__link { display: block; text-decoration: none; }
.blog-featured__inner {
  display: flex; flex-direction: column;
  border-radius: var(--radius-xl); overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(10,26,58,.1), 0 1px 4px rgba(10,26,58,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-featured__link:hover .blog-featured__inner {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(10,26,58,.15), 0 4px 12px rgba(10,26,58,.07);
}
.blog-featured__photo {
  width: 100%; height: 260px; min-height: unset; flex-shrink: 0;
  background-color: var(--navy-mid); background-size: cover;
  background-position: center; background-repeat: no-repeat;
  position: relative;
}
.blog-featured__photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,26,58,.55) 100%);
}
.blog-featured__content {
  flex: 1; background: var(--white); border-left: none;
  border-top: 3px solid var(--gold);
  padding: 24px 24px 28px;
  display: flex; align-items: flex-start; gap: 20px; flex-direction: column;
}
.blog-featured__text { flex: 1; }
.blog-featured__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.blog-featured__meta time { font-size: 12px; color: var(--gray-400); }
.blog-featured__title {
  font-family: var(--font-title);
  font-size: clamp(20px, 3vw, 28px); font-weight: 800;
  color: var(--navy); line-height: 1.25; margin-bottom: 10px;
}
.blog-featured__subtitle {
  display: none; font-size: 14px; color: var(--gray-600); line-height: 1.7;
}
.blog-featured__side { flex-shrink: 0; }
.blog-featured__cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy);
  font-family: var(--font-title); font-size: 14px; font-weight: 700;
  padding: 13px 28px; border-radius: 50px; white-space: nowrap;
  transition: background .18s, gap .15s, box-shadow .18s;
}
.blog-featured__link:hover .blog-featured__cta {
  background: var(--gold-dark); gap: 14px; box-shadow: var(--shadow-gold);
}

/* ── Grille ── */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }

/* ── Wrapper photo (hover zoom + gradient) ── */
.blog-card__visual { position: relative; overflow: hidden; flex-shrink: 0; }
.blog-card__img {
  width: 100%; height: 210px; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.blog-card__img--placeholder {
  height: 210px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 70%, rgba(238,181,65,.25) 100%);
}

/* ── Cards ── */
.blog-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white);
  border: none;
  box-shadow: 0 2px 12px rgba(10,26,58,.07), 0 1px 3px rgba(10,26,58,.04);
  transition: transform .22s ease, box-shadow .22s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(10,26,58,.13); }
.blog-card:hover .blog-card__img { transform: scale(1.04); }

/* Fondu photo → fond card */
.blog-card__visual::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 48px;
  background: linear-gradient(to top, var(--white) 0%, transparent 100%);
  pointer-events: none;
}

.blog-card__link { display: flex; flex-direction: column; height: 100%; text-decoration: none; }
.blog-card__body { padding: 14px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.blog-card__meta time { font-size: 11px; color: var(--gray-400); }
.blog-card__title {
  font-family: var(--font-title); font-size: 16px; font-weight: 700;
  color: var(--navy); line-height: 1.35; margin-bottom: 10px;
}
.blog-card__desc { font-size: 13px; color: var(--gray-600); line-height: 1.65; margin-bottom: 18px; flex: 1; }
.blog-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  font-family: var(--font-title); font-size: 12px; font-weight: 700;
  padding: 9px 20px; border-radius: 50px;
  align-self: flex-start; transition: background .18s, gap .15s;
}
.blog-card:hover .blog-card__cta { background: var(--gold-dark); gap: 12px; }

/* ── RESPONSIVE — Mobile-First ──────────────────────────────── */
/* Base = mobile (< 641px). On enrichit vers le haut.           */

@media (min-width: 641px) {
  .section { padding: 80px 0; }
  .hero { padding: 100px 0 80px; min-height: 92vh; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .blog-featured__photo { height: 300px; }
  .blog-featured__content { padding: 28px 32px 32px; gap: 20px; }
  .blog-featured__subtitle { display: block; }
  .seo-links-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-content { padding: 40px 48px; }
}

@media (min-width: 901px) {
  .header__inner { height: 72px; gap: 32px; padding: 0 24px; }
  .header__logo-img { height: 56px; max-width: none; }
  .header__nav { display: flex; }
  .header__cta { display: flex; }
  .header__burger { display: none; }
  .price-cards-row { grid-template-columns: repeat(3, 1fr); max-width: 860px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .seo-body__grid { grid-template-columns: 1fr 320px; }
  .seo-body__aside { position: sticky; top: 120px; }
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .steps-grid::before { display: block; }
  .blog-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .blog-featured__inner { flex-direction: row; }
  .blog-featured__photo { width: 400px; height: auto; min-height: 280px; }
  .blog-featured__content { flex-direction: row; align-items: center; border-left: 3px solid var(--gold); border-top: none; padding: 32px 40px 36px; gap: 36px; }
  .directions-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}

@media (min-width: 1025px) {
  .header__inner { height: 88px; }
  .header__logo-img { height: 64px; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .plans-grid { grid-template-columns: repeat(4, 1fr); }
}
