/* ═══════════════════════════════════════════════
   AXIOM — style.css
   Partagé par index.html, cours.html, tarifs.html, faq.html
═══════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────── */
:root {
  --ink:         #1a1f1c;
  --cream:       #f0ece3;
  --cream-dark:  #e8e3d8;
  --sage:        #3d5c42;
  --sage-mid:    #6b8f71;
  --sage-light:  #9ab89f;
  --sage-pale:   #dce8de;
  --amber:       #e07b39;
  --amber-deep:  #8c3d18;
  --amber-pale:  #faeadb;
  --stone:       #7a7670;
  --mist:        #e0dbd0;
  --warm-white:  #faf8f4;
  --roca:        'Roca', 'Georgia', serif;
  --baskerville: 'Libre Baskerville', Georgia, serif;
  --lekton:      'Lekton', monospace;
  --nav-h:       68px;
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--baskerville);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(240,236,227,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--mist);
  height: var(--nav-h);
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex; align-items: baseline; gap: 7px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-axiom {
  font-family: var(--roca); font-size: 26px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.5px; line-height: 1;
}
.nav-logo-sq {
  width: 7px; height: 7px; background: var(--amber);
  display: inline-block; margin-bottom: 2px;
}
.nav-links {
  display: flex; align-items: right; gap: 0;
  list-style: none; flex: 1; justify-content: right;
  position: relative;
}
.nav-links a {
  font-family: var(--lekton); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--stone); text-decoration: none;
  padding: 8px 14px; white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
  display: block;
}
.nav-links a:hover  { color: var(--amber); transform: translateY(-3px); }
.nav-links a.active { color: var(--ink); }
/* CTA button */
.nav-cta {
  font-family: var(--lekton); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; background: var(--amber); color: var(--warm-white);
  padding: 11px 20px; text-decoration: none; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s; flex-shrink: 0; white-space: nowrap;
}
.nav-cta:hover { background: var(--amber-deep); }
.nav-cta .arrow { font-size: 13px; transition: transform 0.2s; }
.nav-cta:hover .arrow { transform: translateX(3px); }
/* Desktop: full text, mobile: short text */
.nav-cta-short { display: none; }
.nav-cta-full  { display: inline; }

/* Back button — page réservation uniquement */
.nav-back {
  font-family: var(--lekton); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--stone); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--ink); }
.nav-back-arrow { font-size: 14px; transition: transform 0.2s; }
.nav-back:hover .nav-back-arrow { transform: translateX(-3px); }
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 40px; height: 40px; cursor: pointer;
  background: none; border: none; padding: 8px;
  flex-shrink: 0; z-index: 200;
}
.nav-hamburger span {
  display: block; width: 20px; height: 2px; background: var(--ink);
  transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(240,236,227,0.98); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99; padding: 40px 32px;
  flex-direction: column; gap: 4px;
  transform: translateY(-8px); opacity: 0;
  transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.25s ease;
}
.nav-drawer.open { display: flex; transform: translateY(0); opacity: 1; }
.nav-drawer a {
  font-family: var(--roca); font-size: 26px; font-weight: 700;
  color: var(--stone); text-decoration: none;
  padding: 14px 0; border-bottom: 1px solid var(--mist);
  transition: color 0.2s;
}
.nav-drawer a:last-of-type { border-bottom: none; }
.nav-drawer a:hover, .nav-drawer a.active { color: var(--ink); }
.nav-drawer-cta {
  margin-top: 28px !important;
  background: var(--amber) !important; color: var(--warm-white) !important;
  border: none !important; border-bottom: none !important;
  padding: 16px 24px !important; text-align: center;
  font-family: var(--lekton) !important; font-size: 11px !important;
  letter-spacing: 2px !important; font-weight: 700 !important;
  display: block !important;
}

/* ══════════════════════════════════════════════
   COMMONS
══════════════════════════════════════════════ */
.section-label {
  font-family: var(--lekton); font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--stone);
  display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--mist); }

h1 {
  font-family: var(--roca); font-size: clamp(36px, 5vw, 64px);
  font-weight: 700; line-height: 1.05; letter-spacing: -1.5px;
  color: var(--ink); margin-bottom: 24px;
}
h1 em { font-style: italic; color: var(--sage); font-weight: 400; }
h2 {
  font-family: var(--roca); font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 700; line-height: 1.1; letter-spacing: -1px;
  color: var(--ink); margin-bottom: 16px;
}
h2 em { color: var(--sage); font-style: italic; font-weight: 400; }
h3 {
  font-family: var(--roca); font-size: 19px; font-weight: 700;
  color: var(--ink); line-height: 1.2; margin-bottom: 10px;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--amber); color: var(--warm-white);
  font-family: var(--lekton); font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 700; padding: 15px 32px;
  text-decoration: none; transition: all 0.25s ease;
}
.btn-primary:hover { background: var(--amber-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(140,61,24,0.22); }
.btn-primary .arrow { font-size: 16px; transition: transform 0.2s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--sage); font-family: var(--lekton); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; border-bottom: 1.5px solid var(--sage);
  padding-bottom: 2px; transition: all 0.2s;
}
.btn-secondary:hover { color: var(--sage-mid); border-color: var(--sage-mid); }

