/* style.css */
:root {
  --blue: #1267ff;
  --deep: #070a25;
  --white: #fff;
  --text: #0a1a44;

  --btn-h: 56px;
  --btn-pad: 0 34px;
  --btn-radius: 999px;

  --orange1: #ffb020;
  --orange2: #ff7a1a;
  --red-shadow: #cf0000;
  --red-inset-shadow: #ff007f;

  --header-height: 66px;


  --container: 1120px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: var(--text);
}

img,
iframe {
  display: block;
  max-width: 100%
}

a {
  text-decoration: none;
  color: inherit
}

button {
  font: inherit
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto
}

.center {
  display: flex;
  justify-content: center
}

.align-left {
  text-align: left
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: #1267ff;
  transition:
    background .25s ease,
    box-shadow .25s ease,
    backdrop-filter .25s ease;

}

.site-header.is-scrolled {
  background: linear-gradient(180deg,
      #2b6dff 0%,
      #1d5cff 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
  backdrop-filter: blur(10px);
}


.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 5px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-nav-container {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: auto;
}

.main-nav {
  display: flex;
  gap: 28px;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  z-index: 1100;
  padding: 0;
}

.burger-line,
.burger-line::before,
.burger-line::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.25s ease;
}

.burger-line {
  top: 50%;
  margin-top: -1px;
}

.burger-line::before {
  top: -7px;
}

.burger-line::after {
  top: 7px;
}

.is-nav-open .burger-line {
  background: transparent;
}

.is-nav-open .burger-line::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.is-nav-open .burger-line::after {
  top: 0;
  transform: translateX(-50%) rotate(-45deg);
}


.main-nav a {
  display: inline-block;
  white-space: nowrap;
  font-weight: 700;
  color: #fff;
  opacity: .95;
}

.main-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.main-nav a.is-active {
  color: var(--orange1);
  pointer-events: none;
  opacity: 1;
}



.btn-nav {
  height: 30px;
  padding: 0 22px;
  font-size: 14px;
}


.brand-logo {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, .35))
}

