/* ============================================================
   PANDACADEMY — Landing Page Styles
   ------------------------------------------------------------
   Palette :
     Orange principal  : #F28C28
     Brun              : #5C3A21
     Crème             : #FFF4E6
     Bleu nuit footer  : #081B33
     Blanc             : #FFFFFF
   Polices :
     Titres  : Baloo 2 (Google Fonts)
     Textes  : Nunito (Google Fonts)
   ============================================================ */


/* ============================================================
   1. VARIABLES & RESET
   ============================================================ */

:root {
  /* Couleurs */
  --orange:        #F28C28;
  --orange-dark:   #D97A1E;
  --orange-light:  #FFF0DC;
  --orange-glow:   rgba(242, 140, 40, 0.25);
  --brown:         #5C3A21;
  --brown-light:   #8B5E3C;
  --cream:         #FFF4E6;
  --cream-dark:    #F5E8D0;
  --navy:          #081B33;
  --navy-mid:      #0D2040;
  --white:         #FFFFFF;
  --text:          #1A1A1A;
  --text-mid:      #4D4D4D;
  --text-soft:     #888888;
  --border:        #ECDBC5;

  /* Polices */
  --font-title: 'Baloo 2', cursive;
  --font-body:  'Nunito', sans-serif;

  /* Arrondis */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 9999px;

  /* Ombres (teinte chaude) */
  --shadow-xs: 0 1px 4px rgba(92, 58, 33, 0.06);
  --shadow-sm: 0 2px 10px rgba(92, 58, 33, 0.09);
  --shadow-md: 0 6px 24px rgba(92, 58, 33, 0.12);
  --shadow-lg: 0 12px 48px rgba(92, 58, 33, 0.16);
  --shadow-orange: 0 6px 24px rgba(242, 140, 40, 0.35);
  --shadow-dark: 0 8px 32px rgba(8, 27, 51, 0.25);

  /* Transitions */
  --t: 0.28s ease;
  --t-slow: 0.5s ease;

  /* Layout */
  --max-w: 1180px;
  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
}

sup {
  font-size: 0.65em;
  vertical-align: super;
}

[hidden] { display: none !important; }


/* ============================================================
   2. SCROLLBAR
   ============================================================ */

::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: var(--r-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--orange-dark);
}


/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}


/* ============================================================
   4. BOUTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.97rem;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
  white-space: nowrap;
  text-align: center;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(242, 140, 40, 0.45);
}

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

.btn--outline-white:hover,
.btn--outline-white:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 34px;
  font-size: 1.05rem;
}

.btn--full {
  width: 100%;
}

/* Focus visible accessible */
.btn:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}


/* ============================================================
   5. SECTIONS BASE
   ============================================================ */

.section {
  padding: 100px 0;
}

.section--cream {
  background-color: var(--cream);
}

.section--dark {
  background: linear-gradient(145deg, #0A1728 0%, #1a0a40 50%, #0A1728 100%);
  position: relative;
  overflow: hidden;
}

.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 50%, rgba(242, 140, 40, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 90% 20%, rgba(130, 80, 220, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Header de section (titre + sous-titre centré) */
.section__header {
  text-align: center;
  margin-bottom: 64px;
}

/* Label pilule orange */
.section__label {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}

.section__label--light {
  background: rgba(242, 140, 40, 0.18);
  color: var(--orange);
}

.section__label--glow {
  background: rgba(242, 140, 40, 0.15);
  color: #FFB46A;
  border: 1px solid rgba(242, 140, 40, 0.3);
}

/* Titre de section */
.section__title {
  font-family: var(--font-title);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--brown);
  line-height: 1.18;
  margin-bottom: 18px;
}

.section__title--white {
  color: var(--white);
}

/* Sous-titre */
.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}


/* ============================================================
   6. ANIMATIONS
   ============================================================ */

/* Reveal au scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animation entrée hero */
.animate-in {
  animation: fadeSlideUp 0.9s ease both;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Flottement des mascottes */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

/* Pulse pour scroll indicator */
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}


/* ============================================================
   7. HEADER
   ============================================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  background: transparent;
  transition: background var(--t), backdrop-filter var(--t), box-shadow var(--t);
}

.header.scrolled {
  background: rgba(255, 244, 230, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-xs);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* Logo — pill blanc sur fond sombre, disparaît sur fond crème au scroll */
.header__logo {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 5px 12px;
  transition: background var(--t), padding var(--t), border-radius var(--t);
  flex-shrink: 0;
}

.header.scrolled .header__logo {
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.header__logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Navigation */
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__nav-link {
  font-weight: 600;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 13px;
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
}

.header.scrolled .header__nav-link {
  color: var(--brown);
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--orange);
  background: var(--orange-light);
}

.header__nav-link:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* CTA header */
.header__cta {
  padding: 10px 20px;
  font-size: 0.88rem;
  flex-shrink: 0;
}

/* Burger (mobile) */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: background var(--t);
  flex-shrink: 0;
}