/* ══════════════════════════════════════════════
   PAGE-HERO (sous-pages)
══════════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 56px) 64px 72px;
  background: var(--ink); position: relative; overflow: hidden;
}
.page-hero-light {
  background: var(--warm-white);
  border-bottom: 1px solid var(--mist);
}
.page-hero-light h1 { color: var(--ink) !important; }
.page-hero-light h1 em { color: var(--sage) !important; }
.page-hero-light .section-label { color: var(--stone); }
.page-hero-light .section-label::after { background: var(--mist); }
.page-hero-light .page-hero-sub { color: var(--stone); }
.page-hero-inner { max-width: 680px; position: relative; z-index: 2; }
.page-hero .section-label { color: var(--sage-light); }
.page-hero .section-label::after { background: rgba(255,255,255,0.07); }
.page-hero h1 { color: var(--warm-white); margin-bottom: 16px; }
.page-hero h1 em { color: var(--sage-light); }
.page-hero-sub {
  font-family: var(--baskerville); font-size: 16px;
  color: var(--sage-light); line-height: 1.8; max-width: 560px;
}
/* Entry animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-hero-inner > * { opacity: 0; animation: fadeInUp 0.65s cubic-bezier(0.16,1,0.3,1) forwards; }
.page-hero-inner > *:nth-child(1) { animation-delay: 0.05s; }
.page-hero-inner > *:nth-child(2) { animation-delay: 0.16s; }
.page-hero-inner > *:nth-child(3) { animation-delay: 0.27s; }

/* ══════════════════════════════════════════════
   CTA BANDEAU (sage strip)
══════════════════════════════════════════════ */
.cta-section { padding: 0 64px; background: var(--sage); }
.cta-inner { display: flex; align-items: center; padding: 20px 0; }
.cta-left {
  display: flex; flex-direction: column; gap: 4px;
  padding: 0 40px 0 0; flex-shrink: 0;
}
.cta-eyebrow {
  font-family: var(--lekton); font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(220,232,222,0.6);
}
.cta-section h2 {
  font-family: var(--roca); font-size: clamp(16px,1.6vw,22px);
  color: var(--warm-white); letter-spacing: -0.3px; margin: 0; white-space: nowrap;
}
.cta-section h2 em { color: var(--sage-pale); font-style: italic; font-weight: 400; }
.cta-divider { width: 1px; align-self: stretch; background: rgba(255,255,255,0.12); flex-shrink: 0; }
.cta-sub {
  font-family: var(--baskerville); font-size: 13px; color: rgba(255,255,255,0.5);
  margin: 0; line-height: 1.55; font-style: italic; flex: 1; padding: 0 40px; min-width: 0;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--amber); color: var(--warm-white);
  font-family: var(--lekton); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 700; padding: 12px 24px;
  text-decoration: none; transition: background 0.2s; white-space: nowrap; flex-shrink: 0;
}
.cta-btn:hover { background: var(--amber-deep); }
.cta-btn .arrow { font-size: 13px; transition: transform 0.2s; }
.cta-btn:hover .arrow { transform: translateX(3px); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer {
  background: var(--ink); padding: 48px 64px;
  display: flex; justify-content: space-between; align-items: center; gap: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-logo  { display: flex; align-items: baseline; gap: 6px; }
.footer-logo-axiom {
  font-family: var(--roca); font-size: 21px; font-weight: 700;
  color: var(--warm-white); letter-spacing: -0.5px;
}
.footer-logo-sq {
  width: 6px; height: 6px; background: var(--amber);
  display: inline-block; margin-bottom: 1px;
}
.footer-tagline { font-family: var(--baskerville); font-size: 13px; font-style: italic; color: var(--stone); }
.footer-contact { text-align: right; }
.footer-contact-label {
  font-family: var(--lekton); font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--stone); margin-bottom: 6px;
}
.footer-contact-email {
  font-family: var(--baskerville); font-size: 14px;
  color: var(--sage-light); text-decoration: none; transition: color 0.2s;
}
.footer-contact-email:hover { color: var(--warm-white); }

/* ══════════════════════════════════════════════
   INDEX — HERO
══════════════════════════════════════════════ */
.hero {
  padding: calc(var(--nav-h) + 56px) 64px 72px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  position: relative; overflow: hidden;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: var(--lekton); font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--amber); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1.5px; background: var(--amber); }
