/* ============================================================
   YNOVEO — Site Web 2026
   CSS Global
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   CSS VARIABLES — Palette officielle Ynoveo / Plateforme Dragon
   ============================================================ */
:root {
  --blue-primary:   #4DC3E8;   /* navigation, boutons principaux */
  --orange-accent:  #F5A520;   /* CTA secondaires, icônes, surlignages */
  --navy-dark:      #1A3A6B;   /* Titres H1, textes forts, header fond sombre */
  --blue-mid:       #2B5EA7;   /* Sous-titres H2, liens actifs, bordures */
  --white:          #FFFFFF;
  --gray-light:     #F2F5FA;   /* Fond de sections alternantes, cartes */
  --gray-text-sec:  #555555;   /* Corps de texte secondaire, légendes */
  --gray-body:      #222222;   /* Corps de texte principal */

  --container-max:  1200px;
  --radius-sm:      8px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --transition:     0.3s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-body);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--white); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--navy-dark); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); color: var(--navy-dark); }
h4 { font-size: 1.1rem; color: var(--navy-dark); }

p { color: var(--gray-body); }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--gray-light);
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__tag {
  display: inline-block;
  background: rgba(77,195,232,0.12);
  color: var(--blue-primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

.section__title .accent {
  color: var(--blue-primary);
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--gray-text-sec);
  max-width: 680px;
  margin: 0 auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--blue-primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(77,195,232,0.35);
}

.btn--primary:hover {
  background: #3aaddb;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(77,195,232,0.45);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn--secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn--orange {
  background: var(--orange-accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(245,165,32,0.35);
}

.btn--orange:hover {
  background: #e0961a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,165,32,0.45);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy-dark);
  border-color: var(--navy-dark);
}

.btn--outline-navy:hover {
  background: var(--navy-dark);
  color: var(--white);
}

.btn--lg {
  padding: 18px 42px;
  font-size: 1.05rem;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.14);
}

.header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

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

.header__logo img {
  height: 44px;
  width: auto;
}

.header__logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: -0.5px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__link {
  display: block;
  padding: 7px 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-body);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
  color: var(--blue-primary);
  background: rgba(77,195,232,0.08);
}

.nav__link--dragon {
  background: rgba(245,165,32,0.1);
  color: var(--orange-accent);
  font-weight: 600;
  border: 1px solid rgba(245,165,32,0.3);
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
}

.nav__link--dragon:hover {
  background: var(--orange-accent);
  color: var(--white);
  border-color: var(--orange-accent);
}

.nav__dragon-logo {
  height: 18px;
  width: auto;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(66%) sepia(90%) saturate(500%) hue-rotate(1deg) brightness(105%);
}

.nav__link--dragon:hover .nav__dragon-logo {
  filter: brightness(0) invert(1);
}

.nav__link--cta {
  background: var(--blue-primary);
  color: var(--white) !important;
  border-radius: 100px;
  padding: 7px 16px;
}

.nav__link--cta:hover {
  background: #3aaddb;
  color: var(--white) !important;
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0f2548 60%, #1a3a6b 100%);
  padding: 160px 2rem 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(77,195,232,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 20%, rgba(245,165,32,0.06) 0%, transparent 60%);
}

.hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero__tag {
  display: inline-block;
  background: rgba(77,195,232,0.2);
  border: 1px solid rgba(77,195,232,0.4);
  color: var(--blue-primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s ease both;
}

.hero__title {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s ease 0.1s both;
}

.hero__title .accent-blue {
  color: var(--blue-primary);
}

.hero__title .accent-orange {
  color: var(--orange-accent);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 0.7s ease 0.3s both;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  animation: fadeUp 0.7s ease 0.4s both;
}

.hero__stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange-accent);
  line-height: 1;
}

.hero__stat span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.card__icon--blue {
  background: rgba(77,195,232,0.12);
  color: var(--blue-primary);
}

.card__icon--orange {
  background: rgba(245,165,32,0.12);
  color: var(--orange-accent);
}

.card__icon--navy {
  background: rgba(26,58,107,0.08);
  color: var(--navy-dark);
}

.card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}

.card__text {
  font-size: 0.95rem;
  color: var(--gray-text-sec);
  line-height: 1.7;
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: var(--navy-dark);
  padding: 48px 0;
}

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats-band__item strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange-accent);
  line-height: 1;
}