@media (max-width: 850px) {

  .brand-logo {
    height: 40px;
    /* Adjusted for better fit */
  }

  .burger {
    display: block;
  }

  .header-nav-container {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    max-height: 0;
    overflow: hidden;
    background: rgba(18, 103, 255, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 30px;
    gap: 20px;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    z-index: 1050;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .is-nav-open .header-nav-container {
    max-height: 450px;
    /* Large enough for content */
    padding: 30px 30px;
    overflow: visible;
  }

  .main-nav {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .lang-switch {
    width: auto;
    position: relative;
  }

  .lang-dropdown {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-10px);
  }

  .lang-switch.is-open .lang-dropdown {
    transform: translateX(-50%) translateY(0);
  }

  .main-nav a {
    font-size: 18px;
  }

  .header-actions {
    gap: 12px;
  }

  .header-inner {
    padding: 5px 12px;
  }
}


.btn {
  height: var(--btn-h);
  padding: var(--btn-pad);
  border-radius: var(--btn-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  letter-spacing: .2px;
  color: #fff;
  background: linear-gradient(180deg, var(--orange1), var(--orange2));
  box-shadow: 0 14px 34px rgba(0, 0, 0, .25), inset -3px -4px 13px #ff007f;
  user-select: none;
  transition: transform .12s ease, filter .12s ease;
  white-space: nowrap;
  text-shadow: 0px 2px 10px var(--red-shadow);
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03)
}

.btn:active {
  transform: translateY(0)
}

@media (max-width: 400px) {
  :root {
    --header-height: 56px;
  }

  .brand-logo {
    height: 34px;
  }

  .btn-nav {
    height: 45px;
    padding: 4px 20px;
    font-size: 12px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-inner {
    padding: 5px 8px;
    gap: 8px;
  }

  .burger {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
}

.lang-switch {
  position: relative;
  display: inline-block;
}

.lang-toggle {
  width: 62px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
  user-select: none;
}

.lang-toggle::after {
  content: "";
  display: inline-block;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #fff;
  transition: transform 0.2s ease;
}

.lang-switch.is-open .lang-toggle::after {
  transform: rotate(180deg);
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 70px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1000;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.lang-switch.is-open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-btn {
  width: 100%;
  height: 34px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  text-transform: uppercase;
}

.lang-btn:hover {
  background: rgba(18, 103, 255, 0.08);
  color: var(--blue);
}

.lang-btn.is-active {
  background: var(--blue);
  color: #fff;
}

.flag {
  width: 24px;
  height: 18px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .35)
}


.hero {
  position: relative;
  width: 100%;
  height: max(500px, calc(100vh - var(--header-height)));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url("../img/keyart_pichoop.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 2.5vh 0px;
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: min(800px, 100%);
  text-align: center;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-topline {
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .95;
  font-size: clamp(30px, 2.1vw, 18px);
  margin-bottom: 0px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 80);
  filter: drop-shadow(0 82px 80px rgba(0, 0, 0, .45));
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-characters {
  width: min(1000px, 95vw);
  max-height: 65vh;
  object-fit: contain;
}

@media (max-width: 759px) {
  .hero-characters {
    max-width: 120%;
    width: min(1000px, 100vh);
  }
}

.hero-brand {
  z-index: 3;
  /* au-dessus des persos */
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 0px;
}


.hero-logo {
  width: min(min(700px, 90vw), 65vh);
  height: auto;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, .45));
  position: relative;
  z-index: 2;
  display: flex;
  height: auto;
}

.hero-footer {
  position: absolute;
  bottom: 0px;
  width: 90%;
}

.hero-title {
  margin: 20px auto 24px;
  font-weight: 1000;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 80);
  filter: drop-shadow(0 22px 80px rgba(0, 0, 0, .45));
}

.hero-line {
  display: block;
  line-height: 1.05;
}

.hero-line-1 {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 900;
  opacity: .95;
  filter: drop-shadow(0 22px 80px rgba(0, 0, 0, .45));
}

.hero-line-2 {
  font-size: clamp(46px, 6vw, 72px);
  font-weight: 1000;
  filter: drop-shadow(0 22px 80px rgba(0, 0, 0, .45));
}

.hero .btn {
  margin-top: 4px
}

.band {
  background: #165bff;
  color: #fff;
}

.band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 18px 0;
}

.band-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
}

.band-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .18));
}

.band-text {
  font-weight: 500;
  /* semi-regular */
  text-transform: uppercase;
  letter-spacing: .25px;
  font-size: clamp(15px, 1.3vw, 14px);
  text-align: center;
}

.video {
  background: #ffffff;
  padding: 54px 0 46px;
}

.video-inner {
  display: grid;
  gap: 18px
}

.section-title {
  margin: 0 0 28px;
  /* ← PLUS D’ESPACE SOUS LE TITRE */
  text-align: center;
  font-weight: 1000;
  letter-spacing: .3px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.1;
}

.section-title-blue {
  color: #1d5cff
}

.section-title-white {
  color: #fff
}

.section-subtitle {
  margin: 0 auto;
  text-align: center;
  max-width: 70ch;
  font-weight: 800;
  font-size: clamp(14px, 1.6vw, 18px);
}

.section-subtitle-white {
  color: rgba(255, 255, 255, .88)
}

.video-frame {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(10, 26, 68, .10);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .12);
  background: #000;
}

.yt {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
}

/* === FOND CONTINU COMMUN (BLOCS 4 + 5) === */
.bg-universe {
  background:
    /* accents lumineux doux */
    radial-gradient(900px 520px at 30% 0%, rgba(71, 214, 255, .16), transparent 60%),
    radial-gradient(900px 520px at 90% 30%, rgba(255, 176, 32, .14), transparent 60%),

    /* couleur dominante (PLUS TU APPRENDS, PLUS L’UNIVERS GRANDIT) */
    linear-gradient(180deg,
      #00a1ff 0%,
      /* bleu cosmique */
      #4702cd 45%,
      /* bleu nuit */
      #0b0826 100%
      /* quasi noir violet */
    );


  color: #fff;
  overflow: hidden;
  /* évite toute micro-coupure visuelle */
}

/* === SECTIONS TRANSPARENTES === */
.explore,
.growth {
  padding: 64px 0;
  color: #fff;
  background: transparent;
  /* IMPORTANT */
}