.hero-sub {
  font-family: var(--baskerville); font-size: 16px; color: var(--ink);
  line-height: 1.8; max-width: 460px; margin-bottom: 40px;
}
.hero-btns { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.hero-right { position: relative; z-index: 2; }
.hero-exp-card { background: var(--ink); padding: 40px; position: relative; overflow: hidden; }
.hero-exp-tag {
  font-family: var(--lekton); font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--sage-light);
  border: 1px solid var(--sage-mid); padding: 5px 12px;
  display: inline-block; margin-bottom: 24px;
}
.hero-exp-title {
  font-family: var(--roca); font-size: 28px; font-weight: 700;
  color: var(--warm-white); line-height: 1.15; margin-bottom: 16px;
}
.hero-exp-title em { font-style: italic; color: var(--sage-light); font-weight: 400; }
.hero-exp-body { font-family: var(--baskerville); font-size: 13px; color: var(--sage-light); line-height: 1.75; }
.hero-exp-body strong { color: var(--warm-white); }
.hero-exp-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.hero-exp-pill {
  font-family: var(--lekton); font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; padding: 5px 12px;
  border: 1px solid rgba(154,184,159,0.35); color: var(--sage-light);
}
.hero-exp-pill-amber { background: var(--amber); border-color: var(--amber); color: var(--warm-white); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * { opacity: 0; animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero-eyebrow  { animation-delay: 0.1s; }
.hero-content h1     { animation-delay: 0.22s; }
.hero-sub      { animation-delay: 0.36s; }
.hero-btns     { animation-delay: 0.5s; }
.hero-right    { opacity: 0; animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.42s forwards; }

/* ══════════════════════════════════════════════
   INDEX — CARROUSEL BIENFAITS
══════════════════════════════════════════════ */
.benefits { padding: 100px 0; background: var(--warm-white); }
.benefits-header {
  margin-bottom: 44px; padding: 0 64px;
  display: flex; align-items: flex-end; gap: 48px; flex-wrap: wrap;
}
.benefits-header-text { flex: 1; min-width: 280px; }
.benefits-header p {
  font-family: var(--baskerville); font-size: 15px; color: var(--ink);
  line-height: 1.8; margin-top: 12px; max-width: 600px;
}
.carousel-outer { position: relative; overflow: hidden; padding: 20px 0 28px; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 44px; height: 44px;
  border: 1.5px solid var(--mist); background: var(--warm-white);
  color: var(--ink); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease; box-shadow: 0 4px 16px rgba(26,31,28,0.08);
}
.carousel-arrow:hover { background: var(--amber); border-color: var(--amber); color: white; }
.carousel-arrow-left  { left: 16px; }
.carousel-arrow-right { right: 16px; }
.carousel-track { display: flex; gap: 20px; will-change: transform; }
.benefit-card {
  background: var(--cream); padding: 36px 32px; position: relative;
  flex: 0 0 calc(42% - 10px);
  transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.2s ease;
  opacity: 0.3; transform: scale(0.97);
}
.benefit-card.active, .benefit-card.active-next { opacity: 1; transform: scale(1); }
.benefit-card:hover { box-shadow: 0 12px 36px rgba(26,31,28,0.08); z-index: 2; }
.benefit-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: var(--mist); transition: background 0.2s;
}
.benefit-card.active::before, .benefit-card.active-next::before { background: var(--amber); }
.benefit-num { font-family: var(--lekton); font-size: 10px; letter-spacing: 3px; color: var(--stone); margin-bottom: 20px; }
.benefit-icon { width: 40px; height: 40px; margin-bottom: 16px; }
.benefit-card p { font-family: var(--baskerville); font-size: 13px; color: var(--ink); line-height: 1.75; margin-top: 8px; }
.benefit-tag {
  display: inline-block; margin-top: 16px; font-family: var(--lekton);
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--sage); background: var(--sage-pale); padding: 4px 10px;
}
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 4px; }
.carousel-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--mist);
  border: none; cursor: pointer; padding: 0; transition: background 0.3s, transform 0.3s;
}
.carousel-dot.active { background: var(--amber); transform: scale(1.4); }

/* ══════════════════════════════════════════════
   COURS — HOW SECTION
══════════════════════════════════════════════ */
.how-section { padding: 88px 64px; background: var(--warm-white); }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; margin-top: 56px; }
.how-step {
  display: flex; gap: 24px; padding: 28px 0;
  border-bottom: 1px solid var(--mist);
}
.how-step:first-child { padding-top: 0; }
.how-step:last-child  { border-bottom: none; }
.how-step-num {
  font-family: var(--roca); font-size: 36px; font-weight: 700;
  color: var(--mist); line-height: 1; flex-shrink: 0; width: 52px;
  transition: color 0.3s;
}
.how-step:hover .how-step-num { color: var(--amber); }
.how-step-content h3 { font-size: 17px; margin-bottom: 6px; }
.how-step-content p { font-family: var(--baskerville); font-size: 13px; color: var(--stone); line-height: 1.75; }
.how-visual { position: sticky; top: 88px; }
.groupe-card { background: var(--cream); overflow: hidden; }
.groupe-card-top { background: var(--sage); padding: 20px 28px; display: flex; justify-content: space-between; align-items: center; }
.groupe-card-title { font-family: var(--roca); font-size: 15px; font-weight: 700; color: var(--warm-white); }
.groupe-card-badge { font-family: var(--lekton); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; background: var(--amber); color: var(--warm-white); padding: 4px 10px; }
.groupe-card-body { padding: 24px; }
.visio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; margin-bottom: 16px; }
.visio-screen {
  background: var(--ink); aspect-ratio: 4/3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; position: relative; overflow: hidden;
}
.visio-screen::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(61,92,66,0.15),transparent); }
.visio-avatar {
  width: 32px; height: 32px; border-radius: 50%; background: var(--sage);
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 1;
}
.visio-name { font-family: var(--lekton); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.6); position: relative; z-index: 1; }
.visio-dot { position: absolute; top: 7px; right: 7px; width: 6px; height: 6px; border-radius: 50%; background: #4ade80; }
.visio-screen-teacher {
  background: var(--sage); grid-column: span 2; aspect-ratio: unset;
  padding: 14px; flex-direction: row; justify-content: flex-start; gap: 12px;
}
.visio-teacher-info { position: relative; z-index: 1; }
.visio-teacher-name { font-family: var(--lekton); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--warm-white); }
.visio-teacher-sub { font-family: var(--baskerville); font-size: 11px; font-style: italic; color: var(--sage-pale); margin-top: 2px; }
.visio-badge-live {
  margin-left: auto; position: relative; z-index: 1;
  font-family: var(--lekton); font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--warm-white); background: rgba(255,255,255,0.15); padding: 4px 8px;
  display: flex; align-items: center; gap: 5px;
}
.live-dot { width: 5px; height: 5px; border-radius: 50%; background: #f87171; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
.groupe-card-info { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.groupe-info-item { background: var(--cream-dark); padding: 12px 14px; }
.groupe-info-label { font-family: var(--lekton); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--stone); margin-bottom: 3px; }
.groupe-info-val { font-family: var(--roca); font-size: 16px; font-weight: 700; color: var(--ink); }

/* ── Outils ── */
.outils-section { padding: 88px 64px; background: var(--cream); }
.outils-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 48px; }
.outil-card { background: var(--warm-white); padding: 32px 28px; transition: transform 0.2s; }
.outil-card:hover { transform: translateY(-4px); }
.outil-icon { width: 38px; height: 38px; margin-bottom: 18px; }
.outil-card h3 { font-size: 16px; margin-bottom: 8px; }
.outil-card p { font-family: var(--baskerville); font-size: 13px; color: var(--stone); line-height: 1.7; }

