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

:root {
  --rouge: #c0272d;
  --rouge-deep: #961f24;
  --rouge-light: #d94048;
  --rouge-pale: #fdf0f0;
  --anthracite: #1c1c1c;
  --charcoal: #2e2e2e;
  --slate: #4a4a4a;
  --silver: #a0a0a0;
  --cream: #f8f6f2;
  --warm-white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #3a3a3a;
  --text-muted: #777;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Outfit", sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(28, 28, 28, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192, 39, 45, 0.3);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-emblem {
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  position: relative;
}
.nav-emblem::after {
  content: "";
  position: absolute;
  inset: -2px;
  border: 1px solid rgba(192, 39, 45, 0.4);
  border-radius: 3px;
}
.nav-name {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #f8f6f2;
  line-height: 1.2;
}
.nav-sub {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  display: block;
  color: #ff4646;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: #c8c6c2;
  text-decoration: none;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rouge);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-links a:hover {
  color: #f8f6f2;
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-cta {
  background: var(--rouge) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: var(--rouge-deep) !important;
}
.nav-cta::after {
  display: none !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--anthracite);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 65% 50%,
      rgba(192, 39, 45, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 10% 80%,
      rgba(192, 39, 45, 0.06) 0%,
      transparent 40%
    );
}
.hero-stripe {
  position: absolute;
  top: -100px;
  right: 360px;
  width: 2px;
  height: 200%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(192, 39, 45, 0.2),
    transparent
  );
  transform: rotate(15deg);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 100px;
}
.hero-kicker {
  order: 1;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rouge-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeInUp 0.5s ease both;
}
.hero-kicker::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--rouge);
}
.hero-title {
  order: 2;
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 700;
  color: #f8f6f2;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.5s ease 0.1s both;
}
.hero-title em {
  font-style: italic;
  color: var(--rouge-light);
}
.hero-desc {
  order: 3;
  font-size: 1rem;
  font-weight: 300;
  color: #c8c6c2;
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 40px;
  animation: fadeInUp 0.5s ease 0.2s both;
}
.hero-actions {
  display: flex;
  order: 4;
  gap: 16px;
  align-items: center;
  animation: fadeInUp 0.5s ease 0.3s both;
}
.btn-primary {
  background: var(--rouge);
  color: #fff;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-primary:hover {
  background: var(--rouge-deep);
  transform: translateY(-1px);
}
.btn-outline {
  color: #c8c6c2;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(248, 246, 242, 0.35);
  padding: 13px 24px;
  border-radius: 2px;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-outline:hover {
  border-color: rgba(248, 246, 242, 0.5);
  color: #f8f6f2;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 48px 100px;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-archere {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 40px rgba(192, 39, 45, 0.3));
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-stats {
  position: absolute;
  bottom: 48px;
  left: 64px;
  display: flex;
  gap: 48px;
  animation: fadeInUp 0.5s ease 0.5s both;
  list-style: none;
  padding: 0;
  margin: 0;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rouge-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #969696;
  margin-top: 4px;
}
.hero-badge {
  position: absolute;
  bottom: 48px;
  right: 48px;
  background: rgba(192, 39, 45, 0.15);
  border: 1px solid rgba(192, 39, 45, 0.35);
  border-radius: 4px;
  padding: 10px 18px;
  animation: fadeInUp 0.5s ease 0.6s both;
}
.hero-badge-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rouge-light);
  margin-bottom: 2px;
}
.hero-badge-text {
  font-size: 0.8rem;
  font-weight: 400;
  color: #c8c6c2;
}

/* ── SECTION COMMONS ── */
section {
  padding: 96px 48px;
}
.section-intro {
  display: flex;
  flex-direction: column;
}
.section-label {
  order: 1;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--rouge);
}
.section-title {
  order: 2;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-lead {
  order: 3;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 800px;
  margin-bottom: 56px;
}

/* ── DISCIPLINES ── */
#disciplines {
  background: var(--anthracite);
}
#disciplines .section-title {
  color: #f8f6f2;
}
#disciplines .section-lead {
  color: #c8c6c2;
}
.disc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.disc-card {
  background: var(--charcoal);
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.disc-card:hover {
  background: #363636;
}
.disc-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--rouge);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.disc-card:hover::after {
  transform: scaleX(1);
}
.disc-icon {
  font-size: 30px;
  margin-bottom: 18px;
  display: block;
}
.disc-name {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #f8f6f2;
  margin-bottom: 10px;
}
.disc-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: #c8c6c2;
  line-height: 1.7;
}
.disc-tag {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rouge-light);
  border: 1px solid rgba(192, 39, 45, 0.35);
  padding: 3px 10px;
  border-radius: 1px;
}