/* === CONTENU === */
.explore-inner {
  display: grid;
  gap: 14px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}

.card {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 26px;
  padding: 18px 16px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .25);
  position: relative;
  overflow: hidden;
  flex: 1 1 100%;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* centre image + textes */
  text-align: center;
  /* centre le texte */
}

.card-perso {
  width: 200px;
  height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, .35));

}

.card-title {
  margin: 10px 0 6px;
  font-weight: 1000;
  letter-spacing: .3px;
  font-size: clamp(20px, 2vw, 26px);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.card-text {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-weight: 400;
  line-height: 1.35;
  font-size: clamp(13px, 1.45vw, 15px);
  position: relative;
  z-index: 1;
}

.explore .center {
  margin-top: 14px
}

.growth-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}

.growth-visual {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* cadre */
  border-radius: 18px;
  padding: 20px;


  /* très léger glass effect */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.contree,
.foret,
.college,
.arrival,
.TokoBouton,
.fete {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contree {
  min-height: 60vh;
  background-image: url("../img/contree.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.foret {
  min-height: 40vh;
  background-image: url("../img/foret.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.college {
  min-height: 40vh;
  background-image: url("../img/college.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.arrival {
  min-height: 40vh;
  background-image: url("../img/arrival.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.TokoBouton {
  min-height: 40vh;
  background-image: url("../img/screenPich_video_4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fete {
  min-height: 40vh;
  background-image: url("../img/fete.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.reviews {
  background: #fff;
  color: var(--text);
  padding: 54px 0 44px;
}

.reviews-inner {
  display: grid;
  gap: 18px
}

.review-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  width: min(900px, 100%);
  margin: 0 auto;
}

.nav-arrow {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(10, 26, 68, .12);
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .10);
  cursor: pointer;
  position: relative;
}

.nav-arrow::before {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  inset: 0;
  margin: auto;
  border-right: 3px solid rgba(10, 26, 68, .65);
  border-bottom: 3px solid rgba(10, 26, 68, .65);
  transform: rotate(135deg);
}

.nav-arrow.right::before {
  transform: rotate(-45deg)
}

.review-card {
  border-radius: 26px;
  border: 1px solid rgba(10, 26, 68, .10);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .08);
  padding: 18px 16px;
  background: #fff;
  text-align: center;
}

.stars {
  width: 140px;
  height: 18px;
  margin: 0 auto 10px;
  background-image: url("../img/stars.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.review-text {
  margin: 0;
  font-weight: 800;
  color: rgba(10, 26, 68, .82);
  font-size: clamp(13px, 1.45vw, 16px);
  line-height: 1.45;
}

.review-author {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(29, 92, 255, .20), rgba(29, 92, 255, .08));
  border: 1px solid rgba(29, 92, 255, .18);
}

.author {
  font-weight: 950;
  color: rgba(10, 26, 68, .62);
  font-size: clamp(12px, 1.2vw, 14px);
}

.supporters {
  background: #fff;
  padding: 65px 0 65px;
}

.supporters-inner {
  display: grid;
  gap: 14px
}

.supporters-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.supporter-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
  opacity: .95;
}

.creators {
  background: var(--blue);
  color: #fff;
  padding: 100px 0 100px;
}

.creator-icons {
  display: flex;
  justify-content: center;
  gap: min(2vw, 100px);
  background: none;
  /* aucun aplat */
  padding: 0;
  /* aucun bloc */
  padding-bottom: 30px;
}

.creator-icons a {
  display: inline-block;
  transition: transform .25s ease;
}

.creator-icon {
  transition:
    transform .25s ease,
    filter .25s ease;
}

/* Hover */
.creator-icons a:hover .creator-icon {
  transform: translateY(-4px) scale(1.03);
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .35));
}


.creator-icon {
  width: min(5000px, 44vw);
  height: auto;
  background: none;
  /* aucun fond */
  border: none;
  /* aucun contour */
  border-radius: 0;
  /* pas de pastille */
  box-shadow: none;
  /* pas d’aplat */
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .25));
  /* ombre légère seulement */
  cursor: pointer;
}




.howto {
  background: #fff;
  padding: 60px 0 90px;
}

.howto-inner {
  display: grid;
  gap: 14px
}