/* ── Tuteur ── */
.tuteur-section { padding: 88px 64px; background: var(--ink); overflow: hidden; }
.tuteur-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.tuteur-content .section-label { color: var(--sage-light); }
.tuteur-content .section-label::after { background: rgba(255,255,255,0.07); }
.tuteur-content h2 { color: var(--warm-white); }
.tuteur-content h2 em { color: var(--sage-light); }
.tuteur-content p { font-family: var(--baskerville); font-size: 14px; color: var(--sage-light); line-height: 1.8; margin-top: 14px; word-break: break-word; }
.tuteur-content strong { color: var(--warm-white); }
.tuteur-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 36px; }
.tuteur-stat { background: rgba(255,255,255,0.04); padding: 20px; border-left: 2px solid var(--sage); min-width: 0; }
.tuteur-stat-num { font-family: var(--roca); font-size: 32px; font-weight: 700; color: var(--amber); line-height: 1; }
.tuteur-stat-label { font-family: var(--lekton); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--sage-light); margin-top: 5px; }
.tuteur-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); padding: 36px; min-width: 0; }
.tuteur-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.tuteur-pill { font-family: var(--lekton); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; border: 1px solid rgba(154,184,159,0.3); color: var(--sage-light); }
.tuteur-pill-amber { background: var(--amber); border-color: var(--amber); color: var(--warm-white); }
.tuteur-quote { font-family: var(--baskerville); font-size: 14px; font-style: italic; color: var(--sage-pale); line-height: 1.75; margin-top: 24px; word-break: break-word; }
.tuteur-quote::before { content: '«\00a0'; }
.tuteur-quote::after  { content: '\00a0»'; }

