/* ============================================
   BIG2BIG — Design System
   Palette: Blanc #FFFFFF | Bleu foncé #0B1F5C | Jaune #F5C400 | Gris clair #F4F6FB
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Barlow+Condensed:wght@600;700;800;900&display=swap');

:root {
  --navy: #0B1F5C;
  --navy-light: #122470;
  --yellow: #F5C400;
  --yellow-hover: #e0b000;
  --white: #FFFFFF;
  --off-white: #F4F6FB;
  --gray-100: #EAEFF8;
  --gray-200: #D0D9EC;
  --gray-500: #7B8DB0;
  --gray-700: #3A4A6B;
  --text: #0F1C3F;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(11,31,92,0.10);
  --shadow-lg: 0 8px 40px rgba(11,31,92,0.15);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 72px;
  --nav-h-mobile: 66px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }

/* ===== TYPOGRAPHY ===== */
.display {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
  word-break: break-word;
}
h1 { font-size: clamp(2rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 3rem); font-family: 'Barlow Condensed', sans-serif; font-weight: 800; text-transform: uppercase; line-height: 1.1; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { color: var(--gray-700); }

/* ===== LAYOUT ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.section { padding: clamp(48px, 7vw, 100px) 0; }
.section--sm { padding: 48px 0; }
.section--alt { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy p { color: var(--gray-200); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }

/* Force the "12 univers" grid to behave responsively (was hardcoded 4-col inline in HTML) */
.universes-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
}

/* ===== EYEBROW ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--yellow);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 3px;
  background: var(--yellow); border-radius: 2px;
  flex-shrink: 0;
}
.section--navy .eyebrow { color: var(--yellow); }

/* ===== BADGE ===== */
.badge {
  display: inline-block; padding: 4px 12px;
  background: var(--yellow); color: var(--navy);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: 4px;
}
.badge--outline {
  background: transparent;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-700);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.02em;
  cursor: pointer; border: none; transition: all var(--transition);
  max-width: 100%;
  text-align: center;
}
.btn--primary { background: var(--yellow); color: var(--navy); }
.btn--primary:hover { background: var(--yellow-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,196,0,0.35); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.35); }
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 2px 12px rgba(11,31,92,0.07);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
  gap: 16px;
}
.nav__logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__logo img { height: 44px; width: auto; }
.nav__logo-text { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.6rem; color: var(--navy); letter-spacing: 0.02em; white-space: nowrap; }
.nav__logo-text span { color: var(--yellow); }

.nav__links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.nav__links a {
  padding: 8px 16px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 600; color: var(--gray-700);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav__links a:hover, .nav__links a.active { color: var(--navy); background: var(--off-white); }

.nav__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav__burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-shrink: 0; }
.nav__burger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); margin: 5px 0;
  transition: all var(--transition);
}

.nav__mobile {
  position: fixed;
  top: var(--nav-h-mobile);
  left: 0; right: 0;
  background: var(--white);
  height: calc(100vh - var(--nav-h-mobile));
  overflow-y: auto;
  transform: translateY(-120%);
  transition: transform 0.35s ease;
  z-index: 999;
  padding: 14px 16px 20px;
}
.nav__mobile.open { transform: translateY(0); }
.nav__mobile a {
  display: block; padding: 12px 0;
  font-weight: 600; color: var(--text);
  border-bottom: 1px solid var(--gray-100);
  font-size: 1rem;
}
.nav__mobile .btn { margin-top: 16px; width: 100%; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2468 60%, #162d7a 100%);
  color: var(--white);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__accent {
  position: absolute; right: -80px; top: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,196,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; }
.hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin: 20px 0 36px; max-width: 540px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 40px;
  margin-top: 56px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero__kpi-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--yellow); line-height: 1;
}
.hero__kpi-label {
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
  font-weight: 500; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em;
}