.howto-text {
  margin: 20px auto;
  max-width: 85ch;
  text-align: center;
  color: rgba(10, 26, 68, .78);
  font-weight: 400;
  line-height: 1.6;
  font-size: clamp(13px, 1.45vw, 16px);
}

.screens {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.final {
  background-image: url("../img/final_bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 200px 0 200px;
  position: relative;
  color: #fff;
}

.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .35));
}

.final-inner {
  position: relative;
  width: min(860px, 100%);
  text-align: center;
}

.final-title {
  margin: 0 0 8px;
  font-weight: 1000;
  font-size: clamp(22px, 3vw, 38px);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 80);
  filter: drop-shadow(0 22px 80px rgba(0, 0, 0, .45));
}

.final-sub {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .90);
  font-weight: 400;
  font-size: clamp(13px, 1.5vw, 16px);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 80);
  filter: drop-shadow(0 22px 80px rgba(0, 0, 0, .45));
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #ffffff;
  padding: 18px 0 26px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  /* sécurité mobile */
  text-align: center;
}

.footer-note {
  font-weight: 800;
  font-size: 13px;
  color: rgba(10, 26, 68, .55);
  white-space: nowrap;
}

/* Liens */
.footer-link {
  cursor: pointer;
  color: rgba(10, 26, 68, .55);
  transition: color .15s ease, text-decoration-color .15s ease;
}

.footer-link:hover {
  color: rgba(10, 26, 68, .55);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Séparateurs visuels (desktop) */
@media (min-width: 760px) {
  .footer-inner>*:not(:last-child)::after {
    content: "•";
    margin-left: 18px;
    color: rgba(10, 26, 68, .35);
  }
}

/* Mobile : empilé mais propre */
@media (max-width: 759px) {
  .footer-inner {
    gap: 10px;
  }

  .footer-inner>*::after {
    content: none;
  }
}

/* Responsive */
@media (min-width: 760px) {
  .band-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .band-item {
    justify-content: center;
    flex-direction: row;
    gap: 12px;
  }

  .band-text {
    text-align: left;
  }

  .card {
    flex: 0 1 calc(33.333% - 11px);
  }

  .growth-inner {
    grid-template-columns: 1.05fr .95fr
  }

  .screens {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media (prefers-reduced-motion: reduce) {

  .btn,
  .lang-btn {
    transition: none
  }
}

/* =========================
   PAGE MÉTHODE
========================= */

.page-methode .method-hero .hero-inner {
  text-align: center;
}

.page-methode .method-subtitle {
  max-width: 70ch;
  margin: 12px auto 0;
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.5;
  color: rgba(255, 255, 255, .92);
}

.page-methode .method-hero-media {
  margin-top: 15px;
  display: flex;
  justify-content: center;
}

.page-methode .method-hero-media img {
  width: min(980px, 100%);
  border-radius: 10px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
}

.page-methode .method-hero-cta {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

/* Contenu : tout centré */
.page-methode .method-inner {
  text-align: center;
}

.page-methode .method-inner .section-title {
  text-align: center;
  margin-bottom: 18px;
}

.page-methode .method-lead {
  margin: 0 auto 40px;
  max-width: 85ch;
  font-size: clamp(16px, 1.9vw, 19px);
  line-height: 1.7;
  color: rgba(10, 26, 68, .82);
}

/* Cartes image+texte */
.method-cards-3,
.method-cards-2 {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

@media (min-width: 900px) {
  .method-cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .method-cards-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.method-card {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .08);
  border: 1px solid rgba(10, 26, 68, .08);
}

.method-card-media img {
  width: 100%;
  height: auto;
  display: block;
}

.method-card-copy {
  padding: 18px 18px 20px;
}

.method-card-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 900;
  color: #1d5cff;
}

.method-card-copy p {
  margin: 0;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  color: rgba(10, 26, 68, .82);
}

/* Boutons de section */
.method-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

/* Images seules */
.method-image-only {
  padding: 0;
  background: #000;
}

.method-image-only img {
  width: 100%;
  height: auto;
  display: block;
}



.college {
  min-height: 60vh;
  background-image: url("../img/college.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Screens */
.method-screens {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 760px) {
  .method-screens {
    grid-template-columns: repeat(3, 1fr);
  }
}

.method-screens img {
  width: 50%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .10);
  border: 1px solid rgba(10, 26, 68, .10);
}

.soft-skills {
  background: linear-gradient(180deg, #2b0b45 0%, #0b1a4a 100%);
  color: #fff;
  padding: 120px 0;
}

.soft-skills h2 {
  text-align: center;
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 18px;
}

.soft-intro {
  max-width: 78ch;
  margin: 0 auto 60px;
  text-align: center;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, .9);
}

.soft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.soft-card {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 26px;
  padding: 26px 22px;
  text-align: center;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .22);
}

.soft-card img {
  width: 110px;
  height: auto;
  margin: 6px auto 14px;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .30));
}

.soft-card h4 {
  margin: 0 0 10px;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 900;
  color: #fff;
}

.soft-card p {
  margin: 0;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.55;
  color: rgba(255, 255, 255, .9);
}

.soft-cta {
  margin-top: 26px;
  justify-content: center;
}

@media (max-width: 900px) {
  .soft-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .soft-grid {
    grid-template-columns: 1fr;
  }

  .soft-card {
    text-align: left;
  }

  .soft-card img {
    margin: 6px 0 14px;
  }
}

/* Variante texte blanc */
.section-title-white {
  color: #fff;
}

.method-lead-white {
  color: rgba(255, 255, 255, .88);
}

/* Cartes sur fond univers */
.method-card-universe {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .25);
}

.method-card-universe h3 {
  color: #fff;
}

.method-card-universe p {
  color: rgba(255, 255, 255, .86);
}

/* Card titles inside sections */
.card .section-title {
  font-size: clamp(24px, 3.2vw, 34px);
  margin-bottom: 12px;
}

.pedag {
  padding: 64px 0;
  color: #fff;
  background: transparent;
  /* IMPORTANT */
}


.pedag-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}