.stats-band__item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  display: block;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-mid) 100%);
  padding: 72px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial {
  background: var(--gray-light);
  border-left: 4px solid var(--orange-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 2rem 2.5rem;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--orange-accent);
  opacity: 0.2;
  position: absolute;
  top: -10px;
  left: 16px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gray-body);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial cite {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-text-sec);
  font-style: normal;
}

/* ============================================================
   ACCORDION / FAQ
   ============================================================ */
.faq-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.faq-item summary {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  transition: background var(--transition);
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--blue-primary);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  background: var(--gray-light);
}

.faq-item div {
  padding: 1.25rem 1.5rem;
  background: var(--gray-light);
  color: var(--gray-text-sec);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   BADGE / CHIPS
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge--blue {
  background: rgba(77,195,232,0.12);
  color: var(--blue-mid);
}

.badge--orange {
  background: rgba(245,165,32,0.12);
  color: var(--orange-accent);
}

/* ============================================================
   CHECK LIST
   ============================================================ */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-body);
}

.check-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-primary);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 0 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   SECTOR CARDS
   ============================================================ */
.sector-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--blue-primary);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: all var(--transition);
}

.sector-card:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.sector-card__icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.sector-card__name {
  font-weight: 700;
  color: var(--navy-dark);
}

/* ============================================================
   FORM STYLES
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--gray-body);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(77,195,232,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

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

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0f2548 100%);
  padding: 140px 2rem 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 90% 50%, rgba(77,195,232,0.1) 0%, transparent 70%);
}

.page-hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero__breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}

.page-hero__breadcrumb a {
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
}

.page-hero__breadcrumb a:hover {
  color: var(--blue-primary);
}

.page-hero__title {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 48px;
}

.footer__brand img {
  height: 40px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.footer__col-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--blue-primary);
}

.footer__dragon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,165,32,0.15);
  border: 1px solid rgba(245,165,32,0.3);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange-accent);
  transition: all var(--transition);
}

.footer__dragon-badge:hover {
  background: var(--orange-accent);
  color: var(--white);
}

/* Neutralise display:block (global img) et margin-bottom (footer__brand img) */
.footer__dragon-badge img {
  display: inline-block;
  margin-bottom: 0;
  height: 18px;
  width: auto;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom-inner p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   MISC UTILS
   ============================================================ */
.text-center { text-align: center; }
.text-orange { color: var(--orange-accent); }
.text-blue   { color: var(--blue-primary); }
.text-navy   { color: var(--navy-dark); }

.divider {
  width: 56px;
  height: 4px;
  background: var(--orange-accent);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(77,195,232,0.08) 0%, rgba(43,94,167,0.06) 100%);
  border: 1px solid rgba(77,195,232,0.2);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1;
}

.stat-item span {
  font-size: 0.88rem;
  color: var(--gray-text-sec);
  margin-top: 4px;
  display: block;
}

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

/* ---- Tablette large (≤ 1024px) ---- */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-band__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Nav : hamburger dès 1024px car trop d'items */
  .nav__toggle { display: flex; }

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }

  .nav.open {
    max-height: 700px;
    padding: 1rem 0 1.5rem;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 1.5rem;
  }

  .nav__link {
    padding: 12px 8px;
    width: 100%;
    border-radius: 0;
  }

  /* Le bouton Dragon garde son style mais prend toute la largeur */
  .nav__link--dragon {
    border-radius: var(--radius-sm);
    margin-top: 0.5rem;
  }
}

/* ---- Mobile (≤ 768px) ---- */
@media (max-width: 768px) {
  .section { padding: 56px 0; }

  .hero { padding: 120px 1.5rem 72px; }
  .hero__stats { gap: 1.5rem; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }

  .page-hero { padding: 120px 1.5rem 56px; }

  /* Boutons : autoriser le texte long à passer sur plusieurs lignes */
  .btn { white-space: normal; word-break: break-word; text-align: center; }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .stats-band__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-banner { padding: 48px 0; }
}

/* ---- Petit mobile (≤ 480px) ---- */
@media (max-width: 480px) {
  .hero__title { font-size: 1.9rem; }
  .btn--lg { padding: 14px 28px; font-size: 0.95rem; }
  .hero__ctas .btn { width: 100%; text-align: center; justify-content: center; }
  .stats-band__grid { grid-template-columns: 1fr 1fr; }
}
