/* =========================================================
   STYLE GLOBAL — LOOK MODERNE / PREMIUM
   Fichier : style.css
   Objectif : design "classe", lisible, responsive
   ========================================================= */

/* -----------------------------
   1) VARIABLES (couleurs, tailles)
   => Modifie ici si tu veux changer le thème
   ----------------------------- */
:root {
  --bg: #070A12;                 /* Fond principal */
  --bg2: #0A1022;                /* Variante */
  --card: rgba(255, 255, 255, 0.06);
  --cardBorder: rgba(255, 255, 255, 0.10);

  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.70);
  --soft: rgba(255, 255, 255, 0.55);

  --primary: #7C5CFF;            /* Violet premium */
  --primary2: #16D9B2;           /* Vert/menthe */
  --accent: #FFCC66;             /* Doré léger */

  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --shadowSoft: 0 12px 40px rgba(0, 0, 0, 0.28);

  --radius: 20px;
  --radius2: 26px;

  --container: 1120px;
  --pad: 22px;

  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* -----------------------------
   2) RESET BASIQUE
   ----------------------------- */
* { box-sizing: border-box; }
html, body { height: 100%; }

/* ✅ Confort navigation : défilement doux quand on clique sur le menu */
html { scroll-behavior: smooth; }

/* ✅ Important : avec le header "sticky", on laisse un espace quand on arrive sur une section (#assistance, #contact, etc.) */
.section { scroll-margin-top: 92px; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(1200px 700px at 20% 10%, rgba(124, 92, 255, 0.18), transparent 60%),
              radial-gradient(900px 700px at 80% 30%, rgba(22, 217, 178, 0.16), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x: hidden;
}

/* Liens */
a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.92; }

/* Titres */
h1, h2, h3, h4 { margin: 0; }

/* Listes */
ul { margin: 0; padding-left: 18px; }

/* -----------------------------
   3) UTILITAIRES
   ----------------------------- */
.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* ✅ Utilitaire : marge haute 18px (utilisé quand on a retiré le style inline du HTML) */
.u-mt-18{ margin-top: 18px; }

.grad {
  background: linear-gradient(90deg, var(--primary), var(--primary2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Fond flou décoratif */
.bg-blur {
  position: fixed;
  inset: auto auto auto auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.65;
  pointer-events: none;
  z-index: -1;
}

.bg-blur--1 {
  left: -120px;
  top: 120px;
  background: rgba(124, 92, 255, 0.35);
}

.bg-blur--2 {
  right: -160px;
  top: 360px;
  background: rgba(22, 217, 178, 0.30);
}

/* -----------------------------
   4) HEADER / NAVIGATION
   ----------------------------- */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 50;

  /* effet glass premium */
  background: linear-gradient(180deg, rgba(10, 16, 34, 0.72), rgba(10, 16, 34, 0.35));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.35), rgba(22, 217, 178, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadowSoft);
  font-weight: 800;
}

.brand__title {
  font-weight: 800;
  letter-spacing: 0.2px;
}
.brand__subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link {
  font-size: 14px;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: 180ms ease;
}

.nav__link:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
}

/* Burger mobile */
.nav__burger {
  display: none; /* visible en mobile */
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadowSoft);
}

.nav__burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  transition: 220ms ease;
}
.nav__burger span:nth-child(1) { top: 14px; }
.nav__burger span:nth-child(2) { top: 21px; opacity: 0.9; }
.nav__burger span:nth-child(3) { top: 28px; }

/* Menu mobile (caché par défaut) */
.mobileMenu {
  display: none;
  width: min(var(--container), calc(100% - 40px));
  margin: 12px auto 0 auto;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
}

.mobileMenu__link {
  display: block;
  padding: 12px 12px;
  border-radius: 14px;
  color: var(--muted);
}

.mobileMenu__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* -----------------------------
   4bis) MENU LANGUE (dropdown)
   - Objectif : propre, lisible, premium
   - IMPORTANT : la liste doit être INVISIBLE tant qu'on n'a pas ouvert le menu
   - On supporte 2 modes d'ouverture :
     1) classe `.is-open` sur le conteneur (JS actuel)
     2) `aria-expanded="true"` sur le bouton (sécurité)
   ----------------------------- */

/* ===== Conteneur ===== */
.langDropdown{
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* ===== Reset bouton (évite les styles blancs natifs) ===== */
.langDropdown__btn,
.langDropdown__item{
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  padding: 0;
  margin: 0;
}

/* ===== Bouton (drapeau + code + flèche) ===== */
.langDropdown__btn{
  height: 44px;
  min-width: 104px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 14px;
  border-radius: 16px;
  cursor: pointer;

  /* Look premium */
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadowSoft);

  transition: 180ms ease;
  -webkit-tap-highlight-color: transparent;

  /* Empêche les retours à la ligne bizarres */
  white-space: nowrap;
}

.langDropdown__btn:hover{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}

.langDropdown__btn:focus-visible{
  outline: 2px solid rgba(124, 92, 255, 0.65);
  outline-offset: 3px;
}