/* ── Niveaux ── */
.niveaux-section { padding: 88px 64px; background: var(--warm-white); }
.niveaux-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 48px; }
.niveau-card { background: var(--cream); padding: 28px 24px; position: relative; }
.niveau-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--mist); }
.niveau-card.highlighted::before { background: var(--amber); }
.niveau-label { font-family: var(--lekton); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--stone); margin-bottom: 10px; }
.niveau-title { font-family: var(--roca); font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.niveau-desc { font-family: var(--baskerville); font-size: 12px; color: var(--stone); line-height: 1.7; }
.niveau-topics { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 5px; }
.niveau-topic { font-family: var(--lekton); font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; background: var(--sage-pale); color: var(--sage); padding: 3px 7px; }

/* ══════════════════════════════════════════════
   TUTEUR
══════════════════════════════════════════════ */
 /* Hero intro */
    .tuteur-page-hero {
      background: var(--ink);
      padding: calc(var(--nav-h) + 56px) 64px 72px;
      position: relative; overflow: hidden;
    }
    .tuteur-page-hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
      max-width: 1200px;
    }
    /* Colonne gauche */
    .tuteur-page-hero .section-label { color: var(--sage-light); }
    .tuteur-page-hero .section-label::after { background: rgba(255,255,255,0.07); }
    .tuteur-page-hero h1 { color: var(--warm-white); margin-bottom: 16px; }
    .tuteur-page-hero h1 em { color: var(--sage-light); }
    .tuteur-page-hero-sub {
      font-family: var(--baskerville); font-size: 16px;
      color: var(--sage-light); line-height: 1.8;
    }
    /* Colonne droite */
    .tuteur-page-hero-right {
      display: flex;
      flex-direction: column;
      gap: 28px;
      justify-content: flex-start;
    }
    .tuteur-photo-parcours {
      display: flex;
      gap: 24px;
      align-items: flex-start;
    }
    /* Cadre photo — compact */
    .tuteur-photo-frame {
      width: 180px;
      flex-shrink: 0;
      aspect-ratio: 3/4;
      border: 1.5px solid rgba(154,184,159,0.3);
      background: rgba(255,255,255,0.03);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .tuteur-photo-frame svg { opacity: 0.25; }
    .tuteur-photo-frame-label {
      font-family: var(--lekton); font-size: 7px; letter-spacing: 2px;
      text-transform: uppercase; color: rgba(154,184,159,0.4);
    }
    /* Texte parcours */
    .tuteur-hero-parcours {
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex: 1;
    }
    .tuteur-hero-parcours-item {
      display: flex;
      flex-direction: column;
      gap: 2px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .tuteur-hero-parcours-item:last-child { border-bottom: none; padding-bottom: 0; }
    .tuteur-hero-parcours-year {
      font-family: var(--lekton); font-size: 9px; letter-spacing: 2px;
      text-transform: uppercase; color: var(--amber);
    }
    .tuteur-hero-parcours-text {
      font-family: var(--baskerville); font-size: 13px;
      color: var(--sage-light); line-height: 1.5;
    }
    .tuteur-hero-parcours-text strong { color: var(--warm-white); }

    /* Stats band */
    .tuteur-stats-band {
      background: var(--sage);
      padding: 0 64px;
    }
    .tuteur-stats-band-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .tuteur-stat-item {
      padding: 28px 32px;
      border-right: 1px solid rgba(255,255,255,0.1);
    }
    .tuteur-stat-item:last-child { border-right: none; }
    .tuteur-stat-num {
      font-family: var(--roca); font-size: 36px; font-weight: 700;
      color: var(--warm-white); line-height: 1;
    }
    .tuteur-stat-label {
      font-family: var(--lekton); font-size: 9px; letter-spacing: 2px;
      text-transform: uppercase; color: var(--sage-pale); margin-top: 6px;
    }

    /* Parcours section */
    .parcours-section {
      padding: 88px 64px;
      background: var(--warm-white);
    }
    .parcours-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      margin-top: 56px;
    }
    .parcours-text p {
      font-family: var(--baskerville); font-size: 15px;
      color: var(--ink); line-height: 1.85;
    }
    .parcours-text p + p { margin-top: 20px; }
    .parcours-text strong { color: var(--sage); }
    .parcours-quote {
      background: var(--cream);
      border-left: 3px solid var(--amber);
      padding: 28px 32px;
      margin-top: 36px;
    }
    .parcours-quote p {
      font-family: var(--baskerville); font-size: 15px;
      font-style: italic; color: var(--ink); line-height: 1.8;
    }
    .parcours-quote p::before { content: '«\00a0'; }
    .parcours-quote p::after  { content: '\00a0»'; }

    /* Approche cards */
    .approche-cards {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .approche-card {
      background: var(--cream);
      padding: 28px 32px;
      border-left: 3px solid var(--mist);
      transition: border-color 0.2s;
    }
    .approche-card:hover { border-color: var(--sage); }
    .approche-card h3 {
      font-family: var(--roca); font-size: 17px; font-weight: 700;
      color: var(--ink); margin-bottom: 8px;
    }
    .approche-card p {
      font-family: var(--baskerville); font-size: 13px;
      color: var(--stone); line-height: 1.7;
    }

    /* Niveaux section (repris de cours.html) */
    .niveaux-section { padding: 88px 64px; background: var(--cream); }

/* ══════════════════════════════════════════════
   TARIFS
══════════════════════════════════════════════ */
.prix-section { padding: 88px 64px; background: var(--cream); }
.prix-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 48px; }
.facture-card { background: var(--warm-white); border: 1px solid var(--mist); padding: 36px; position: relative; }
.facture-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--sage); }
.facture-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--mist); }
.facture-logo-text { font-family: var(--roca); font-size: 18px; font-weight: 700; color: var(--ink); }
.facture-ref { font-family: var(--lekton); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--stone); text-align: right; }
.facture-line { display: flex; justify-content: space-between; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--cream-dark); gap: 16px; }
.facture-line:last-of-type { border-bottom: none; }
.facture-line-label { font-family: var(--baskerville); font-size: 13px; color: var(--ink); }
.facture-line-label small { display: block; font-size: 11px; color: var(--stone); font-style: italic; margin-top: 2px; }
.facture-line-amount { font-family: var(--lekton); font-size: 13px; font-weight: 700; color: var(--ink); white-space: nowrap; flex-shrink: 0; }
.facture-total { background: var(--sage-pale); margin: 16px -36px -36px; padding: 16px 36px; display: flex; justify-content: space-between; align-items: center; }
.facture-total-label { font-family: var(--lekton); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--sage); }
.facture-total-amount { font-family: var(--roca); font-size: 24px; font-weight: 700; color: var(--sage); }
.deduction-badge { background: var(--amber-pale); border: 1.5px solid var(--amber); padding: 14px 18px; margin-top: 14px; display: flex; align-items: flex-start; gap: 12px; }
.deduction-sq { width: 9px; height: 9px; background: var(--amber); flex-shrink: 0; margin-top: 4px; }
.deduction-text { font-family: var(--baskerville); font-size: 12px; color: var(--amber-deep); line-height: 1.65; }
.fact-points { display: flex; flex-direction: column; gap: 16px; }
.fact-point { display: flex; align-items: flex-start; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--mist); }
.fact-point:last-child { border-bottom: none; padding-bottom: 0; }
.fact-point-sq { width: 7px; height: 7px; background: var(--sage); flex-shrink: 0; margin-top: 7px; }
.fact-point-text { font-family: var(--baskerville); font-size: 13px; color: var(--ink); line-height: 1.65; }
.fact-point-text strong { color: var(--sage); }

.simulateur-section { padding: 88px 64px; background: var(--warm-white); }
.simulateur-inner { max-width: 680px; margin: 48px auto 0; }
.simulateur-card { background: var(--cream); padding: 40px; border-top: 3px solid var(--amber); }
.simulateur-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.simulateur-label { font-family: var(--lekton); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--stone); }
.simulateur-controls { display: flex; align-items: center; gap: 12px; }
.simulateur-btn {
  width: 36px; height: 36px; border: 1.5px solid var(--mist);
  background: var(--warm-white); cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); transition: all 0.2s; font-family: var(--lekton);
}
.simulateur-btn:hover { background: var(--amber); border-color: var(--amber); color: white; }
.simulateur-val { font-family: var(--roca); font-size: 22px; font-weight: 700; color: var(--ink); min-width: 56px; text-align: center; }
.simulateur-sep { height: 1px; background: var(--mist); margin: 24px 0; }
.simulateur-result { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.simulateur-result-item { background: var(--warm-white); padding: 18px 20px; }
.simulateur-result-label { font-family: var(--lekton); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--stone); margin-bottom: 5px; }
.simulateur-result-val { font-family: var(--roca); font-size: 26px; font-weight: 700; color: var(--ink); }
.simulateur-result-val.highlight { color: var(--sage); }
.simulateur-result-sub { font-family: var(--baskerville); font-size: 11px; font-style: italic; color: var(--stone); margin-top: 2px; }