.header__burger:hover {
  background: var(--orange-light);
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

.header.scrolled .header__burger span {
  background: var(--brown);
}

.header__burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   8. HERO
   ============================================================ */

.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0A1020;
}

/* Image hero en balise img pour contrôle précis du cadrage */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

/* Double overlay : léger en haut (lisibilité badge) + gradient latéral gauche */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(4, 10, 22, 0.30) 0%, transparent 22%),
    linear-gradient(
      to right,
      rgba(4, 10, 22, 0.86) 0%,
      rgba(4, 10, 22, 0.68) 32%,
      rgba(4, 10, 22, 0.18) 62%,
      transparent 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  padding-top: var(--header-h);
}

.hero__text {
  max-width: 600px;
}

/* Pilule "bientôt disponible" */
.hero__badge {
  display: inline-block;
  background: rgba(242, 140, 40, 0.2);
  color: #FFB46A;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 7px 18px;
  border-radius: var(--r-full);
  border: 1px solid rgba(242, 140, 40, 0.4);
  margin-bottom: 28px;
}

/* Grand titre hero */
.hero__title {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero__title--orange {
  color: var(--orange);
  text-shadow: 0 2px 20px rgba(242, 140, 40, 0.4);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Flèche scroll */
.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}

.hero__scroll-hint span {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
}


/* ============================================================
   9. SECTION POURQUOI
   ============================================================ */

.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.why__visual {
  display: flex;
  justify-content: center;
}

.why__image {
  width: 100%;
  height: 100%;
  max-width: 460px;
  animation: float 4.5s ease-in-out infinite;
  filter: drop-shadow(0 24px 40px rgba(92, 58, 33, 0.15));
}

.why__content .section__label {
  display: inline-block;
  margin-bottom: 14px;
}

.why__content .section__title {
  text-align: left;
}

.why__text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 40px;
}

/* Grille des 6 bénéfices */
.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--white);
  padding: 13px 16px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--t), box-shadow var(--t);
}

.benefit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.benefit__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.benefit__text {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--brown);
  line-height: 1.3;
}


/* ============================================================
   10. LES MASCOTTES
   ============================================================ */

.mascottes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mascotte-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--t), box-shadow var(--t);
  background: var(--white);
}

.mascotte-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

/* Zone image avec gradient pastel */
.mascotte-card__visual {
  height: 300px;
  display: block;
  align-items: flex-end;
  justify-content: center;
  padding: 24px 16px 0;
  position: relative;
  overflow: hidden;
}