.langDropdown__flag{
  font-size: 20px;
  line-height: 1;
  transform: translateY(1px);
}

/* ✅ Badge FR/EN/NL propre */
.langDropdown__code{
  font-weight: 900;
  letter-spacing: .6px;
  font-size: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.90);
}

.langDropdown__chev{
  opacity: .75;
  font-size: 12px;
  transform: translateY(1px);
}

/* ===== Liste déroulante =====
   IMPORTANT : fermée = display:none + pas de clics
   (ça évite exactement le bug où les 3 boutons restent visibles sous le bouton)
*/
.langDropdown__menu{
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 200px;
  padding: 10px;
  border-radius: 18px;
  z-index: 9999;

  /* ✅ Fermée par défaut */
  display: none !important;
  pointer-events: none;

  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.55);
}

/* ✅ Ouverture (JS actuel) */
.langDropdown.is-open .langDropdown__menu{
  display: flex !important;
  flex-direction: column;
  gap: 8px;
  pointer-events: auto;
}

/* ✅ Sécurité : si jamais la classe n'est pas mise, on ouvre quand aria-expanded=true */
.langDropdown__btn[aria-expanded="true"] + .langDropdown__menu{
  display: flex !important;
  flex-direction: column;
  gap: 8px;
  pointer-events: auto;
}

/* ===== Items ===== */
.langDropdown__item{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  transition: 160ms ease;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}

.langDropdown__item span:first-child{
  font-size: 18px;
  transform: translateY(1px);
}

.langDropdown__item:hover{
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.16);
}

.langDropdown__item:focus-visible{
  outline: 2px solid rgba(22, 217, 178, 0.55);
  outline-offset: 3px;
}

.langDropdown__item.is-active{
  border-color: rgba(124,92,255,0.55);
  background: linear-gradient(90deg, rgba(124,92,255,0.22), rgba(22,217,178,0.14));
}

/* ✅ Affichage par défaut : desktop visible, mobile caché */
#langDropdown{ display: inline-flex; }
#langDropdownMobile{ display: none; }

/* ✅ Mobile : on cache le dropdown du header, et on affiche celui du menu burger */
@media (max-width: 980px){
  #langDropdown{ display: none; }
  #langDropdownMobile{ display: inline-flex; }

  .langDropdown__btn{ height: 42px; min-width: 100px; border-radius: 15px; }
  .langDropdown__menu{ min-width: 190px; }
}

/* ✅ Correctif clics : le menu mobile ne doit JAMAIS bloquer la page quand il est fermé */
.mobileMenu{
  display: none;
  pointer-events: none;
}

.mobileMenu.is-open{
  display: block;
  pointer-events: auto;
}

/* -----------------------------
   5) HERO
   ----------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 52px 0 12px 0;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.hero__title {
  font-size: 52px;
  line-height: 1.06;
  letter-spacing: -0.6px;
  margin-top: 14px;
}

.hero__desc {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 560px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: 180ms ease;
  box-shadow: var(--shadowSoft);
}

.btn--primary {
  background: linear-gradient(90deg, rgba(124, 92, 255, 0.95), rgba(22, 217, 178, 0.92));
  border-color: rgba(255, 255, 255, 0.12);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* Badges techno */
.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.badge {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.80);
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Carte aperçu */
.previewCard {
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.previewCard::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.30), rgba(22, 217, 178, 0.18), transparent 60%);
  filter: blur(18px);
  z-index: 0;
}

.previewCard__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

.previewCard__dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  opacity: 0.95;
}
.dot--red { background: #FF5C5C; }
.dot--yellow { background: #FFCC66; }
.dot--green { background: #4FE7B5; }

.previewCard__label {
  margin-left: 8px;
  font-size: 13px;
  color: var(--muted);
}

.previewCard__content {
  position: relative;
  z-index: 1;
  padding: 18px;
}

.miniGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini {
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadowSoft);
}

.mini__icon {
  font-size: 20px;
}
.mini__title {
  margin-top: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.mini__sub {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  color: var(--muted);
  line-height: 1.5;
}

/* ✅ Liens dans les "notes" */
.note a {
  color: rgba(124, 92, 255, 0.95);
  text-decoration: underline;
  text-decoration-color: rgba(124, 92, 255, 0.35);
  text-underline-offset: 3px;
}

.note a:hover {
  color: rgba(22, 217, 178, 0.95);
  text-decoration-color: rgba(22, 217, 178, 0.45);
}

/* ✅ Accessibilité : focus clavier visible */
.note a:focus-visible {
  outline: 2px solid rgba(124, 92, 255, 0.75);
  outline-offset: 3px;
  border-radius: 8px;
}

/* -----------------------------
   6) SECTIONS + TITRES
   ----------------------------- */
.section {
  padding: 52px 0 8px 0;
}

.section__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.section__title {
  font-size: 28px;
  letter-spacing: -0.2px;
}

.section__subtitle {
  color: var(--muted);
  max-width: 780px;
  line-height: 1.6;
}

/* -----------------------------
   7) CARTES PROJETS
   ----------------------------- */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.card {
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadowSoft);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 260px at 15% 0%, rgba(124, 92, 255, 0.12), transparent 55%),
              radial-gradient(520px 260px at 85% 20%, rgba(22, 217, 178, 0.10), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.card > * { position: relative; z-index: 1; }

.card--highlight {
  border-color: rgba(124, 92, 255, 0.28);
}

.card__tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card__title {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.card__desc {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14.5px;
}

.list {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.65;
  font-size: 14px;
}

.priceLine {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  align-items: baseline;
  flex-wrap: wrap;
  color: var(--muted);
}
.priceLine__value {
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.2px;
}
.priceLine__note {
  color: var(--soft);
  font-size: 13px;
}

/* Boutons stores */
.storeRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.storeBtn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadowSoft);
  transition: 180ms ease;
}

.storeBtn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 255, 255, 0.16);
}