.frequence-section { padding: 88px 64px; background: var(--cream); }
.frequence-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 48px; }
.freq-card { background: var(--warm-white); padding: 32px 28px; position: relative; }
.freq-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--mist); }
.freq-card.recommended::before { background: var(--amber); }
.freq-title-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.freq-badge { font-family: var(--lekton); font-size: 8px; letter-spacing: 2px; text-transform: uppercase; background: var(--amber); color: var(--warm-white); padding: 3px 8px; flex-shrink: 0; }
.freq-title { font-family: var(--roca); font-size: 19px; font-weight: 700; color: var(--ink); }
.freq-price { font-family: var(--roca); font-size: 30px; font-weight: 700; color: var(--amber); margin: 10px 0 3px; }
.freq-price-real { font-family: var(--lekton); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--sage); margin-bottom: 14px; }
.freq-desc { font-family: var(--baskerville); font-size: 13px; color: var(--stone); line-height: 1.7; }

.reserver-section { padding: 88px 64px; background: var(--ink); }
.reserver-section .section-label { color: var(--sage-light); }
.reserver-section .section-label::after { background: rgba(255,255,255,0.07); }
.reserver-section h2 { color: var(--warm-white); }
.reserver-section h2 em { color: var(--sage-light); }
.reserver-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 48px; }
.reserver-step { background: rgba(255,255,255,0.04); padding: 32px 28px; border-top: 1px solid rgba(255,255,255,0.06); }
.reserver-step-num { font-family: var(--roca); font-size: 44px; font-weight: 700; color: rgba(255,255,255,0.07); line-height: 1; margin-bottom: 18px; }
.reserver-step h3 { font-family: var(--roca); font-size: 17px; font-weight: 700; color: var(--warm-white); margin-bottom: 8px; }
.reserver-step p { font-family: var(--baskerville); font-size: 13px; color: var(--sage-light); line-height: 1.75; }
.reserver-cta { margin-top: 48px; text-align: center; }
.reserver-reassurance { font-family: var(--lekton); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-top: 14px; }

/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
.faq-section { padding: 72px 64px 88px; background: var(--warm-white); }
.faq-layout { display: grid; grid-template-columns: 240px 1fr; gap: 72px; align-items: start; margin-top: 40px; }
.faq-sidebar { position: sticky; top: 88px; }
.faq-sidebar-title { font-family: var(--lekton); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--stone); margin-bottom: 14px; }
.faq-cats { display: flex; flex-direction: column; gap: 2px; }
.faq-cat {
  font-family: var(--lekton); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--stone); padding: 10px 14px; background: var(--cream); cursor: pointer;
  transition: all 0.2s; border-left: 2px solid transparent;
  text-align: left; border-top: none; border-right: none; border-bottom: none; width: 100%;
}
.faq-cat:hover { color: var(--ink); background: var(--cream-dark); }
.faq-cat.active { color: var(--amber); border-left-color: var(--amber); background: var(--amber-pale); }
.faq-group { margin-bottom: 44px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group-title { font-family: var(--lekton); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--amber); padding-bottom: 14px; border-bottom: 1px solid var(--mist); }
.faq-item { border-bottom: 1px solid var(--mist); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 20px 0; text-align: left;
}
.faq-question-text { font-family: var(--baskerville); font-size: 15px; color: var(--ink); font-weight: 700; line-height: 1.4; }
.faq-question:hover .faq-question-text { color: var(--sage); }
.faq-chevron {
  width: 30px; height: 30px; border: 1.5px solid var(--mist); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--stone); transition: all 0.3s ease;
}
.faq-item.open .faq-chevron { background: var(--amber); border-color: var(--amber); color: white; transform: rotate(45deg); }
.faq-answer {
  font-family: var(--baskerville); font-size: 13px; color: var(--stone);
  line-height: 1.8; overflow: hidden;
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  padding-bottom: 0;
}
.faq-answer-inner { overflow: hidden; padding-bottom: 0; transition: padding-bottom 0.3s ease; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer-inner { padding-bottom: 20px; }
.faq-answer strong { color: var(--ink); }
.faq-answer a { color: var(--sage); }

.contact-section { padding: 88px 64px; background: var(--cream); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-intro h2 { margin-bottom: 10px; }
.contact-intro-sub { font-family: var(--baskerville); font-size: 14px; color: var(--stone); line-height: 1.8; margin-top: 14px; max-width: 380px; }
.contact-reassurances { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
.contact-reassurance-item { display: flex; align-items: flex-start; gap: 10px; }
.contact-reassurance-sq { width: 6px; height: 6px; background: var(--sage); flex-shrink: 0; margin-top: 8px; }
.contact-reassurance-text { font-family: var(--baskerville); font-size: 13px; color: var(--stone); line-height: 1.6; }
.contact-email-direct { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--mist); }
.contact-email-label { font-family: var(--lekton); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--stone); margin-bottom: 7px; }
.contact-email-link { font-family: var(--baskerville); font-size: 15px; color: var(--sage); text-decoration: none; border-bottom: 1px solid var(--sage-pale); padding-bottom: 2px; transition: all 0.2s; }
.contact-email-link:hover { color: var(--ink); border-color: var(--ink); }
.contact-form { background: var(--warm-white); padding: 40px; border-top: 3px solid var(--sage); }
.form-intro { font-family: var(--roca); font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 6px; line-height: 1.2; }
.form-intro em { color: var(--sage); font-style: italic; font-weight: 400; }
.form-sub { font-family: var(--baskerville); font-size: 13px; color: var(--stone); line-height: 1.6; margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-label { font-family: var(--lekton); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--stone); display: block; margin-bottom: 7px; }
.form-input, .form-textarea, .form-select {
  width: 100%; background: var(--cream); border: 1.5px solid var(--mist);
  padding: 11px 14px; font-family: var(--baskerville); font-size: 13px; color: var(--ink);
  transition: border-color 0.2s; outline: none; appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--sage); }