.mascotte-card--orange .mascotte-card__visual {
  background: linear-gradient(160deg, #FFF8F0 0%, #FFE4B5 100%);
}
.mascotte-card--pink .mascotte-card__visual {
  background: linear-gradient(160deg, #FFF0F5 0%, #FFD6E8 100%);
}
.mascotte-card--blue .mascotte-card__visual {
  background: linear-gradient(160deg, #F0F4FF 0%, #C8D8FF 100%);
}
.mascotte-card--purple .mascotte-card__visual {
  background: linear-gradient(160deg, #F5F0FF 0%, #DCCFFF 100%);
}

.mascotte-card__image {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: bottom center;
  transition: transform var(--t-slow);
}

.mascotte-card:hover .mascotte-card__image {
  transform: scale(1.06) translateY(-4px);
}

/* Texte de la carte */
.mascotte-card__body {
  padding: 20px 22px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.mascotte-card__name {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 3px;
  line-height: 1;
}

.mascotte-card--orange .mascotte-card__name { color: #C25A00; }
.mascotte-card--pink   .mascotte-card__name { color: #B5005C; }
.mascotte-card--blue   .mascotte-card__name { color: #1040A0; }
.mascotte-card--purple .mascotte-card__name { color: #5C1A9C; }

.mascotte-card__role {
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mascotte-card--orange .mascotte-card__role { color: var(--orange); }
.mascotte-card--pink   .mascotte-card__role { color: #E91E8C; }
.mascotte-card--blue   .mascotte-card__role { color: #2962FF; }
.mascotte-card--purple .mascotte-card__role { color: #7C3AED; }

.mascotte-card__desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}


/* ============================================================
   11. FONCTIONNALITÉS
   ============================================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--orange), #FFB347);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-card__icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}

.feature-card__title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 12px;
}

.feature-card__text {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.75;
}


/* ============================================================
   12. APERÇU — MOCKUPS TÉLÉPHONES
   ============================================================ */

.mockups-scene {
  position: relative;
}

.mockups-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: end;
}

.mockup-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

/* Le mockup central est un peu plus grand */
.mockup-card--featured .mockup-phone {
  transform: scale(1.06);
  transform-origin: bottom center;
}

/* Corps du téléphone */
.mockup-phone {
  width: 100%;
  max-width: 252px;
  background: #14233A;
  border-radius: 40px;
  padding: 14px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 24px 64px rgba(8, 27, 51, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  position: relative;
}

/* Encoche caméra */
.mockup-phone__notch {
  width: 72px;
  height: 6px;
  background: #0A1728;
  border-radius: 3px;
  margin: 0 auto 10px;
  display: none;
}

.mockup-phone__screen {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
}

/* Styles partagés des écrans app */
.app-screen {
  padding: 14px;
  min-height: 440px;
}

.app-card-label {
  font-weight: 800;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brown);
  margin-bottom: 6px;
}

/* — Dashboard — */
.app-screen--dashboard {
  background: var(--cream);
}

.app-topbar {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  padding: 10px 12px;
  border-radius: 16px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-xs);
}

.app-avatar {
  font-size: 1.7rem;
  line-height: 1;
}

.app-topbar__info {
  flex: 1;
  min-width: 0;
}

.app-greeting {
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--brown);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-streak {
  font-size: 0.65rem;
  color: var(--text-soft);
  margin-top: 1px;
}

.app-xp-badge {
  background: var(--orange-light);
  color: var(--orange);
  font-weight: 800;
  font-size: 0.68rem;
  padding: 3px 8px;
  border-radius: var(--r-full);
  white-space: nowrap;
  flex-shrink: 0;
}

.app-progress-card {
  background: var(--white);
  padding: 11px 12px;
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-xs);
}

.app-progress-bar {
  height: 7px;
  background: #EAE0D5;
  border-radius: var(--r-full);
  overflow: hidden;
  margin-bottom: 5px;
}

.app-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #FFB347);
  border-radius: var(--r-full);
}

.app-progress-text {
  font-size: 0.66rem;
  color: var(--orange);
  font-weight: 700;
}

.app-missions {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.app-mission {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 8px 11px;
  border-radius: 11px;
  box-shadow: var(--shadow-xs);
}

.app-mission--done {
  opacity: 0.55;
  text-decoration: line-through;
}

.app-mission__ico {
  font-size: 0.95rem;
  flex-shrink: 0;
}

.app-mission__name {
  font-size: 0.68rem;
  color: var(--text-mid);
  flex: 1;
  font-weight: 600;
}

.app-mission__xp {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--orange);
  background: var(--orange-light);
  padding: 2px 6px;
  border-radius: var(--r-full);
  flex-shrink: 0;
}

/* — Badges — */
.app-screen--badges {
  background: linear-gradient(160deg, #1A004A 0%, #2D0070 100%);
  padding: 14px;
}

.app-screen-title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
}

.app-screen-sub {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.app-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.app-badge {
  aspect-ratio: 1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: transform var(--t);
}

.app-badge:hover {
  transform: scale(1.1);
}

.app-badge--gold {
  background: rgba(255, 200, 60, 0.18);
  border: 1px solid rgba(255, 200, 60, 0.35);
  box-shadow: 0 2px 8px rgba(255, 200, 0, 0.1);
}

.app-badge--locked {
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  opacity: 0.4;
}

.app-badge-spotlight {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-badge-spotlight .app-card-label {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.app-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-badge-big {
  font-size: 1.8rem;
  background: rgba(255, 200, 60, 0.2);
  padding: 7px;
  border-radius: 12px;
}

.app-badge-name {
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--white);
}

.app-badge-when {
  font-size: 0.64rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

/* — Suivi parent — */
.app-screen--parent {
  background: linear-gradient(160deg, #F0FFF4 0%, #D8F5E4 100%);
}

.app-screen--parent .app-screen-title {
  color: var(--brown);
  margin-bottom: 12px;
}

.app-child-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 10px 12px;
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-xs);
}

.app-child-ava {
  font-size: 1.6rem;
  line-height: 1;
}

.app-child-name {
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--brown);
}

.app-child-streak {
  font-size: 0.65rem;
  color: var(--text-soft);
  margin-top: 1px;
}

.app-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 14px;
}

.app-stat {
  background: var(--white);
  padding: 9px 6px;
  border-radius: 11px;
  text-align: center;
  box-shadow: var(--shadow-xs);
}

.app-stat-val {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.86rem;
  color: var(--orange);
  line-height: 1;
}

.app-stat-lbl {
  font-size: 0.58rem;
  color: var(--text-soft);
  margin-top: 2px;
  line-height: 1.2;
}

.app-skill {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
}

.app-skill-name {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--brown);
  width: 52px;
  flex-shrink: 0;
}

.app-skill-bar {
  flex: 1;
  height: 6px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: var(--r-full);
  overflow: hidden;
}

.app-skill-fill {
  height: 100%;
  background: var(--orange);
  border-radius: var(--r-full);
}

.app-skill-fill--pink { background: #E91E8C; }
.app-skill-fill--blue { background: #2962FF; }

.app-skill-pct {
  font-size: 0.64rem;
  font-weight: 800;
  color: var(--brown);
  width: 26px;
  text-align: right;
  flex-shrink: 0;
}

/* Label sous le téléphone */
.mockup-card__label {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--brown);
  text-align: center;
}

/* ============================================================
   12b. MOCKUP — COMPOSANTS GAMIFIÉS PANDACADEMY
   ============================================================ */

/* Barre XP / Niveau */
.app-level-card {
  background: var(--white);
  padding: 10px 12px;
  border-radius: 14px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-xs);
}

.app-level-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.app-level-label {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--brown);
}

.app-level-next {
  font-size: 0.62rem;
  color: var(--text-soft);
}

/* Carte quête principale */
.app-quest-card {
  background: linear-gradient(135deg, var(--orange) 0%, #FFB347 100%);
  border-radius: 14px;
  padding: 11px 12px;
  margin-bottom: 10px;
  box-shadow: 0 4px 14px rgba(242, 140, 40, 0.3);
}

.app-quest-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.app-quest-ico {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.app-quest-title {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.app-quest-name {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--white);
  line-height: 1.1;
}

.app-quest-xp {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-weight: 800;
  font-size: 0.65rem;
  padding: 3px 7px;
  border-radius: var(--r-full);
  white-space: nowrap;
  flex-shrink: 0;
}

.app-quest-steps {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 3px;
}

.app-step {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--white);
  font-weight: 800;
}

.app-step--done { background: rgba(255, 255, 255, 0.5); }
.app-step--active { background: var(--white); color: var(--orange); }

.app-quest-sub {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

/* Liste des parcours */
.app-parcours {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.app-parcour {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  padding: 8px 10px;
  border-radius: 11px;
  box-shadow: var(--shadow-xs);
  font-size: 0.95rem;
}

.app-parcour__info {
  flex: 1;
  min-width: 0;
}

.app-parcour__name {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-parcour__lvl {
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--orange);
  background: var(--orange-light);
  padding: 2px 5px;
  border-radius: var(--r-full);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Badges par catégorie */
.app-badge-cat {
  margin-bottom: 10px;
}

.app-badge-cat-label {
  font-size: 0.64rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}

.app-badges-row {
  display: flex;
  gap: 6px;
}

.app-badges-row .app-badge {
  flex: 1;
  aspect-ratio: 1;
}

/* Niveau de l'enfant (espace parent) */
.app-child-level {
  margin-left: auto;
  background: var(--orange-light);
  color: var(--orange);
  font-weight: 800;
  font-size: 0.62rem;
  padding: 3px 7px;
  border-radius: var(--r-full);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Objectifs de la semaine */
.app-goals {
  background: var(--white);
  border-radius: 12px;
  padding: 10px 11px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-xs);
}

.app-goals .app-card-label {
  margin-bottom: 7px;
}

.app-goal {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.64rem;
  color: var(--text-mid);
  font-weight: 600;
  padding: 4px 0;
}

.app-goal > span:first-child { font-size: 0.75rem; flex-shrink: 0; }
.app-goal > span:nth-child(2) { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.app-goal-done { font-weight: 800; color: #2E7D32; font-size: 0.62rem; flex-shrink: 0; }
.app-goal-prog { font-weight: 800; color: var(--orange); font-size: 0.62rem; flex-shrink: 0; }

/* ============================================================
   13. LISTE D'ATTENTE
   ============================================================ */

.waitlist {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 80px;
  align-items: center;
  flex-direction: column;
  max-width: 700px;
  margin: auto;
}

/* Colonne gauche */
.waitlist__left .section__title {
  text-align: left;
  margin-bottom: 20px;
}

.waitlist__left .section__label {
  display: inline-block;
  margin-bottom: 16px;
}

.waitlist__text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.waitlist__perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.waitlist__perks li {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 0.97rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.waitlist__mascotte {
  display: flex;
  justify-content: flex-start;
  padding-left: 20px;
}

.waitlist__mascotte-img {
  height: 180px;
  width: auto;
  object-fit: contain;
  animation: float 3.5s ease-in-out infinite;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.35));
  margin: auto;
}

/* Formulaire */
.waitlist__form-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-dark);
}

.waitlist__form-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 32px;
  text-align: center;
}

/* Groupes de champs */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 8px;
}

.form-required {
  color: var(--orange);
}

.form-input {
  width: 100%;
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-md);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.97rem;
  outline: none;
  transition: border-color var(--t), background var(--t);
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-input:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.1);
}

.form-input.is-invalid {
  border-color: #FF6B6B;
  background: rgba(255, 107, 107, 0.07);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}

.form-select option {
  background: #1a0a40;
  color: var(--white);
}

.form-error {
  font-size: 0.8rem;
  color: #FF8080;
  margin-top: 6px;
}

.form-rgpd {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.form-rgpd-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
}

.form-rgpd-link:hover {
  color: var(--orange);
}

/* Honeypot anti-spam — invisible pour les vrais utilisateurs */
.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

/* Message de succès */
.waitlist__success {
  text-align: center;
  padding: 20px 0;
  animation: fadeSlideUp 0.5s ease both;
}

.waitlist__success-icon {
  font-size: 3.2rem;
  margin-bottom: 16px;
  animation: float 3s ease-in-out infinite;
  display: block;
}

.waitlist__success-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.waitlist__success-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Boutons de partage */
.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 4px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  white-space: nowrap;
}

.share-btn:hover  { transform: translateY(-2px); }
.share-btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.share-btn__icon { font-size: 1rem; line-height: 1; }

.share-btn--copy {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.share-btn--copy:hover { background: rgba(255,255,255,0.22); }

.share-btn--whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
}
.share-btn--whatsapp:hover { background: #1ebe5a; box-shadow: 0 6px 18px rgba(37,211,102,.45); }

.share-btn--email {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.share-btn--email:hover { background: rgba(255,255,255,0.18); }

.share-btn--native {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(242,140,40,.35);
}
.share-btn--native:hover { background: var(--orange-dark); box-shadow: 0 6px 18px rgba(242,140,40,.45); }

/* ============================================================
   13b. BLOC EXPLORATEURS (au-dessus du formulaire)
   ============================================================ */

.waitlist__intro {
  text-align: center;
  margin-bottom: 64px;
}

.waitlist__intro-header {
  max-width: 640px;
  margin: 0 auto 40px;
}

.waitlist__intro-header .section__title {
  text-align: center;
  margin-bottom: 16px;
}

.waitlist__intro-header .section__label {
  display: inline-block;
  margin-bottom: 16px;
}

.waitlist__intro-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.02rem;
  line-height: 1.8;
}

.explorer-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto 20px;
}

.explorer-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  text-align: center;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
}

.explorer-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
}

.explorer-card__num {
  display: block;
  font-family: var(--font-title);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(242,140,40,.35);
}

.explorer-card__title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.explorer-card__text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.explorer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  margin-top: 4px;
}

.waitlist-counter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(242, 140, 40, 0.15);
  border: 1px solid rgba(242, 140, 40, 0.35);
  border-radius: var(--r-full);
  padding: 10px 28px;
  margin: 0 auto 32px;
}