/* ── PARA ── */
#para {
  background: var(--rouge);
  padding: 64px 48px;
}
.para-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.para-intro {
  display: flex;
  flex-direction: column;
}

.para-kicker {
  order: 1;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.para-kicker::before {
  content: "";
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
}
.para-title {
  order: 2;
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.para-desc {
  order: 3;
  font-size: 1rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 28px;
}

.para-actions {
  order: 4;
  background: #fff;
  color: var(--rouge);
  padding: 13px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  width: max-content;
}
.btn-white:hover {
  background: #f0f0f0;
}
.para-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.para-pill {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.para-pill-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.para-pill-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}
.para-pill-sub {
  font-size: 0.8rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.5;
}

/* ── HORAIRES ── */
#horaires {
  background: var(--cream);
}
.horaires-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.jour-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  overflow: hidden;
}
.jour-header {
  background: var(--anthracite);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.jour-name {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #f8f6f2;
}
.jour-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rouge);
}
.creneaux {
  padding: 8px 0;
  list-style: none;
  margin: 0;
}
.creneau {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.creneau:last-child {
  border-bottom: none;
}
.creneau-time {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rouge);
  white-space: nowrap;
  min-width: 80px;
  padding-top: 1px;
}
.creneau-label {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.4;
}

/* ── TARIFS ── */
#tarifs {
  background: var(--anthracite);
}
#tarifs .section-title {
  color: #f8f6f2;
}
#tarifs .section-lead {
  color: #c8c6c2;
}
.tarifs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.tarif-group {
  background: var(--charcoal);
  border-radius: 4px;
  overflow: hidden;
}
.tarif-group-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.tarif-group-title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #f8f6f2;
}
.tarif-group-sub {
  font-size: 0.8rem;
  font-weight: 300;
  color: #c8c6c2;
  margin-top: 3px;
}
.tarif-rows {
  padding: 8px 0;
  list-style: none;
  margin: 0;
}
.tarif-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}
.tarif-row:last-child {
  border-bottom: none;
}
.tarif-row:hover {
  background: rgba(255, 255, 255, 0.03);
}
.tarif-row.highlight {
  background: rgba(192, 39, 45, 0.1);
}
.tarif-row-label {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(248, 246, 242, 0.8);
}
.tarif-row-sub {
  font-size: 0.8rem;
  font-weight: 300;
  color: #c8c6c2;
  margin-top: 2px;
}
.tarif-row-price {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ff7676;
  display: block;
}
.tarif-note {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(192, 39, 45, 0.08);
  border: 1px solid rgba(192, 39, 45, 0.2);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 300;
  color: #c8c6c2;
  line-height: 1.6;
}
.tarif-note strong {
  color: var(--rouge-light);
  font-weight: 500;
}

