/* ═══════════════════════════════════════════════════
   KLYN — main.css
   Luxury Fitness · Noir · Or · Crème
   ═══════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────── */
:root {
  --black:   #0A0A0A;
  --black2:  #111111;
  --black3:  #181818;
  --gold:    #D4AF37;
  --gold2:   #E8C84A;
  --cream:   #F5F0E8;
  --cream2:  #EDE8DF;
  --white:   #FFFFFF;
  --gray:    #888888;
  --gray2:   #555555;

  --shape-color:    #C9956A;
  --mind-color:     #8B6BAE;
  --military-color: #D4AF37;

  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-body:  'Montserrat', Arial, sans-serif;

  --max-w: 1280px;
  --radius: 3px;
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; }

/* ── Utility ────────────────────────────────────── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
}
.eyebrow.gold { color: var(--gold); }
.gold { color: var(--gold); }
.h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.h2-white { color: var(--white); }
.subtitle { color: var(--gray); font-size: 0.92rem; line-height: 1.8; }

/* Fade-in animation */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Buttons ────────────────────────────────────── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-gold.btn-lg { padding: 1.2rem 3rem; font-size: 0.82rem; }
.btn-gold.btn-sm { padding: 0.7rem 1.5rem; font-size: 0.7rem; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.25s, color 0.25s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-mind {
  display: inline-block;
  background: var(--mind-color);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  transition: opacity 0.25s;
}
.btn-mind:hover { opacity: 0.85; }

.btn-white {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  transition: background 0.25s;
}
.btn-white:hover { background: rgba(255,255,255,0.2); }

/* ── Programme tags ─────────────────────────────── */
.prog-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  margin-bottom: 0.8rem;
}
.tag-shape    { background: rgba(201,149,106,0.15); color: var(--shape-color); border: 1px solid rgba(201,149,106,0.3); }
.tag-mind     { background: rgba(139,107,174,0.15); color: var(--mind-color); border: 1px solid rgba(139,107,174,0.3); }
.tag-military { background: rgba(212,175,55,0.12); color: var(--gold); border: 1px solid rgba(212,175,55,0.3); }

/* ════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 0;
  transition: background 0.4s, padding 0.4s;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(24px);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 2.5rem;
}
.nav-logo img { height: 34px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 2rem; flex: 1;
}
.nav-links a {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  transition: color 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta-btn {
  background: var(--gold); color: var(--black);
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.65rem 1.5rem; white-space: nowrap;
  transition: background 0.25s;
}
.nav-cta-btn:hover { background: var(--gold2); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 4px; margin-left: auto;
}
.burger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

@media (max-width: 1024px) {
  .nav-cta-btn { display: none; }
  .burger { display: flex; }
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: rgba(10,10,10,0.98); flex-direction: column;
    justify-content: center; align-items: center; gap: 2.5rem; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; letter-spacing: 0.08em; }
}

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-img-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.75) 45%,
    rgba(10,10,10,0.3) 75%,
    transparent 100%
  );
}
.hero-body {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  padding-top: 100px;
  width: 100%;
}
.hero-text { max-width: 600px; }
.hero-h1 {
  font-family: var(--font-title);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero-sub {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust {
  display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap;
  font-size: 0.72rem; color: rgba(255,255,255,0.45); letter-spacing: 0.05em;
}
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 1; cursor: pointer;
}
.scroll-line {
  display: block; width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim { 0%,100%{opacity:.3;transform:scaleY(.4);transform-origin:top;} 50%{opacity:1;transform:scaleY(1);} }

/* ════════════════════════════════════════════════
   PROOF BAR
════════════════════════════════════════════════ */
.proof-bar {
  background: var(--black2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 2rem 0;
}
.proof-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.proof-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0.5rem 3rem; text-align: center;
}
.proof-item strong {
  font-family: var(--font-title);
  font-size: 2.2rem; font-weight: 400; color: var(--white); line-height: 1;
}
.proof-item span { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-top: 0.3rem; }
.proof-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.08); }
@media (max-width: 768px) {
  .proof-inner { gap: 1rem; }
  .proof-sep { display: none; }
  .proof-item { padding: 0.5rem 1.5rem; }
}