.waitlist-counter__num {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.waitlist-counter__label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.explorer-card--premium {
  text-align: left;
}

.explorer-card__emoji {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}

.explorer-card__list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.explorer-card__list li {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.explorer-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.waitlist__success-rank {
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 6px;
}

/* ============================================================
   13c. CLASSES CHECKBOXES
   ============================================================ */

.form-fieldset {
  border: none;
  padding: 0;
  margin: 0;
  min-width: 0;
}

.form-fieldset legend {
  float: left; /* trick pour que le legend se comporte comme un div */
  width: 100%;
  padding: 0;
  margin-bottom: 6px;
}

.form-fieldset legend + * { clear: both; }

.form-hint {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
  line-height: 1.5;
}

.classes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}

.class-label {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
}

/* Masquer la vraie checkbox tout en la gardant accessible */
.class-cb {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Pill visuelle */
.class-label span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 4px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  transition: background var(--t), border-color var(--t), color var(--t), box-shadow var(--t);
}

.class-label:hover span {
  background: rgba(242, 140, 40, 0.15);
  border-color: var(--orange);
  color: var(--white);
}

/* État coché */
.class-cb:checked + span {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 3px 10px rgba(242, 140, 40, 0.4);
}

/* Focus visible pour l'accessibilité clavier */
.class-cb:focus-visible + span {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* État erreur fieldset */
.form-fieldset.is-invalid .class-label span {
  border-color: rgba(220, 53, 69, 0.5);
}

.form-fieldset.is-invalid legend {
  color: #ff6b7a;
}


/* ============================================================
   14. FAQ
   ============================================================ */

.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--t);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brown);
  text-align: left;
  transition: background var(--t), color var(--t);
}