.storeBtn--primary {
  background: linear-gradient(90deg, rgba(124, 92, 255, 0.20), rgba(22, 217, 178, 0.14));
  border-color: rgba(124, 92, 255, 0.22);
}

.storeBtn__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-weight: 800;
}

.storeBtn__text { display: flex; flex-direction: column; }
.storeBtn__small { font-size: 11px; color: var(--soft); }
.storeBtn__big { font-size: 14px; font-weight: 800; }

/* -----------------------------
   8) COMPÉTENCES
   ----------------------------- */
.grid3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

.infoBox {
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadowSoft);
  padding: 16px;
}

.infoBox__title {
  font-weight: 800;
  letter-spacing: -0.2px;
}
.infoBox__text {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

/* -----------------------------
   9) CONTACT
   ----------------------------- */
.section--contact {
  padding-bottom: 42px;
}

.contactCard {
  border-radius: var(--radius2);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadowSoft);
  padding: 18px;
}

.contactCard__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 10px;
  border-radius: 16px;
}

.contactCard__row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.contactCard__label {
  color: var(--soft);
  font-size: 13px;
}

.contactCard__value {
  color: var(--text);
  font-weight: 700;
  text-align: right;
}

.contactCard__cta {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
}

/* -----------------------------
   10) FOOTER
   ----------------------------- */
.footer {
  padding: 36px 0 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--soft);
  text-align: center;
}
.footer__small {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

/* ✅ Liens du footer */
.footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  text-underline-offset: 3px;
}

.footer a:hover {
  color: rgba(255, 255, 255, 0.92);
  text-decoration-color: rgba(255, 255, 255, 0.45);
}

/* ✅ Accessibilité : focus clavier visible */
.footer a:focus-visible {
  outline: 2px solid rgba(124, 92, 255, 0.75);
  outline-offset: 3px;
  border-radius: 8px;
}

/* -----------------------------
   11) MODALES (CONFIDENTIALITÉ)
   ----------------------------- */

/* Fond de la modale (plein écran) */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  z-index: 9999;
}

/* ✅ Ouverture automatique quand l’URL contient #privacy-... */
.modal:target {
  display: flex;
}

/* Contenu de la modale */
.modal__box {
  width: min(920px, 100%);
  max-height: 82vh;
  overflow: auto;
  border-radius: var(--radius2);
  background: rgba(10, 16, 34, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  padding: 18px;
  position: relative;
}

/* Bouton fermer (croix) */
.modal__close {
  position: sticky;
  top: 0;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
  box-shadow: var(--shadowSoft);
}

.modal__close:hover {
  background: rgba(255, 255, 255, 0.10);
}

/* Petit titre en haut de la modale */
.modal__title {
  margin-top: 12px;
  font-size: 22px;
  font-weight: 900;
}

.modal__subtitle {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

/* -----------------------------
   11) RESPONSIVE (mobile/tablette)
   ----------------------------- */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 34px;
  }

  .hero__title { font-size: 44px; }
  .cards { grid-template-columns: 1fr; }
  .grid3 { grid-template-columns: 1fr; }

  .nav { display: none; }
  .nav__burger { display: inline-flex; }
  .mobileMenu.is-open { display: block; }

  /* ✅ Header responsive : évite que tout se chevauche */
  .header {
    flex-wrap: wrap;
    row-gap: 12px;
  }

  /* ✅ (Info) Ancien système `.lang` supprimé : on utilise désormais `.langDropdown` */
  /* .lang { width: 100%; justify-content: flex-end; } */
  /* .lang__btn { padding: 10px 12px; border-radius: 14px; } */
}

@media (max-width: 520px) {
  .hero__title { font-size: 36px; }
  .storeRow { grid-template-columns: 1fr; }

  /* ✅ (Info) Ancien système `.lang__btn` supprimé : on utilise désormais `.langDropdown__btn` */
  /* .lang__btn { padding: 9px 11px; font-size: 12.5px; } */

  /* ✅ Un peu plus de confort sur mobile */
  .container {
    width: min(var(--container), calc(100% - 28px));
  }


/* ===== Nettoyage ancienne règle conflictuelle si présente ailleurs dans le fichier ===== */

}