/* ════════════════════════════════════════════════
   FLAGSHIP
════════════════════════════════════════════════ */
.flagship { padding: 7rem 0; }
.flagship-header {
  max-width: var(--max-w); margin: 0 auto 4rem; padding: 0 2rem;
}
.flagship-grid {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
}
@media (max-width: 900px) { .flagship-grid { grid-template-columns: 1fr; } }

.flagship-card { display: flex; flex-direction: column; background: var(--black2); }
.flagship-cover { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.flagship-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.flagship-card:hover .flagship-cover img { transform: scale(1.04); }
.flagship-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.4) 0%, transparent 60%);
}
.cover-badge {
  position: absolute; top: 1.2rem; left: 1.2rem;
  background: var(--gold); color: var(--black);
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 0.3rem 0.8rem;
}

.flagship-info { padding: 2.5rem; flex: 1; display: flex; flex-direction: column; }
.flagship-info h3 {
  font-family: var(--font-title);
  font-size: 1.8rem; font-weight: 400; margin-bottom: 1rem; line-height: 1.15;
}
.flagship-info p { font-size: 0.87rem; color: var(--gray); line-height: 1.8; margin-bottom: 1.5rem; flex: 1; }
.prog-points { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; }
.prog-points li { font-size: 0.8rem; color: rgba(255,255,255,0.65); }
.prog-buy-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.prog-price { font-family: var(--font-title); font-size: 2.5rem; font-weight: 300; }
.prog-price span { font-size: 1.2rem; }

/* ════════════════════════════════════════════════
   COACHES
════════════════════════════════════════════════ */
.coaches-section { padding: 7rem 0; background: var(--black3); }
.coaches-header {
  max-width: var(--max-w); margin: 0 auto 4rem; padding: 0 2rem;
}
.coaches-grid {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
@media (max-width: 1400px) { .coaches-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .coaches-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .coaches-grid { grid-template-columns: 1fr; } }

.coach-card {
  background: var(--black2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Photo — propre, sans overlay, sans texte */
.coach-photo-wrap {
  overflow: hidden;
  flex-shrink: 0;
  aspect-ratio: 4/5;
}
.coach-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s var(--ease);
}
.coach-card:hover .coach-photo { transform: scale(1.03); }

/* Infos — SOUS la photo, jamais dessus */
.coach-info {
  padding: 1.8rem 2rem 2.2rem;
  border-top: 2px solid var(--gold);
  background: #111111;
  flex: 1;
}
.coach-name {
  font-family: var(--font-title);
  font-size: 1.9rem; font-weight: 400;
  margin-bottom: 0.4rem;
  color: var(--white);
}
.coach-prog { display: inline-block; margin-bottom: 1rem; }
.coach-bio {
  font-size: 0.82rem; color: var(--gray);
  line-height: 1.85; margin-bottom: 1.2rem;
}
.coach-quote {
  font-family: var(--font-title);
  font-size: 1rem; font-style: italic;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════
   PROGRAMMES GRID
════════════════════════════════════════════════ */
.programmes { padding: 7rem 0; }
.programmes-header {
  max-width: var(--max-w); margin: 0 auto 3rem; padding: 0 2rem;
}
.progs-grid {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 3px;
  margin-bottom: 3px;
}
@media (max-width: 1200px) { .progs-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .progs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .progs-grid { grid-template-columns: 1fr; } }

.prog-card { background: var(--black2); overflow: hidden; }
.prog-cover-wrap { position: relative; aspect-ratio: 2/3; overflow: hidden; }
.prog-cover-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.prog-card:hover .prog-cover-wrap img { transform: scale(1.05); }
.prog-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.6) 0%, transparent 60%);
}
.prog-cover-badge {
  position: absolute; bottom: 1rem; left: 1rem;
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.25rem 0.6rem;
}
.bestseller { background: var(--gold); color: var(--black); }

.prog-card-body { padding: 1.5rem; }
.prog-card-body h4 { font-family: var(--font-title); font-size: 1.2rem; font-weight: 400; margin-bottom: 0.8rem; line-height: 1.3; }
.prog-card-price { display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 1rem; }
.price { font-family: var(--font-title); font-size: 1.8rem; color: var(--white); }
.price-note { font-size: 0.68rem; color: var(--gray); }