/* ===== STRIP / TICKER ===== */
.strip { background: var(--yellow); padding: 14px 0; overflow: hidden; }
.strip__track {
  display: flex; gap: 48px; align-items: center;
  animation: ticker 30s linear infinite;
  white-space: nowrap; width: max-content;
}
.strip__item {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--navy);
}
.strip__dot { width: 6px; height: 6px; background: var(--navy); border-radius: 50%; opacity: 0.4; flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gray-200); }
.card__icon {
  width: 52px; height: 52px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.card__icon--yellow { background: rgba(245,196,0,0.15); }
.card h3 { margin-bottom: 10px; color: var(--navy); }

/* ===== STAT CARDS ===== */
.stat-card {
  text-align: center; padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
}
.stat-card__value {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--navy); line-height: 1;
}
.stat-card__label { font-size: 0.8rem; color: var(--gray-500); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; }

/* ===== UNIVERSE GRID ===== */
.universe-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  min-width: 0;
  height: 100%;
  transition: all var(--transition);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(11,31,92,0.06);
}
.universe-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 6px 24px rgba(245,196,0,0.2);
  transform: translateY(-3px);
}
.universe-card h3 { word-break: break-word; }
.universe-card__emoji { font-size: 2rem; }
.universe-card__num { font-size: 0.7rem; font-weight: 800; color: var(--yellow); letter-spacing: 0.1em; }
.universe-card__name { font-weight: 700; color: var(--navy); font-size: 1rem; word-break: break-word; }
.universe-card__sub { font-size: 0.78rem; color: var(--gray-500); line-height: 1.4; }

/* ===== BRAND LOGOS STRIP ===== */
.brands-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.brand-chip {
  padding: 10px 20px;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: 40px;
  font-size: 0.85rem; font-weight: 700;
  color: var(--navy); letter-spacing: 0.02em;
  transition: all var(--transition);
  box-shadow: 0 2px 6px rgba(11,31,92,0.05);
}
.brand-chip:hover {
  border-color: var(--yellow);
  background: rgba(245,196,0,0.06);
  box-shadow: 0 4px 12px rgba(245,196,0,0.15);
}