.form-textarea { min-height: 110px; resize: vertical; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7670' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%; background: var(--sage); color: var(--warm-white);
  font-family: var(--lekton); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 700; padding: 15px; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background 0.2s; margin-top: 6px;
}
.form-submit:hover { background: var(--amber); }
.form-success { display: none; background: var(--sage-pale); border: 1.5px solid var(--sage); padding: 20px; text-align: center; margin-top: 12px; }
.form-success.visible { display: block; }
.form-success p { font-family: var(--baskerville); font-size: 13px; color: var(--sage); line-height: 1.7; }

/* RESERVATION */

.reservation-hero {
      background: var(--ink);
      padding: calc(var(--nav-h) + 56px) 64px 72px;
    }
    .reservation-hero .section-label { color: var(--sage-light); }
    .reservation-hero .section-label::after { background: rgba(255,255,255,0.07); }
    .reservation-hero h1 { color: var(--warm-white); margin-bottom: 16px; }
    .reservation-hero h1 em { color: var(--sage-light); }
    .reservation-hero-sub {
      font-family: var(--baskerville); font-size: 16px;
      color: var(--sage-light); line-height: 1.8; max-width: 560px;
    }

    .reservation-section {
      padding: 80px 64px;
      background: var(--cream);
    }
    .reservation-inner {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 80px;
      align-items: start;
    }

    /* Colonne infos */
    .reservation-info h2 { margin-bottom: 12px; }
    .reservation-info-sub {
      font-family: var(--baskerville); font-size: 14px;
      color: var(--stone); line-height: 1.8; margin-top: 12px;
    }
    .reservation-points {
      margin-top: 36px;
      display: flex; flex-direction: column; gap: 16px;
    }
    .reservation-point {
      display: flex; align-items: flex-start; gap: 12px;
      padding-bottom: 16px; border-bottom: 1px solid var(--mist);
    }
    .reservation-point:last-child { border-bottom: none; padding-bottom: 0; }
    .reservation-point-sq {
      width: 7px; height: 7px; background: var(--sage);
      flex-shrink: 0; margin-top: 7px;
    }
    .reservation-point-text {
      font-family: var(--baskerville); font-size: 13px;
      color: var(--ink); line-height: 1.65;
    }
    .reservation-point-text strong { color: var(--sage); }

    /* Formulaire */
    .reservation-form-wrap {
      background: var(--warm-white);
      padding: 48px;
      border-top: 3px solid var(--amber);
    }
    .form-intro {
      font-family: var(--roca); font-size: 22px; font-weight: 700;
      color: var(--ink); margin-bottom: 6px; line-height: 1.2;
    }
    .form-intro em { color: var(--sage); font-style: italic; font-weight: 400; }
    .form-sub {
      font-family: var(--baskerville); font-size: 13px;
      color: var(--stone); line-height: 1.6; margin-bottom: 32px;
    }
    .form-section-title {
      font-family: var(--lekton); font-size: 9px; letter-spacing: 3px;
      text-transform: uppercase; color: var(--amber);
      margin: 24px 0 16px; padding-bottom: 8px;
      border-bottom: 1px solid var(--mist);
    }
    .form-section-title:first-of-type { margin-top: 0; }
    .form-group { margin-bottom: 16px; }
    .form-label {
      font-family: var(--lekton); font-size: 9px; letter-spacing: 2px;
      text-transform: uppercase; color: var(--stone);
      display: block; margin-bottom: 7px;
    }
    .form-label .required { color: var(--amber); margin-left: 2px; }
    .form-input, .form-textarea, .form-select {
      width: 100%; background: var(--cream); border: 1.5px solid var(--mist);
      padding: 11px 14px; font-family: var(--baskerville); font-size: 13px;
      color: var(--ink); transition: border-color 0.2s; outline: none; appearance: none;
    }
    .form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--sage); }
    .form-textarea { min-height: 90px; resize: vertical; }
    .form-select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7670' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-submit {
      width: 100%; background: var(--amber); color: var(--warm-white);
      font-family: var(--lekton); font-size: 10px; letter-spacing: 2.5px;
      text-transform: uppercase; font-weight: 700; padding: 16px;
      border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center; gap: 10px;
      transition: background 0.2s; margin-top: 8px;
    }
    .form-submit:hover { background: var(--amber-deep); }
    .form-submit:disabled { background: var(--stone); cursor: not-allowed; }
    .form-note {
      font-family: var(--baskerville); font-size: 11px; font-style: italic;
      color: var(--stone); text-align: center; margin-top: 12px; line-height: 1.5;
    }
    .form-error {
      font-family: var(--lekton); font-size: 9px; letter-spacing: 1px;
      color: #c0392b; margin-top: 4px; display: none;
    }
    .form-input.error, .form-select.error { border-color: #c0392b; }

    /* Succès */
    .form-success-block {
      display: none;
      background: var(--sage-pale);
      border: 1.5px solid var(--sage);
      padding: 40px 32px;
      text-align: center;
    }
    .form-success-block.visible { display: block; }
    .form-success-icon {
      width: 48px; height: 48px; margin: 0 auto 20px;
      background: var(--sage); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .form-success-title {
      font-family: var(--roca); font-size: 22px; font-weight: 700;
      color: var(--sage); margin-bottom: 10px;
    }
    .form-success-text {
      font-family: var(--baskerville); font-size: 14px;
      color: var(--sage); line-height: 1.7;
    }

/* ══════════════════════════════════════════════
   RESPONSIVE — tablette ≤ 1024px
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 0 28px; }
  .hero { padding: calc(var(--nav-h) + 16px) 28px 64px; gap: 40px; }
  .benefits-header { padding: 0 28px; }
  .how-section, .outils-section, .tuteur-section, .niveaux-section,
  .prix-section, .simulateur-section, .frequence-section, .reserver-section,
  .faq-section, .contact-section { padding-left: 28px; padding-right: 28px; }
  .cta-section { padding: 0 28px; }
  footer { padding: 40px 28px; }
  .tuteur-page-hero { padding: calc(var(--nav-h) + 40px) 28px 56px; }
  .tuteur-stats-band { padding: 0 28px; }
  .parcours-section { padding: 72px 28px; }
  .niveaux-section { padding: 72px 28px; }
  .reservation-section { padding: 72px 28px; }
  .reservation-hero { padding: calc(var(--nav-h) + 40px) 28px 56px; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — mobile ≤ 850px
══════════════════════════════════════════════ */
@media (max-width: 768px) {
  nav { padding: 0 28px; gap: 8px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-cta-full  { display: none; }
  .nav-cta-short { display: none; }
  .nav-cta .arrow { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { grid-template-columns: 1fr; padding: calc(var(--nav-h) + 24px) 20px 56px; gap: 36px; min-height: auto; }
  .hero::before { display: none; }
  .hero-sub { max-width: 100%; font-size: 15px; margin-bottom: 32px; }
  .hero-btns { gap: 20px; }
  .hero-exp-card { padding: 28px; }

  /* Benefits carousel */
  .benefits { padding: 64px 0; }
  .benefits-header { padding: 0 20px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .benefit-card { flex: 0 0 74%; padding: 28px 24px; }

  /* Page hero */
  .page-hero { padding: calc(var(--nav-h) + 32px) 20px 56px; }

  /* Sections */
  .how-section, .outils-section, .tuteur-section, .niveaux-section,
  .prix-section, .simulateur-section, .frequence-section, .reserver-section,
  .faq-section, .contact-section { padding: 56px 20px; }
  .cta-section { padding: 0 20px; }
  footer { flex-direction: column; align-items: flex-start; padding: 32px 20px; gap: 24px; }
  .footer-contact { text-align: left; }

  /* Grids → single column */
  .hero { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .how-visual { position: static; }
  .outils-grid { grid-template-columns: 1fr; }
  .tuteur-inner { grid-template-columns: 1fr; gap: 40px; }
  .tuteur-section { padding: 56px 20px; overflow: hidden; }
  .tuteur-card { padding: 28px 20px; }
  .tuteur-stats { grid-template-columns: 1fr 1fr; }
  .niveaux-grid { grid-template-columns: 1fr 1fr; }
  .prix-grid { grid-template-columns: 1fr; gap: 36px; }
  .frequence-grid { grid-template-columns: 1fr; }
  .reserver-steps { grid-template-columns: 1fr; }
  .simulateur-result { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-sidebar { position: static; }
  .faq-cats { flex-direction: row; flex-wrap: wrap; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  /* CTA strip */
  .cta-inner { flex-direction: column; align-items: stretch; padding: 24px 0; }
  .cta-left { padding: 0 0 16px; }
  .cta-section h2 { white-space: normal; font-size: clamp(15px,5vw,19px); }
  .cta-divider { width: 100%; height: 1px; align-self: auto; }
  .cta-sub { padding: 16px 0; }
  .cta-btn { padding: 15px 0; justify-content: center; }

  /* Typography */
  h1 { font-size: clamp(32px, 8vw, 44px); }
  h2 { font-size: clamp(24px, 6.5vw, 36px); }


  /* Tuteur */
  .tuteur-page-hero { padding: calc(var(--nav-h) + 32px) 20px 48px; }
  .tuteur-page-hero-inner { grid-template-columns: 1fr; gap: 10px; }
  .tuteur-stats-band { padding: 0 20px; }
  .tuteur-stats-band-inner { grid-template-columns: 1fr 1fr; }
  .tuteur-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px; }
  .parcours-section { padding: 56px 20px; }
  .parcours-grid { grid-template-columns: 1fr; gap: 48px; }
  .niveaux-section { padding: 56px 20px; }
  .niveaux-grid { grid-template-columns: 1fr 1fr; }

  /* Réservation */
  .reservation-hero { padding: calc(var(--nav-h) + 32px) 20px 48px; }
      .reservation-section { padding: 56px 20px; }
      .reservation-inner { grid-template-columns: 1fr; gap: 40px; }
      .reservation-form-wrap { padding: 32px 24px; }
      .form-row { grid-template-columns: 1fr; }

}

/* ══════════════════════════════════════════════
   RESPONSIVE — petit mobile ≤ 480px
══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .niveaux-grid { grid-template-columns: 1fr; }
  .simulateur-result { grid-template-columns: 1fr; }
  .tuteur-stats { grid-template-columns: 1fr 1fr; }
  .hero-exp-pills { gap: 6px; }
  .niveaux-grid { grid-template-columns: 1fr; }
  .tuteur-stats-band-inner { grid-template-columns: 1fr 1fr; }
}