/* ── BUNDLE ROW ─── */
.bundle-row { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.bundle-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--black2);
  border: 1px solid rgba(212,175,55,0.18);
}
@media (max-width: 768px) { .bundle-card { grid-template-columns: 1fr; } }
.bundle-covers {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px; overflow: hidden;
}
.bundle-covers img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 2/3; filter: brightness(0.6); transition: filter 0.3s; }
.bundle-card:hover .bundle-covers img { filter: brightness(0.8); }
.bundle-info { padding: 3rem 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.bundle-badge { display: inline-block; font-size: 0.7rem; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 1.2rem; }
.bundle-info h3 { font-family: var(--font-title); font-size: 2rem; font-weight: 400; margin-bottom: 1rem; line-height: 1.2; }
.bundle-info p { font-size: 0.85rem; color: var(--gray); line-height: 1.8; margin-bottom: 1.8rem; }
.bundle-price { display: flex; align-items: baseline; gap: 0.8rem; margin-bottom: 2rem; flex-wrap: wrap; }
.old-price { font-family: var(--font-title); font-size: 1.5rem; color: var(--gray); text-decoration: line-through; opacity: 0.5; }
.new-price { font-family: var(--font-title); font-size: 2.5rem; color: var(--gold); }
.economy { font-size: 0.72rem; color: #4caf50; letter-spacing: 0.05em; }

/* ════════════════════════════════════════════════
   APP TEASER
════════════════════════════════════════════════ */
.app-section { padding: 8rem 0; background: var(--black3); overflow: hidden; }
.app-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 400px; gap: 6rem; align-items: center;
}
@media (max-width: 1024px) { .app-inner { grid-template-columns: 1fr; gap: 4rem; } }

.app-text { }
.app-desc { font-size: 0.95rem; color: var(--gray); line-height: 1.9; margin-bottom: 2rem; max-width: 500px; }
.app-features { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2.5rem; }
.app-features li { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

.app-waitlist { display: flex; gap: 0; margin-bottom: 0.8rem; max-width: 480px; }
.app-waitlist input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0 1.2rem;
  outline: none;
  transition: border-color 0.3s;
  min-height: 52px;
}
.app-waitlist input:focus { border-color: var(--gold); }
.app-waitlist input::placeholder { color: rgba(255,255,255,0.3); }
.app-note { font-size: 0.7rem; color: var(--gray); opacity: 0.5; }

/* Phone mockup */
.app-mockup { display: flex; justify-content: center; position: relative; }
.phone-frame {
  width: 280px; height: 560px;
  background: var(--black2);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,175,55,0.1);
}
.phone-screen { height: 100%; display: flex; flex-direction: column; }
.app-ui-header {
  padding: 1.2rem 1rem 0.5rem;
  display: flex; justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.app-logo { height: 22px; width: auto; }
.app-ui-hero { position: relative; height: 200px; overflow: hidden; flex-shrink: 0; }
.app-ui-bg { width: 100%; height: 100%; object-fit: cover; }
.app-ui-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1rem;
}
.app-ui-day { font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.app-ui-title { font-family: var(--font-title); font-size: 1.1rem; font-weight: 400; margin-bottom: 0.5rem; }
.app-ui-progress { height: 2px; background: rgba(255,255,255,0.15); border-radius: 1px; }
.progress-bar { height: 100%; background: var(--gold); border-radius: 1px; }

.app-ui-session { padding: 0.8rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.session-item {
  display: flex; align-items: center; gap: 0.7rem; padding: 0.5rem 0.6rem;
  font-size: 0.72rem; color: rgba(255,255,255,0.6); border-radius: 4px;
}
.active-session { background: rgba(212,175,55,0.08); color: var(--white); }
.session-icon { font-size: 0.65rem; color: var(--gold); }

.app-ui-bottom { padding: 0.8rem; }
.app-start-btn {
  width: 100%; background: var(--gold); color: var(--black);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.75rem; border-radius: 4px; border: none; cursor: pointer;
}
.phone-glow {
  position: absolute; inset: -20px; z-index: -1;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ════════════════════════════════════════════════
   TÉMOIGNAGES
════════════════════════════════════════════════ */
.temoignages { padding: 7rem 0; }
.temo-header {
  max-width: var(--max-w); margin: 0 auto 3.5rem; padding: 0 2rem;
}
.temo-grid {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 3px;
}
@media (max-width: 900px) { .temo-grid { grid-template-columns: 1fr; } }

.temo-card { background: var(--black2); padding: 2.5rem 2rem; position: relative; }
.featured-temo { background: rgba(212,175,55,0.05); border: 1px solid rgba(212,175,55,0.15); }
.temo-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 1.2rem; }
.temo-text { font-family: var(--font-title); font-size: 1.05rem; font-style: italic; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 2rem; }
.temo-author { display: flex; align-items: center; gap: 1rem; }
.temo-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title); font-size: 1.3rem; color: var(--gold);
  flex-shrink: 0;
}
.temo-name { font-size: 0.85rem; font-weight: 600; }
.temo-prog { font-size: 0.7rem; color: var(--gray); margin-top: 0.15rem; }
.temo-result {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: var(--gold); color: var(--black);
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
}