/* ── INSCRIPTION ── */
#inscription {
  background: #fff;
}
.inscription-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.info-block {
  margin-bottom: 28px;
}
.info-block-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 8px;
}
.info-block-content {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
}
.info-block-content a {
  color: var(--rouge);
  text-decoration: none;
}
.info-block-content a:hover {
  text-decoration: underline;
}
.form-wrap {
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 36px;
}
.form-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.form-row {
  margin-bottom: 18px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a5a5a;
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus {
  border-color: var(--rouge);
}
.form-submit {
  width: 100%;
  background: var(--rouge);
  color: #fff;
  padding: 14px;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 6px;
}
.form-submit:hover {
  background: var(--rouge-deep);
}

/* ── FOOTER ── */
footer {
  background: #111;
  padding: 56px 48px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-about {
  font-size: 0.9rem;
  font-weight: 300;
  color: #c8c6c2;
  line-height: 1.8;
  margin-top: 16px;
}
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ff5555;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  font-size: 0.9rem;
  font-weight: 300;
  color: #c8c6c2;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #f8f6f2;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #c8c6c2;
}
.footer-accent {
  color: var(--rouge);
  font-weight: 500;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ── Classes extraites des styles inline ─────────────────────────────────── */
.disc-card--para {
  border-left: 3px solid var(--rouge);
}

.disc-tag--nouveau {
  color: var(--rouge-light);
  border-color: rgba(192, 39, 45, 0.5);
}

.form-input[name="message"],
textarea.form-input {
  resize: vertical;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   Breakpoints : 1024px (tablette), 768px (mobile), 400px (petit mobile)
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Tablette ≤ 1024px ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Nav */
  nav {
    padding: 14px 24px;
  }

  /* Hero : colonne unique, image masquée */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content {
    padding: 100px 32px 48px;
  }
  .hero-visual {
    display: none;
  }
  .hero-stats {
    position: static;
    margin: 32px 32px 0;
    padding-bottom: 48px;
  }
  .hero-badge {
    position: static;
    display: inline-block;
    margin: 16px 32px 48px;
  }

  /* Sections */
  section {
    padding: 72px 32px;
  }
  #para {
    padding: 48px 32px;
  }

  /* Disciplines : 2 colonnes */
  .disc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Para */
  .para-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Horaires : 1 article par ligne sur tablette portrait */
  .horaires-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Tarifs : déjà 2 colonnes, OK */

  /* Inscription */
  .inscription-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Footer */
  footer {
    padding: 48px 32px 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ── Mobile ≤ 768px ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Nav : logo + liens empilés */
  nav {
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 20px;
  }
  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 6px 14px;
  }
  .nav-links a {
    font-size: 0.8rem;
  }
  .nav-cta {
    padding: 6px 14px !important;
  }

  /* Hero */
  .hero-content {
    padding: 80px 20px 40px;
  }
  .hero-desc {
    font-size: 0.9rem;
    max-width: 100%;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .btn-primary {
    text-align: center;
  }
  .btn-outline {
    justify-content: center;
  }
  .hero-stats {
    margin: 24px 20px 0;
    padding-bottom: 36px;
    gap: 24px;
    flex-wrap: wrap;
  }
  .hero-badge {
    margin: 12px 20px 36px;
  }

  /* Sections */
  section {
    padding: 56px 20px;
  }
  #para {
    padding: 40px 20px;
  }
  .section-lead {
    font-size: 0.9rem;
    margin-bottom: 32px;
  }

  /* Disciplines : 1 colonne */
  .disc-grid {
    grid-template-columns: 1fr;
  }
  .disc-card {
    padding: 28px 20px;
  }

  /* Para */
  .para-title {
    font-size: clamp(22px, 6vw, 32px);
  }
  .para-desc {
    font-size: 0.9rem;
  }
  .btn-white {
    display: block;
    text-align: center;
  }

  /* Horaires : 1 colonne */
  .horaires-grid {
    grid-template-columns: 1fr;
  }

  /* Tarifs : 1 colonne */
  .tarifs-grid {
    grid-template-columns: 1fr;
  }
  .tarif-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 14px 16px;
  }
  .tarif-row-price {
    font-size: 1.4rem;
  }

  /* Inscription */
  .inscription-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .form-wrap {
    padding: 24px 20px;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  footer {
    padding: 40px 20px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ── Petit mobile ≤ 400px ────────────────────────────────────────────────── */
@media (max-width: 400px) {
  nav {
    padding: 12px 16px;
  }
  .hero-content {
    padding: 72px 16px 32px;
  }
  .hero-stats {
    margin: 20px 16px 0;
    padding-bottom: 28px;
    gap: 20px;
  }
  .stat-num {
    font-size: 1.6rem;
  }
  .hero-badge {
    margin: 10px 16px 28px;
  }
  section {
    padding: 48px 16px;
  }
  #para {
    padding: 36px 16px;
  }
  footer {
    padding: 36px 16px 20px;
  }
}