.growth-visual {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* cadre */
  border-radius: 18px;
  padding: 20px;


  /* très léger glass effect */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.growth-img {
  width: 75%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.growth-copy {
  padding: 18px 16px;
  text-align: center;

}

.growth-text {
  margin: 10px 0 28px;
  color: rgba(255, 255, 255, .86);
  font-weight: 400;
  line-height: 1.45;
  font-size: clamp(13px, 1.45vw, 16px);
}

/* =========================
   FAQ
========================= */


/* FAQ HERO */
.page-faq.faq-hero {
  height: 240px;
  background: url("../img/contree.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-faq.faq-hero h1 {
  color: #fff;
  font-size: 48px;
  font-weight: bold;
}

/* CONTENT */
.page-faq.faq-content {
  margin: 0 auto;
}

/* SECTIONS */
.faq-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.page-faq.faq-section-title {
  font-size: 50px;
  margin: 20px;
}

.page-faq.section-title-orange {
  color: #f4a300;
}

.page-faq.section-title-blue {
  color: #3a7bd5;
}

/* FAQ ITEM */
.page-faq.faq-item {
  margin-bottom: 14px;
  border-radius: 25px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: linear-gradient(180deg, #4490ff 0%, #2f80ed 100%);
  color: #fff;
  border: none;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  border-radius: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow:
    0 4px 12px rgba(47, 128, 237, 0.2),
    inset 0 -4px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  user-select: none;
}

.faq-question:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 6px 16px rgba(47, 128, 237, 0.3),
    inset 0 -4px 0 rgba(0, 0, 0, 0.1);
}

.faq-question:active {
  transform: translateY(0);
  box-shadow:
    0 2px 8px rgba(47, 128, 237, 0.2),
    inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-question .icon {
  font-size: 20px;
  font-weight: bold;
}

/* ANSWER */
.faq-answer {
  display: none;
  padding: 20px;
  background: #f5f7fb;
  border-radius: 0 0 20px 20px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .icon {
  transform: rotate(45deg);
}

.faq-item {
  padding: 10px;
}

.method-title {
  margin: 20px auto 24px;
  font-weight: 1000;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 80);
  filter: drop-shadow(0 22px 80px rgba(0, 0, 0, .45));
}

.btn_learn_more {
  margin-top: 20px;
}