/* ════════════════════════════════════════════════
   CTA FINAL
════════════════════════════════════════════════ */
.cta-final { position: relative; padding: 10rem 0; text-align: center; overflow: hidden; }
.cta-final-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.cta-bg-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.82); }
.cta-final-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; padding: 0 2rem; }
.cta-sub { font-size: 0.85rem; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer { background: #060606; border-top: 1px solid rgba(255,255,255,0.05); padding: 5rem 0 2rem; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 280px 1fr; gap: 5rem; margin-bottom: 4rem;
}
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 3rem; } }
.footer-logo { height: 30px; width: auto; margin-bottom: 1.2rem; }
.footer-tagline { font-size: 0.82rem; color: var(--gray); line-height: 1.8; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a { color: var(--gray); transition: color 0.25s; }
.footer-socials a:hover { color: var(--gold); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 640px) { .footer-links { grid-template-columns: repeat(2, 1fr); } }
.footer-col h4 { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.2rem; color: var(--white); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.82rem; color: var(--gray); transition: color 0.25s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto; padding: 2rem 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.72rem; color: rgba(255,255,255,0.25);
}

/* ── Responsive global ─────────────────────────── */
@media (max-width: 768px) {
  .hero-h1 { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .hero-actions { flex-direction: column; }
  .flagship-info { padding: 1.5rem; }
  .flagship-info h3 { font-size: 1.5rem; }
  .bundle-info { padding: 2rem 1.5rem; }
  .app-section { padding: 5rem 0; }
  .cta-final { padding: 6rem 0; }
}

/* ── Legacy variable aliases (compatibility with subpages) ── */
:root {
  --or:         var(--gold);
  --or-clair:   var(--gold2);
  --or-fonce:   #A08620;
  --or-shape:   var(--shape-color);
  --or-mind:    var(--mind-color);
  --or-built:   var(--gold);
  --blanc:      var(--white);
  --gris-clair: #CCCCCC;
  --gris-mid:   var(--gray);
  --gris-fonce: #444444;
  --noir:       var(--black);
  --noir-2:     var(--black2);
  --noir-3:     var(--black3);
  --noir-4:     #242424;
  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-body:  'Montserrat', Arial, sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:      1280px;
}

/* ── Subpage shared components (used by klynshape, klynmind, klynbuilt, etc.) ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 300; line-height: 1.15; margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc { color: var(--gray); font-size: 0.9rem; line-height: 1.8; max-width: 600px; }
.section-header { text-align: center; margin-bottom: 4rem; }

/* Subpage buttons */
.btn { display: inline-block; padding: 0.9rem 2.2rem; font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; text-align: center; border: none; }
.btn-primary { background: var(--gold); color: #0A0A0A; }
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-shape { background: var(--shape-color); color: #0A0A0A; }
.btn-shape:hover { opacity: 0.85; transform: translateY(-2px); }
.btn-full { display: block; width: 100%; }

/* Fade-up (same as fade-in) */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Page hero for subpages */
.page-hero {
  padding: 160px 0 100px; text-align: center; position: relative; overflow: hidden;
  background: var(--black);
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to bottom, transparent, #0A0A0A);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title {
  font-family: var(--font-title); font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300; letter-spacing: 0.05em; line-height: 1; margin: 1.5rem 0;
}
.page-hero-sub { color: var(--gray); font-size: 1rem; line-height: 1.9; font-weight: 300; }
.universe-badge {
  display: inline-block; font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 0.4rem 1.2rem;
}

/* Subpage intro */
.univers-intro-section { padding: 6rem 0; }
.univers-intro { display: grid; grid-template-columns: 1fr 360px; gap: 6rem; align-items: start; }
@media (max-width: 1024px) { .univers-intro { grid-template-columns: 1fr; gap: 3rem; } }
.intro-body { color: var(--gray); font-size: 0.9rem; line-height: 1.9; margin-bottom: 1.2rem; }
.intro-cta { margin-top: 2rem; }
.intro-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.intro-stat { background: #111; padding: 2rem; text-align: center; }
.intro-stat-num { display: block; font-family: var(--font-title); font-size: 2.5rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 0.5rem; }
.intro-stat-label { font-size: 0.7rem; letter-spacing: 0.08em; color: var(--gray); text-transform: uppercase; }

/* Subpage features */
.features-section { padding: 6rem 0; background: #080808; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2px; }
.feature-item { background: #0f0f0f; padding: 2.5rem 2rem; }
.feature-icon { font-size: 1rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.feature-item h3 { font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 0.8rem; text-transform: uppercase; }
.feature-item p { font-size: 0.83rem; color: var(--gray); line-height: 1.8; }

/* Semaines timeline */
.semaines-section { padding: 6rem 0; }
.semaines-timeline { display: flex; flex-direction: column; gap: 2px; max-width: 800px; margin: 3rem auto 0; }
.semaine-item { display: grid; grid-template-columns: 80px 1fr; gap: 2.5rem; background: #111; padding: 2.5rem; align-items: start; }
.semaine-num { font-family: var(--font-title); font-size: 2.5rem; font-weight: 300; color: var(--gold); line-height: 1; }
.semaine-content h3 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.7rem; }
.semaine-content p { font-size: 0.85rem; color: var(--gray); line-height: 1.8; }

/* Coach section subpages */
.coach-section { padding: 6rem 0; background: #080808; }
.coach-inner { display: grid; grid-template-columns: 320px 1fr; gap: 5rem; align-items: start; max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
@media (max-width: 768px) { .coach-inner { grid-template-columns: 1fr; gap: 3rem; } }
.coach-placeholder { aspect-ratio: 3/4; background: #111; border: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; color: var(--gray); }
.coach-placeholder span { font-family: var(--font-title); font-size: 1.5rem; color: rgba(255,255,255,0.15); }
.coach-desc { color: var(--gray); font-size: 0.88rem; line-height: 1.9; margin-bottom: 1.5rem; }
.coach-quote { border-left: 2px solid var(--gold); padding-left: 1.5rem; font-family: var(--font-title); font-size: 1.2rem; font-style: italic; color: rgba(255,255,255,0.65); }
.coach-bio { color: var(--gray); font-size: 0.88rem; line-height: 1.9; margin-bottom: 1.5rem; }

/* Buy section */
.buy-section { padding: 6rem 0; }
.buy-card { background: #111; border: 1px solid rgba(212,175,55,0.15); padding: 3rem 2.5rem; max-width: 560px; margin: 0 auto; }
.buy-badge { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.buy-title { font-family: var(--font-title); font-size: 2rem; font-weight: 300; margin-bottom: 1.5rem; }
.buy-price { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 2rem; }
.buy-includes { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.buy-includes li { font-size: 0.83rem; color: #CCCCCC; }
.buy-guarantee { font-size: 0.72rem; color: var(--gray); text-align: center; margin-top: 1rem; opacity: 0.6; }
.price-amount { font-family: var(--font-title); font-size: 2rem; color: var(--white); }
.price-note { font-size: 0.72rem; color: var(--gray); margin-left: 0.4rem; }
.price-old { font-size: 1rem; color: var(--gray); text-decoration: line-through; opacity: 0.5; margin-right: 0.5rem; }

/* Temoignages (shared) */
.temoignages-section { padding: 8rem 0; }
.temoignages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2px; }
.temoignage-card { background: #111; padding: 2.5rem 2rem; }
.temoignage-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1.2rem; }
.temoignage-text { font-family: var(--font-title); font-size: 1.05rem; font-style: italic; color: #CCCCCC; line-height: 1.8; margin-bottom: 2rem; }
.temoignage-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(212,175,55,0.15); border: 1px solid rgba(212,175,55,0.3); display: flex; align-items: center; justify-content: center; font-family: var(--font-title); font-size: 1.2rem; color: var(--gold); flex-shrink: 0; }
.author-name { font-size: 0.85rem; font-weight: 600; }
.author-programme { font-size: 0.72rem; color: var(--gray); margin-top: 0.2rem; }
.author-mind { color: var(--mind-color); }
.author-built { color: var(--gold); }

/* Footer subpages */
.footer-top { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; margin-bottom: 4rem; }
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr; gap: 3rem; } }
.footer-brand .footer-logo { height: 30px; margin-bottom: 1.2rem; }
.footer-tagline { font-size: 0.8rem; color: var(--gray); line-height: 1.8; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1rem; }
.social-link { color: var(--gray); transition: color 0.3s; }
.social-link:hover { color: var(--gold); }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 768px) { .footer-nav { grid-template-columns: repeat(2, 1fr); } }
.footer-col-title { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.82rem; color: var(--gray); transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.75rem; color: var(--gray); opacity: 0.5; }

/* Boutique page */
.boutique-card { background: #111; padding: 2.5rem 2rem; position: relative; overflow: hidden; transition: transform 0.3s; }
.boutique-card:hover { transform: translateY(-4px); z-index: 1; }
.boutique-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; opacity: 0; transition: opacity 0.3s; }
.boutique-card:hover::before { opacity: 1; }
.card-shape::before { background: var(--shape-color); }
.card-mind::before { background: var(--mind-color); }
.card-built::before, .card-bundle::before { background: var(--gold); }
.boutique-tag { display: inline-block; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 2px; margin-bottom: 1.2rem; }
.tag-shape { background: rgba(201,149,106,0.1); color: var(--shape-color); }
.tag-mind { background: rgba(139,107,174,0.1); color: var(--mind-color); }
.tag-built, .tag-bundle { background: rgba(212,175,55,0.1); color: var(--gold); }
.boutique-card h3 { font-family: var(--font-title); font-size: 1.6rem; font-weight: 400; margin-bottom: 0.8rem; }
.boutique-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.boutique-card-details { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.8rem; }
.boutique-detail { font-size: 0.72rem; color: var(--gray); opacity: 0.7; }
.boutique-pricing { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 1.5rem; }
.boutique-price { font-family: var(--font-title); font-size: 2.2rem; font-weight: 300; color: var(--white); }
.boutique-old-price { font-size: 1rem; color: var(--gray); text-decoration: line-through; opacity: 0.5; }
.boutique-economy { font-size: 0.72rem; letter-spacing: 0.05em; color: #4caf50; }
.boutique-buy-btn { display: block; width: 100%; padding: 1rem; border: none; font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; text-align: center; text-decoration: none; }
.buy-shape { background: linear-gradient(135deg, var(--shape-color), #b07d54); color: #0A0A0A; }
.buy-mind { background: linear-gradient(135deg, var(--mind-color), #6d4fa0); color: white; }
.buy-built { background: linear-gradient(135deg, var(--gold), #b8960f); color: #0A0A0A; }
.buy-bundle { background: linear-gradient(135deg, var(--gold), var(--shape-color)); color: #0A0A0A; }
.boutique-buy-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.bundle-card { border: 1px solid rgba(212,175,55,0.15); }
.boutique-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2px; margin-bottom: 6rem; }
.boutique-filters { display: flex; justify-content: center; gap: 1rem; padding: 2rem 0 3rem; flex-wrap: wrap; }
.filter-btn { padding: 0.6rem 1.8rem; border: 1px solid rgba(255,255,255,0.15); background: transparent; color: var(--gray); font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }
.filter-btn:hover, .filter-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.05); }
.prog-badge { display: inline-block; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; background: var(--gold); color: #0A0A0A; padding: 0.25rem 0.7rem; margin-bottom: 0.8rem; }