/* ===== CERTIF BANNERS ===== */
.certif-bar { display: flex; gap: 24px; flex-wrap: wrap; }
.certif-item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  flex: 1 1 200px; min-width: 200px;
}
.certif-item__icon { font-size: 1.6rem; flex-shrink: 0; }
.certif-item__title { font-weight: 700; color: var(--yellow); font-size: 0.85rem; }
.certif-item__sub { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* ===== CTA SECTION ===== */
.cta-section { background: var(--navy); padding: 80px 0; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FORM ===== */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; letter-spacing: 0.02em; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem; font-family: inherit;
  color: var(--text); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,31,92,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-status { margin-top: 16px; font-size: 0.9rem; font-weight: 700; color: var(--navy); }

/* ===== FOOTER ===== */
.footer { background: #07143a; color: var(--white); padding: 64px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__logo img { height: 38px; }
.footer__brand { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.4rem; color: var(--white); }
.footer__brand span { color: var(--yellow); }
.footer__desc { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.footer__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.footer__tag { padding: 4px 10px; border: 1px solid rgba(255,255,255,0.15); border-radius: 4px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); text-transform: uppercase; }

.footer__col h4, .footer__grid h4 { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); margin-bottom: 20px; }
.footer__grid a { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.55); margin-bottom: 10px; transition: color var(--transition); }
.footer__grid a:hover { color: var(--white); }

.footer__contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer__contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer__contact-text { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer__contact-text strong { color: var(--white); display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; flex-wrap: wrap; gap: 12px;
}
.footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* ===== DIVIDER ===== */
.divider { height: 4px; width: 48px; background: var(--yellow); border-radius: 2px; margin: 16px 0; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, #122470 100%);
  padding: 64px 0 56px;
  color: var(--white);
  position: relative; overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute; right: 0; bottom: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle at 80% 120%, rgba(245,196,0,0.1), transparent 60%);
  pointer-events: none;
}
.page-header h1 { color: var(--white); }
.page-header p { color: rgba(255,255,255,0.7); max-width: 560px; margin-top: 12px; font-size: 1.05rem; }
.page-header__crumb {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.page-header__crumb span { color: var(--yellow); margin: 0 6px; }

/* ===== CATALOGUE FILTERS ===== */
.filter-bar {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: nowrap; overflow-x: auto;
  padding-bottom: 6px; margin-bottom: 28px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-chip {
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--navy);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.82rem; font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.filter-chip:hover, .filter-chip.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.product-panel { display: none; }
.product-panel.active { display: block; }

/* ===== TABLE ===== */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
table { width: 100%; min-width: 560px; border-collapse: collapse; background: var(--white); }
thead { background: var(--navy); color: var(--white); }
thead th { padding: 16px 20px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-align: left; white-space: nowrap; }
tbody tr { border-bottom: 1px solid var(--gray-100); transition: background var(--transition); }
tbody tr:hover { background: var(--off-white); }
tbody td { padding: 16px 20px; font-size: 0.9rem; color: var(--text); }
.td-bold { font-weight: 700; color: var(--navy); }
.td-badge { display: flex; gap: 6px; flex-wrap: wrap; }

/* ===== PROCESS STEPS ===== */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.steps::before {
  content: '';
  position: absolute; top: 32px; left: 12.5%; right: 12.5%;
  height: 2px; background: var(--gray-100); z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.step__num {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: var(--navy); color: var(--yellow);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.5rem;
  border: 4px solid var(--white); box-shadow: 0 0 0 2px var(--navy);
}
.step h4 { font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 0.85rem; color: var(--gray-500); }

/* ===== TEAM ===== */
.team-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-100); box-shadow: var(--shadow); }
.team-card__photo { width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 4rem; background: var(--off-white); }
.team-card__info { padding: 20px; }
.team-card__name { font-weight: 700; color: var(--navy); }
.team-card__role { font-size: 0.8rem; color: var(--yellow); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

/* ===== CONTACT BOX ===== */
.contact-info-card { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 36px 32px; }
.contact-info-card h3 { color: var(--white); margin-bottom: 8px; }
.contact-info-card p { color: rgba(255,255,255,0.65); margin-bottom: 28px; }
.contact-line { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.contact-line:last-child { border: none; }
.contact-line__icon { width: 40px; height: 40px; background: rgba(245,196,0,0.15); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-line__label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--yellow); margin-bottom: 2px; }
.contact-line__value { font-size: 0.9rem; color: rgba(255,255,255,0.85); }

/* ============================================
   RESPONSIVE
   ============================================ */

/* ----- Tablette (≤ 900px) ----- */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
/* Navigation tablette */
.nav__links,
.nav__actions {
    display: none;
}

.nav__burger {
    display: block;
}

.nav__inner {
    height: var(--nav-h-mobile);
}
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .universes-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 14px !important; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .steps { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .steps::before { display: none; }

  .hero { padding: 72px 0 56px; }
  .hero__kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .hero__actions { gap: 12px; }

  .form-row { grid-template-columns: 1fr; }
}

/* ----- Mobile (≤ 640px) ----- */
@media (max-width: 640px) {
  .container { padding: 0 16px; }

  /* Nav */
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: block; }
  .nav__inner { height: var(--nav-h-mobile); }

  /* Grilles */
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .universes-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }

  /* Cartes univers produits */
  .universe-card { padding: 16px 14px; min-height: 160px; border-radius: 14px; }
  .universe-card__emoji { font-size: 1.8rem; }
  .universe-card__num { font-size: 0.7rem; }
  .universe-card__name { font-size: 0.95rem; line-height: 1.25; }
  .universe-card__sub { font-size: 0.76rem; line-height: 1.4; }

  /* Footer / formulaire */
  .footer__grid { grid-template-columns: 1fr; gap: 32px; text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 28px; }

  .section { padding: 48px 0; }
  .hero { padding: 48px 0 40px; }

  .hero h1 { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .hero p { font-size: 1rem; margin: 16px 0 28px; }

  .hero__actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero__actions .btn { width: 100%; }

  .hero__kpis { grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 40px; padding-top: 28px; }

  .cta-section { padding: 56px 0; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; }

  .certif-bar { flex-direction: column; }
  .certif-item { min-width: 0; }

  .footer__bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer__legal { justify-content: center; flex-wrap: wrap; gap: 12px; }

  .filter-chip { white-space: nowrap; }

  .contact-info-card, .card { padding: 24px 20px; }

  table { min-width: 480px; }
}

/* ----- Très petit mobile (≤ 380px) ----- */
@media (max-width: 380px) {
  .nav__logo-text { font-size: 1.3rem; }
  .universes-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .universe-card { padding: 14px 12px; min-height: 140px; }
  table { min-width: 440px; }
}