.faq-item__question:hover {
  background: var(--orange-light);
}

.faq-item__question[aria-expanded="true"] {
  background: var(--orange-light);
  color: var(--orange-dark);
}

.faq-item__question:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: -2px;
}

.faq-item__icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform var(--t);
  line-height: 1;
  user-select: none;
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 26px;
  border-top: 1px solid transparent;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.3s ease, border-color 0.3s ease;
}

.faq-item.is-open .faq-item__answer {
  max-height: 500px;
  opacity: 1;
  padding: 0 26px 20px;
  border-top-color: var(--border);
}

.faq-item__answer p {
  color: var(--text-mid);
  line-height: 1.8;
  font-size: 0.95rem;
  padding-top: 16px;
}


/* ============================================================
   15. À PROPOS
   ============================================================ */

.about__content {
  display: grid;
  grid-template-columns: 50% auto;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}

.about__text-block {
  max-width: fit-content;
}

.about__text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about__text strong {
  color: var(--brown);
  font-weight: 700;
}

.about__visual {
  flex-shrink: 0;
}

.about__image {
  height: 80%;
  width: auto;
  object-fit: contain;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 12px 24px rgba(92, 58, 33, 0.12));
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  padding: 28px 20px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform var(--t), box-shadow var(--t);
}

.about__stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about__stat-number {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.about__stat-label {
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 600;
}


/* ============================================================
   16. FOOTER
   ============================================================ */

.footer {
  background: var(--navy);
  padding: 88px 0 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 48px;
  margin-bottom: 64px;
}

/* Logo footer — conteneur blanc arrondi pour logo avec fond blanc */
.footer__logo-wrap {
  display: inline-block;
  background: var(--white);
  border-radius: 14px;
  padding: 8px 16px;
  margin-bottom: 20px;
}

.footer__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: none;
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer__socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.footer__socials-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__socials-links {
  display: flex;
  gap: 10px;
}

.footer__social {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: background var(--t), transform var(--t), border-color var(--t), color var(--t);
  text-decoration: none;
}

.footer__social:hover {
  background: rgba(242, 140, 40, 0.18);
  border-color: rgba(242, 140, 40, 0.55);
  color: var(--white);
  transform: scale(1.1);
}

.footer__nav-title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav-link {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  transition: color var(--t);
  line-height: 1.5;
}

.footer__nav-link:hover {
  color: var(--orange);
}

.footer__email {
  word-break: break-all;
}

.footer__response-time {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  font-style: italic;
}

.footer__cta-btn {
  margin-top: 20px;
  padding: 11px 18px;
  font-size: 0.85rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  text-align: center;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
}


/* ============================================================
   17. TRUST BAR
   ============================================================ */

.trust-bar {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.trust-bar__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
  list-style: none;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.trust-bar__icon {
  font-size: 1.15rem;
  line-height: 1;
}

.trust-bar__text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brown);
}


/* ============================================================
   18. STEPS — COMMENT ÇA MARCHE
   ============================================================ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}

.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-card--featured {
  background: linear-gradient(135deg, var(--orange-light) 0%, #fff8ee 100%);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}

.step-card--featured:hover {
  box-shadow: 0 12px 36px rgba(242, 140, 40, 0.28);
}

.step-card__number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 800;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(242, 140, 40, 0.4);
}

.step-card__icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.step-card__title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 12px;
  line-height: 1.4;
}

.step-card__text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}


/* ============================================================
   19. MASCOTTE QUOTE
   ============================================================ */

.mascotte-card__quote {
  font-style: italic;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 10px;
  line-height: 1.5;
}

.mascotte-card--orange .mascotte-card__quote { color: var(--orange); }
.mascotte-card--pink   .mascotte-card__quote { color: #E91E8C; }
.mascotte-card--blue   .mascotte-card__quote { color: #2962FF; }
.mascotte-card--purple .mascotte-card__quote { color: #7C3AED; }

/* Float animation on mascotte images */
.mascotte-card__image {
  animation: float 4s ease-in-out infinite;
}
.mascotte-card:nth-child(2) .mascotte-card__image { animation-delay: -1s; }
.mascotte-card:nth-child(3) .mascotte-card__image { animation-delay: -2s; }
.mascotte-card:nth-child(4) .mascotte-card__image { animation-delay: -3s; }


/* ============================================================
   20. APP MOCKUP — NOUVEAUX ÉLÉMENTS V2
   ============================================================ */

/* Badge récent (dashboard enfant) */
.app-recent-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #fff8ee 0%, var(--orange-light) 100%);
  border: 1px solid rgba(242, 140, 40, 0.25);
  border-radius: var(--r-sm);
  padding: 8px 10px;
  margin-top: 8px;
}

.app-recent-badge__ico {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.app-recent-badge__label {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 2px;
}

.app-recent-badge__name {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange-dark);
  line-height: 1.2;
}

/* Dernier progrès (dashboard parent) */
.app-last-progress {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 8px;
  padding: 8px 10px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--r-sm);
  font-size: 0.65rem;
  color: #166534;
  line-height: 1.4;
}

.app-last-progress p { color: #166534; }
.app-last-progress strong { font-weight: 700; }


/* ============================================================
   21. TRUST GRID — SÉCURITÉ & CONFIANCE
   ============================================================ */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.trust-card__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 16px;
}

.trust-card__title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 10px;
  line-height: 1.35;
}

.trust-card__text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.trust-card__link {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}

.trust-card__link:hover {
  text-decoration: underline;
}


/* ============================================================
   22. FORMULAIRE V2 — LIGNE & CHECKBOX
   ============================================================ */

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

.form-group--checkbox {
  margin-top: 4px;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}

.form-checkbox {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
  cursor: pointer;
}

.form-checkbox:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}


/* ============================================================
   23. FOOTER — LOGO TEXTE
   ============================================================ */

.footer__logo-text {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brown);
  letter-spacing: -0.01em;
  display: block;
}


/* ============================================================
   24. RESPONSIVE — TABLETTE (≤ 1080px)
   ============================================================ */

@media (max-width: 1080px) {
  :root {
    --header-h: 72px;
  }

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

  .why {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why__image {
    max-width: 380px;
    margin: 0 auto;
  }

  .why__content .section__title {
    text-align: center;
  }

  .why__content .section__label {
    display: block;
    text-align: center;
  }

  .why__text {
    text-align: center;
  }

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

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__visual {
    display: flex;
    justify-content: center;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

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


/* ============================================================
   18. RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  /* Header mobile */
  .header__nav,
  .header__cta {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  /* Navigation mobile ouverte */
  .header__nav.open {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 20px 24px 28px;
    box-shadow: var(--shadow-lg);
    border-top: 1.5px solid var(--border);
    animation: fadeSlideUp 0.25s ease both;
  }

  .header__nav.open .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 2px;
  }

  .header__nav.open .header__nav-link {
    color: var(--brown);
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
    border-radius: var(--r-sm);
  }

  .header__nav.open .header__nav-link:hover {
    background: var(--orange-light);
    color: var(--orange);
  }

  /* Hero mobile */
  .hero__bg {
    object-position: 35% top;
  }

  .hero__title {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Section header */
  .section__header {
    margin-bottom: 44px;
  }

  /* Mascottes */
  .mascottes-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .mascotte-card__visual {
    height: 220px;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Mockups — défilement horizontal sur mobile */
  .mockups-grid {
    grid-template-columns: repeat(3, 220px);
    gap: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 16px;
  }

  .mockups-grid::-webkit-scrollbar {
    display: none;
  }

  .mockup-card--featured .mockup-phone {
    transform: scale(1);
  }

  .mockup-phone {
    max-width: 220px;
  }

  /* Waitlist */
  .waitlist {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .waitlist__left .section__title {
    text-align: center;
  }

  .waitlist__left .section__label {
    display: block;
    text-align: center;
  }

  .waitlist__text {
    text-align: center;
  }

  .waitlist__perks {
    align-items: flex-start;
    padding: 0 12px;
  }

  .waitlist__mascotte {
    justify-content: center;
    padding: 0;
  }

  .waitlist__form-card {
    padding: 28px 22px;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Trust grid */
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  /* Explorer cards */
  .explorer-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .waitlist__intro {
    margin-bottom: 44px;
  }

  /* Classes grid : 3 colonnes sur tablette */
  .classes-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Share buttons */
  .share-actions {
    gap: 8px;
  }

  /* À propos */
  .about__stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Footer */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__socials {
    align-items: center;
  }

  .footer__cta-btn {
    display: none;
  }

  /* Bénéfices */
  .benefits {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   19. RESPONSIVE — PETIT MOBILE (≤ 480px)
   ============================================================ */

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .mascottes-grid {
    grid-template-columns: 1fr;
  }

  .hero__badge {
    font-size: 0.75rem;
  }

  .header__logo img {
    height: 42px;
  }

  .waitlist__form-card {
    border-radius: var(--r-lg);
    padding: 22px 16px;
  }

  /* Classes grid : 3 colonnes sur petit mobile */
  .classes-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .class-label span {
    font-size: 0.78rem;
    padding: 7px 2px;
  }

  /* Share buttons : 2 colonnes */
  .share-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .explorer-card__num {
    font-size: 2rem;
  }

  .faq-item__question {
    padding: 16px 18px;
    font-size: 0.92rem;
  }
}
