/* =============================================
   GUILLAUME DUPUY COACHING — Main Stylesheet
   REBRANDING 2024 — Dark Cinematic Fitness
   Palette : Warm White #FAFAF8 · Gold #C8A960 · Ink Black #18181B
   Font    : Outfit (Google Fonts)
   ============================================= */

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

/* ─── CSS Variables ─────────────────────────────────── */
:root {
  --color-white:       #FAFAF8;
  --color-pure-white:  #FFFFFF;
  --color-gold:        #C8A960;
  --color-gold-light:  #E0D0A0;
  --color-gold-dark:   #A88B40;
  --color-black:       #18181B;
  --color-black-soft:  #27272A;
  --color-black-deep:  #0C0C0E;
  --color-gray:        #71717A;
  --color-gray-light:  #F4F4F5;
  --color-gray-border: rgba(200, 169, 96, 0.15);
  --font-main:         'Outfit', sans-serif;
  --max-width:         1400px;
  --radius-lg:         1.5rem;
  --radius-md:         1rem;
  --radius-sm:         0.5rem;
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast:   all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset & Base ──────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul  { list-style: none; }

/* ─── Typography ────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--color-black);
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
  color: var(--color-gray);
  max-width: 65ch;
  font-size: 1.05rem;
}

.text-gold  { color: var(--color-gold); }
.text-white { color: var(--color-pure-white); }

/* ─── Container ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 1024px) { .container { padding: 0 4rem; } }

/* ─── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: scale(0.97) translateY(1px); }

.btn-primary { background: var(--color-gold); color: var(--color-black); }
.btn-primary:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(200, 169, 96, 0.4);
}

.btn-dark { background: var(--color-black); color: var(--color-pure-white); }
.btn-dark:hover {
  background: var(--color-black-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(24, 24, 27, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-black);
  border: 1.5px solid var(--color-gold);
}
.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-black);
  transform: translateY(-2px);
}

/* Dark-context outline override (used inside hero) */
.btn-outline-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--color-pure-white);
  transform: translateY(-2px);
}

.btn-cta-phone {
  background: var(--color-gold);
  color: var(--color-black);
  font-weight: 700;
  padding: 1rem 2.25rem;
  font-size: 1rem;
  box-shadow: 0 8px 24px -6px rgba(200, 169, 96, 0.35);
}
.btn-cta-phone:hover {
  background: var(--color-gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -8px rgba(200, 169, 96, 0.5);
}
.btn-cta-phone svg {
  width: 20px;
  height: 20px;
  animation: phone-ring 2s ease-in-out infinite;
}

@keyframes phone-ring {
  0%, 100% { transform: rotate(0deg); }
  10%       { transform: rotate(14deg); }
  20%       { transform: rotate(-10deg); }
  30%       { transform: rotate(8deg); }
  40%       { transform: rotate(-6deg); }
  50%       { transform: rotate(0deg); }
}

/* ─── Navigation ────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(24, 24, 27, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 169, 96, 0.12);
  padding: 0.6rem 0;
}

/* Navbar on light-bg pages (forfaits, contact…) */
.navbar-light.scrolled {
  background: rgba(250, 250, 248, 0.94);
  border-bottom-color: var(--color-gray-border);
}
.navbar-light.scrolled .nav-links a    { color: var(--color-gray); }
.navbar-light.scrolled .nav-links a:hover,
.navbar-light.scrolled .nav-links a.active { color: var(--color-black); }
.navbar-light.scrolled .hamburger span { background: var(--color-black); }
.navbar-light.scrolled .nav-logo-text .name { color: var(--color-black); }

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img {
  height: 50px;
  width: auto;
  transition: var(--transition-fast);
  border-radius: 8px;
  object-fit: contain;
}
.navbar.scrolled .nav-logo img { height: 40px; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-text .name {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-pure-white);
}
.navbar.scrolled .nav-logo-text .name { color: var(--color-pure-white); }
.navbar-light:not(.scrolled) .nav-logo-text .name { color: var(--color-black); }
.nav-logo-text .tagline {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.65);
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition-fast);
}
.nav-links a:hover,
.nav-links a.active { color: var(--color-pure-white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Light navbar links override */
.navbar-light:not(.scrolled) .nav-links a { color: var(--color-gray); }
.navbar-light:not(.scrolled) .nav-links a:hover,
.navbar-light:not(.scrolled) .nav-links a.active { color: var(--color-black); }

.nav-cta { margin-left: 1rem; }

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-pure-white);
  transition: var(--transition-fast);
  transform-origin: center;
}
.navbar-light:not(.scrolled) .hamburger span { background: var(--color-black); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 20, 0.97);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-pure-white);
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-smooth);
}
.mobile-menu.active a { transform: translateY(0); opacity: 1; }
.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.35s; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta    { display: none; }
  .hamburger  { display: flex; }
}

/* ─── Hero (Dark Cinematic) ─────────────────────────── */
.hero {
  min-height: 100dvh;
  background: var(--color-black-deep);
  position: relative;
  overflow: hidden;
}

/* Animated mesh gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  z-index: 2;
}
.hero-orb-1 {
  width: 560px;
  height: 560px;
  top: -120px;
  left: -100px;
  background: radial-gradient(circle, rgba(200, 169, 96, 0.11) 0%, transparent 65%);
  filter: blur(70px);
  animation: orbFloat1 14s ease-in-out infinite;
}
.hero-orb-2 {
  width: 380px;
  height: 380px;
  bottom: 8%;
  left: 18%;
  background: radial-gradient(circle, rgba(200, 169, 96, 0.07) 0%, transparent 65%);
  filter: blur(55px);
  animation: orbFloat2 18s ease-in-out infinite;
}
.hero-orb-3 {
  width: 260px;
  height: 260px;
  top: 35%;
  right: 38%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.025) 0%, transparent 65%);
  filter: blur(45px);
  animation: orbFloat3 11s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  25%       { transform: translate(35px, -28px); }
  50%       { transform: translate(18px, -50px); }
  75%       { transform: translate(-22px, -18px); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(-28px, 22px); }
  66%       { transform: translate(22px, 38px); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-12px, -22px); }
}

/* ── Hero: full-bleed background carousel ── */
.hero-bg-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-bg-slide.is-active { opacity: 1; }

/* Dark gradient overlay — left heavy for text contrast */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(12, 12, 14, 0.90) 0%,
    rgba(12, 12, 14, 0.72) 42%,
    rgba(12, 12, 14, 0.52) 70%,
    rgba(12, 12, 14, 0.65) 100%
  );
}

/* Carousel progress dots */
.hero-carousel-dots {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}
@media (max-width: 768px) {
  .hero-carousel-dots { bottom: 1.5rem; right: 1.5rem; }
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}
.hero-dot.is-active {
  width: 26px;
  border-radius: 3px;
  background: var(--color-gold);
}

/* Hero inner — single column, left-aligned */
.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100dvh;
  padding-top: 8rem;
  padding-bottom: 6rem;
  position: relative;
  z-index: 3;
}

/* Hero content (left column) */
.hero-content {
  padding: 2rem 0;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: rgba(200, 169, 96, 0.1);
  border: 1px solid rgba(200, 169, 96, 0.22);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 2rem;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  color: var(--color-pure-white);
  margin-bottom: 1.5rem;
}
.hero h1 .highlight {
  color: var(--color-gold);
  position: relative;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.58);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-stat .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
  white-space: nowrap;
}
.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 0.25rem;
  font-weight: 500;
}

/* Vertical separator between stats and cert badge */
.hero-stat-sep {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* Coach certifié inline badge */
.hero-stat-cert {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.hero-stat-cert .hero-stat-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: rgba(200, 169, 96, 0.13);
  border: 1px solid rgba(200, 169, 96, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}
.hero-stat-cert .number {
  font-size: 0.9rem !important;
  letter-spacing: 0 !important;
  font-weight: 700 !important;
  color: var(--color-pure-white) !important;
}

/* Hero visual (right column) */
.hero-visual {
  position: relative;
  height: 680px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(200, 169, 96, 0.13);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* Left edge fade into hero bg */
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12, 12, 14, 0.55) 0%, transparent 32%);
  z-index: 1;
  pointer-events: none;
}
/* Bottom fade */
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 14, 0.65) 0%, transparent 42%);
  z-index: 1;
  pointer-events: none;
}

/* Floating glass badge inside hero-visual */
.hero-visual-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 3;
  background: rgba(18, 18, 21, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(200, 169, 96, 0.22);
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-visual-badge .icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(200, 169, 96, 0.14);
  border: 1px solid rgba(200, 169, 96, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}
.hero-visual-badge .badge-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-pure-white);
  line-height: 1.25;
}
.hero-visual-badge .badge-detail {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.46);
}

@media (max-width: 768px) {
  .hero-inner {
    padding-top: 6.5rem;
    padding-bottom: 5rem;
  }
  .hero-content { max-width: 100%; }
  .hero-stats {
    gap: 1.25rem 1.5rem;
    padding: 1rem 1.25rem;
    flex-wrap: wrap;
  }
  .hero-stat .number { font-size: 1.5rem; }
  .hero-description { font-size: 1rem; }
  .hero-stat-sep { display: none; }
  .hero-stat-cert { width: 100%; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 0.75rem; margin-top: 0.25rem; }
}

@media (max-width: 480px) {
  .hero-inner {
    padding-top: 5.5rem;
    padding-bottom: 4rem;
  }
  .hero-stats { gap: 1rem; padding: 0.9rem 1rem; }
  .hero-stat .number { font-size: 1.35rem; }
  .hero-stat .label { font-size: 0.72rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
}

/* ─── Marquee Social Proof ──────────────────────────── */
.marquee-section {
  padding: 1.25rem 0;
  background: var(--color-black);
  border-top:    1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.marquee-outer {
  overflow: hidden;
  width: 100%;
  user-select: none;
}
/* Inner wrapper — animates as one block (-50% = one track width) */
.marquee-inner {
  display: flex;
  width: fit-content;
  animation: marquee 26s linear infinite;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-shrink: 0;
  padding-right: 3rem; /* matches gap so seam is invisible */
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
}
.marquee-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0.55;
  flex-shrink: 0;
}
/* Marquee: animate the inner block by exactly -50% (one duplicate) */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Sections ──────────────────────────────────────── */
.section { padding: clamp(4rem, 10vw, 8rem) 0; }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  background: rgba(200, 169, 96, 0.1);
  border: 1px solid rgba(200, 169, 96, 0.2);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 1.25rem;
}
.section-header h2  { margin-bottom: 1rem; }
.section-header p   { margin: 0 auto; font-size: 1.1rem; }

/* ─── About ─────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}
.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(18, 18, 21, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(200, 169, 96, 0.2);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.about-image-badge .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  font-weight: 800;
  font-size: 0.9rem;
}
.about-image-badge .text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-pure-white);
}
.about-image-badge .text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}
.about-content h2  { margin-bottom: 1.5rem; }
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
}
.about-feature { display: flex; align-items: flex-start; gap: 1rem; }
.about-feature .icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: rgba(200, 169, 96, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}
.about-feature .text h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
.about-feature .text p  { font-size: 0.85rem; line-height: 1.5; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image img { height: 360px; }
}

/* ─── Services ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-pure-white);
  border: 1px solid var(--color-gray-border);
  padding: 2rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -15px rgba(200, 169, 96, 0.15);
  border-color: rgba(200, 169, 96, 0.3);
}

/* Service card with fitness background image */
.service-img {
  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;
  border-color: transparent;
  justify-content: flex-end;
  min-height: 560px;
}
.service-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(12, 12, 14, 0.95) 0%,
    rgba(12, 12, 14, 0.55) 45%,
    rgba(12, 12, 14, 0.15) 100%);
  border-radius: var(--radius-lg);
  z-index: 0;
  transition: var(--transition-smooth);
}
.service-img:hover::before {
  background: linear-gradient(to top,
    rgba(12, 12, 14, 0.98) 0%,
    rgba(12, 12, 14, 0.65) 50%,
    rgba(12, 12, 14, 0.22) 100%);
}
.service-img .service-number,
.service-img h3,
.service-img p,
.service-img .service-link { position: relative; z-index: 1; }
.service-img h3 { color: var(--color-pure-white); }
.service-img p  { color: rgba(255, 255, 255, 0.65); }
.service-img .service-number { color: rgba(200, 169, 96, 0.2); }

.service-card .service-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(200, 169, 96, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}
.service-card h3      { margin-bottom: 0.75rem; }
.service-card p       { font-size: 0.9rem; line-height: 1.6; }
.service-locations {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.service-locations span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0C0C0E;
  background: linear-gradient(135deg, #E0D0A0 0%, #C8A960 100%);
  border: none;
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(200,169,96,0.6);
}
.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold);
}
.service-card .service-link:hover { gap: 0.75rem; }

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-img { min-height: 280px !important; }
}

/* ─── Services special badges ───────────────────────── */
.services-special-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.ssb-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: linear-gradient(135deg, rgba(200,169,96,0.18) 0%, rgba(200,169,96,0.06) 100%);
  border: 1px solid rgba(200,169,96,0.45);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.ssb-pill svg { flex-shrink: 0; }

/* ─── Services promo bar ─────────────────────────────── */
.services-promo-bar {
  margin-top: 2.5rem;
  position: relative;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #C8A960 0%, #E0D0A0 40%, #C8A960 70%, #A88B40 100%);
  overflow: hidden;
}
.services-promo-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #C8A960 0%, #E0D0A0 40%, #C8A960 70%, #A88B40 100%);
  border-radius: 20px;
  opacity: 0.6;
  filter: blur(18px);
  transform: scale(1.05);
  z-index: 0;
}
.services-promo-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, #1a1608 0%, #1e1a0a 50%, #161410 100%);
  border-radius: 18px;
  padding: 1.5rem 2rem;
  flex-wrap: wrap;
}
.services-promo-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 240px;
  padding: 0.5rem 1.5rem 0.5rem 0;
}
.services-promo-item:last-of-type {
  padding-left: 1.5rem;
  padding-right: 0;
}
.services-promo-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(200,169,96,0.2) 0%, rgba(200,169,96,0.05) 100%);
  border: 1px solid rgba(200,169,96,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
}
.services-promo-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-pure-white);
  letter-spacing: -0.01em;
  margin-bottom: 0.15rem;
}
.services-promo-text span {
  font-size: 0.82rem;
  color: rgba(200,169,96,0.7);
  line-height: 1.3;
}
.services-promo-sep {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(200,169,96,0.3), transparent);
  flex-shrink: 0;
}
.services-promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #C8A960 0%, #E0D0A0 50%, #C8A960 100%);
  background-size: 200% 200%;
  color: #0C0C0E;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: background-position 0.4s, gap 0.2s, transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
  margin-left: auto;
  box-shadow: 0 4px 20px rgba(200,169,96,0.3);
}
.services-promo-cta:hover {
  background-position: right center;
  gap: 0.75rem;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(200,169,96,0.45);
}
@media (max-width: 900px) {
  .services-promo-sep { display: none; }
  .services-promo-item { padding: 0.5rem 0; min-width: 100%; }
  .services-promo-item:last-of-type { padding-left: 0; }
  .services-promo-cta { width: 100%; justify-content: center; margin-left: 0; margin-top: 0.5rem; }
}

/* ─── Pricing toggle ────────────────────────────────── */
.pricing-toggle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  width: 100%;
  text-align: center;
}
.ptoggle-btn:focus { outline: none; }
.pricing-toggle {
  display: inline-flex;
  background: var(--color-black-soft);
  border: 1px solid var(--color-gray-border);
  border-radius: 100px;
  padding: 4px;
  gap: 2px;
}
.ptoggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--color-gray);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.ptoggle-btn:hover { color: var(--color-pure-white); }
.ptoggle-btn.active {
  background: var(--color-gold);
  color: var(--color-black);
}
.ptoggle-tag {
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--color-black);
  color: var(--color-gold);
  padding: 1px 6px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}
.ptoggle-btn.active .ptoggle-tag {
  background: rgba(0,0,0,0.25);
  color: var(--color-black);
}
.pricing-toggle-hint {
  font-size: 0.82rem;
  color: var(--color-gray);
  text-align: center;
  min-height: 1.2em;
}
.pricing-locations-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-gray);
}
.pricing-locations-hint span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.pricing-locations-hint svg { color: var(--color-gold); }
.plh-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-gray-border);
  flex-shrink: 0;
}
.plh-label {
  color: var(--color-gray);
  font-weight: 400;
  font-style: italic;
}
@media (max-width: 480px) {
  .ptoggle-btn { padding: 0.45rem 0.9rem; font-size: 0.82rem; }
}

/* ─── Pricing ───────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-pure-white);
  border: 1px solid var(--color-gray-border);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px -15px rgba(200, 169, 96, 0.18);
}
.pricing-card.featured {
  border: 2px solid var(--color-gold);
  background: var(--color-black);
  color: var(--color-pure-white);
}
.pricing-card.featured h3,
.pricing-card.featured h4,
.pricing-card.featured .price,
.pricing-card.featured .price-period { color: var(--color-pure-white); }
.pricing-card.featured p              { color: rgba(255,255,255,0.65); }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.8); }
.pricing-card.featured .pricing-features li::before { color: var(--color-gold); }

.pricing-popular {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--color-gold);
  color: var(--color-black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}
.pricing-card .pricing-tier {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}
.pricing-card h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.pricing-card .price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-black);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-card .price sup { font-size: 1.5rem; font-weight: 600; vertical-align: super; }
.price-period { font-size: 0.85rem; color: var(--color-gray); margin-bottom: 1.5rem; }
.pricing-divider {
  width: 100%;
  height: 1px;
  background: var(--color-gray-border);
  margin: 1.5rem 0;
}
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }
.pricing-features { flex: 1; margin-bottom: 2rem; }
.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--color-gray);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.pricing-features li::before {
  content: '\2713';
  color: var(--color-gold);
  font-weight: 700;
  font-size: 0.85rem;
  min-width: 16px;
}
.pricing-card .btn { width: 100%; justify-content: center; margin-top: auto; }

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ─── Testimonials Carousel ─────────────────────────── */
.testimonials-section {
  background: var(--color-black);
  position: relative;
  overflow: hidden;
}
.testimonials-section .section-header h2,
.testimonials-section .section-header p { color: var(--color-pure-white); }
.testimonials-section .section-header p { color: rgba(255,255,255,0.6); }
.testimonials-section .section-badge {
  background: rgba(200, 169, 96, 0.15);
  border-color: rgba(200, 169, 96, 0.3);
}
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 1rem 0 3rem;
}
.carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: grab;
}
.carousel-track:active { cursor: grabbing; }
.testimonial-card {
  min-width: 400px;
  max-width: 400px;
  background: var(--color-black-soft);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}
.testimonial-card:hover {
  border-color: rgba(200, 169, 96, 0.3);
  transform: translateY(-4px);
}
.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1.25rem; }
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--color-gold); }
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
}
.testimonial-author-info .name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-pure-white);
}
.testimonial-author-info .detail { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: var(--color-pure-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.carousel-btn:hover {
  background: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
}
.carousel-dots { display: flex; gap: 0.5rem; }
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}
.carousel-dot.active {
  background: var(--color-gold);
  width: 24px;
  border-radius: 100px;
}

@media (max-width: 768px) {
  .testimonial-card { min-width: 320px; max-width: 320px; }
}

/* ─── CTA Banner ─────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-black-soft) 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 96, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2    { color: var(--color-pure-white); margin-bottom: 1rem; }
.cta-banner p     { color: rgba(255,255,255,0.6); margin: 0 auto 2rem; font-size: 1.1rem; }

/* ─── Contact Form ───────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-item .icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(200, 169, 96, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}
.contact-info-item h4  { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
.contact-info-item p   { font-size: 0.85rem; }
.contact-form {
  background: var(--color-pure-white);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(200, 169, 96, 0.2);
  background: var(--color-white);
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--color-black);
  transition: var(--transition-fast);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 96, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-gray); opacity: 0.5; }

@media (max-width: 768px) {
  .contact-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .form-row      { grid-template-columns: 1fr; }
}

/* ─── Footer ─────────────────────────────────────────── */
.footer {
  background: var(--color-black);
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand .nav-logo-text .name { color: var(--color-pure-white); }
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-pure-white);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  padding: 0.35rem 0;
  transition: var(--transition-fast);
}
.footer-col a:hover { color: var(--color-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}
.footer-bottom a { color: var(--color-gold); }
.footer-social { display: flex; gap: 1rem; }
@media (min-width: 769px) { .footer-social { margin-right: 13rem; } }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition-fast);
}
.footer-social a:hover {
  background: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ─── Mentions Légales ───────────────────────────────── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 8rem;
  padding-bottom: 6rem;
}
.legal-content h1 { margin-bottom: 2rem; font-size: clamp(2rem, 4vw, 3rem); }
.legal-content h2 { font-size: 1.35rem; margin-top: 2.5rem; margin-bottom: 0.75rem; color: var(--color-black); }
.legal-content p  { margin-bottom: 1rem; font-size: 0.95rem; }

/* ─── Scroll Animations ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

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

/* ─── Page Header (Dark — sous-pages) ───────────────── */
.page-header {
  padding: 11rem 0 5rem;
  text-align: center;
  background: var(--color-black-deep);
  position: relative;
  overflow: hidden;
}
/* Div enfant portant la photo — inline style="background-image:url(...)" dans chaque page */
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  opacity: 0.38;
  filter: grayscale(15%) contrast(1.1);
  z-index: 0;
}
/* Dark overlay au-dessus de la photo */
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 14, 0.45);
  z-index: 0;
}
/* Gold bottom rule */
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--color-gold);
  z-index: 2;
}
.page-header .container  { position: relative; z-index: 1; }
.page-header .section-badge {
  background: rgba(200, 169, 96, 0.15);
  border-color: rgba(200, 169, 96, 0.3);
}
.page-header h1          { color: var(--color-pure-white); margin-bottom: 1rem; }
.page-header p           { color: rgba(255,255,255,0.58); margin: 0 auto; font-size: 1.1rem; }
/* Ambient orb */
.page-header .page-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 96, 0.1) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.page-header .page-orb-1 { top: -100px; left: -80px; }
.page-header .page-orb-2 { bottom: -80px; right: -80px; width: 280px; height: 280px; }

/* ─── Floating CTA (mobile) ─────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: none;
}
@media (max-width: 768px) { .floating-cta { display: block; } }
.floating-cta .btn {
  border-radius: 50%;
  width: 56px;
  height: 56px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px -6px rgba(200, 169, 96, 0.5);
}

/* ─── Gold Line Decoration ───────────────────────────── */
.gold-line {
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

/* ─── Guarantee Section ──────────────────────────────── */
.guarantee-section {
  background: linear-gradient(135deg, rgba(200, 169, 96, 0.05) 0%, rgba(200, 169, 96, 0.02) 100%);
  border: 1px solid rgba(200, 169, 96, 0.15);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  margin-top: 4rem;
}
.guarantee-section h3 { margin-bottom: 0.75rem; }
.guarantee-section p  { margin: 0 auto; }

/* ─── Process Steps ──────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step::after { display: none; }
.process-step .step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(200, 169, 96, 0.1);
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-gold);
  margin: 0 auto 1rem;
}
.process-step h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; }
.process-step p  { font-size: 0.8rem; margin: 0 auto; }

@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }
}

/* ─── Pricing Comparison Table ───────────────────────── */
.pricing-comparison { margin-top: 4rem; overflow-x: auto; }
.pricing-comparison table { width: 100%; border-collapse: collapse; }
.pricing-comparison th,
.pricing-comparison td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--color-gray-border);
  font-size: 0.9rem;
}
.pricing-comparison th {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(200, 169, 96, 0.05);
}
.pricing-comparison td:first-child { font-weight: 500; color: var(--color-black); }
.pricing-comparison .check { color: var(--color-gold); font-weight: 700; }
.pricing-comparison .cross { color: var(--color-gray); opacity: 0.3; }

/* ─── Glass Utility ──────────────────────────────────── */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* ─── Transformation Grid (temoignages) ─────────────── */
.transfo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.transfo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-pure-white);
  border: 1px solid var(--color-gray-border);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}
.transfo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px -15px rgba(200, 169, 96, 0.15);
  border-color: rgba(200, 169, 96, 0.3);
}
.transfo-cover {
  overflow: hidden;
  height: 260px;
  flex-shrink: 0;
}
.transfo-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.transfo-card:hover .transfo-cover img { transform: scale(1.05); }
.transfo-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.transfo-body h3 { font-size: 1.05rem; margin: 0; }
.transfo-body p  { font-size: 0.85rem; line-height: 1.55; flex: 1; }
.transfo-badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: rgba(200, 169, 96, 0.1);
  border: 1px solid rgba(200, 169, 96, 0.25);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  align-self: flex-start;
  margin-top: 0.25rem;
}
@media (max-width: 768px) {
  .transfo-grid { grid-template-columns: 1fr; }
  .transfo-cover { height: 220px; }
}

/* ─── Pricing engagement badge ───────────────────────── */
.pricing-engagement {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(200, 169, 96, 0.1);
  border: 1px solid rgba(200, 169, 96, 0.28);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}
.pricing-card.featured .pricing-engagement {
  color: var(--color-gold-light);
  background: rgba(200, 169, 96, 0.15);
}

/* ─── Ebooks Page ────────────────────────────────────── */
.ebook-hero-banner {
  background: var(--color-black);
  padding: 3rem;
  border-radius: var(--radius-lg);
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 96, 0.12);
}
.ebook-hero-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 96, 0.1) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.ebook-free-cover {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-width: 320px;
  margin: 0 auto;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6),
              0 0 0 1px rgba(200, 169, 96, 0.2);
}
.ebook-free-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ebook-free-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,14,0.9) 0%, rgba(12,12,14,0.35) 55%, transparent 100%);
  z-index: 1;
}
.ebook-cover-title {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
}
.ebook-cover-title h3 {
  color: var(--color-pure-white);
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.ebook-cover-title .ebook-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--color-gold);
  color: var(--color-black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
}
.ebook-free-info h2 { color: var(--color-pure-white); margin-bottom: 1rem; }
.ebook-free-info > p { color: rgba(255,255,255,0.6); margin-bottom: 1.75rem; }
.ebook-free-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.ebook-free-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1.1rem;
  border-radius: 100px;
  border: 1px solid rgba(200, 169, 96, 0.25);
  background: rgba(255,255,255,0.06);
  color: var(--color-pure-white);
  font-family: var(--font-main);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}
.ebook-free-form input[type="email"]::placeholder { color: rgba(255,255,255,0.3); }
.ebook-free-form input[type="email"]:focus {
  border-color: var(--color-gold);
  background: rgba(255,255,255,0.09);
}
.ebook-free-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}
.ebook-free-checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
}
.ebook-free-checklist li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: rgba(200, 169, 96, 0.15);
  border: 1px solid var(--color-gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23C8A960' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.ebook-free-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.75rem;
}

/* Paid ebooks grid — 3 equal vertical cards */
.ebooks-paid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.ebook-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-black);
  border: 1px solid rgba(200, 169, 96, 0.1);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}
.ebook-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 169, 96, 0.28);
  box-shadow: 0 24px 60px -15px rgba(0, 0, 0, 0.4);
}
.ebook-card-cover {
  position: relative;
  overflow: hidden;
}
.ebooks-paid-grid .ebook-card .ebook-card-cover { height: 260px; }
.ebook-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.ebook-card:hover .ebook-card-cover img { transform: scale(1.05); }
.ebook-card-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(12,12,14,0.75) 100%);
  z-index: 1;
}
.ebook-card-cover .ebook-price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: var(--color-gold);
  color: var(--color-black);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.65rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
}
.ebook-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ebook-card-body .ebook-category {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.6rem;
}
.ebook-card-body h3 {
  color: var(--color-pure-white);
  font-size: 1.05rem;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}
.ebook-card-body p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1.25rem;
}
.ebooks-paid-grid .ebook-card-body h3 { font-size: 1.05rem; }
.ebooks-paid-grid .ebook-card-body p  { font-size: 0.84rem; }
.ebook-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.ebook-card-footer .ebook-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
}
.ebook-card-footer .ebook-price span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  margin-left: 0.25rem;
}
.ebook-card-footer .btn {
  font-size: 0.82rem;
  padding: 0.65rem 1.25rem;
}

@media (max-width: 768px) {
  .ebook-hero-banner {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }
  .ebook-free-cover { max-width: 220px; }
  .ebooks-paid-grid {
    grid-template-columns: 1fr;
  }
  .ebooks-paid-grid .ebook-card .ebook-card-cover { height: 200px; }
}

/* ═══ Reviews band infini ═══════════════════════════════ */
.reviews-band {
  overflow: hidden;
  padding: 3.5rem 0;
  background: var(--color-white);
  border: none;
}
.reviews-band-inner { overflow: hidden; }
.reviews-band-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: reviewsScroll 40s linear infinite;
}
.reviews-band:hover .reviews-band-track { animation-play-state: paused; }
@keyframes reviewsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.rb-card {
  flex-shrink: 0;
  width: 320px;
  background: var(--color-black-soft);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: border-color 0.25s;
}
.rb-card:hover { border-color: rgba(200,169,96,0.35); }
.rb-stars {
  color: var(--color-gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.rb-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(250,250,248,0.78);
  margin: 0;
  flex: 1;
}
.rb-author {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── Barre urgence sticky ──────────────────────────── */
.urgence-bar {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 98;
  background: var(--color-black);
  border-bottom: 1px solid rgba(200, 169, 96, 0.3);
  padding: 0.55rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.urgence-bar.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.urgence-bar-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  white-space: nowrap;
}
.urgence-bar-text strong { color: var(--color-gold); font-weight: 700; }
.urgence-bar-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0.45;
  flex-shrink: 0;
}
.urgence-bar-cta {
  background: var(--color-gold);
  color: var(--color-black);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
  transition: var(--transition-fast);
  text-decoration: none;
}
.urgence-bar-cta:hover { background: var(--color-gold-dark); color: var(--color-black); }
.urgence-bar-close {
  position: absolute;
  right: 1.25rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0.3rem;
  transition: color 0.2s;
}
.urgence-bar-close:hover { color: rgba(255, 255, 255, 0.7); }
@media (max-width: 640px) {
  .urgence-bar { gap: 0.6rem; padding: 0.55rem 2.5rem 0.55rem 1rem; top: 52px; flex-wrap: wrap; justify-content: flex-start; }
  .urgence-bar-text { font-size: 0.75rem; white-space: normal; }
  .urgence-bar-dot { display: none; }
}

/* ─── Badge places limitées (forfaits) ─────────────── */
.pricing-spots {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-main);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 0.6rem;
}
.pricing-spots-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
  animation: pulse-spot 2s ease-in-out infinite;
}
@keyframes pulse-spot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(200,169,96,0.6); }
  50% { opacity: 0.5; transform: scale(0.7); box-shadow: 0 0 0 4px rgba(200,169,96,0); }
}

/* ─── Bouton WhatsApp flottant ──────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 89;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.5rem 0.9rem 0.5rem 0.75rem;
  border-radius: 100px;
  box-shadow: 0 8px 28px -6px rgba(37, 211, 102, 0.5);
  transition: var(--transition-smooth);
  text-decoration: none;
}
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px -8px rgba(37, 211, 102, 0.6);
  color: #fff;
}
.whatsapp-btn svg { flex-shrink: 0; }
@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 5.5rem;
    padding: 0.7rem;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    justify-content: center;
  }
  .whatsapp-btn span { display: none; }
}

/* ─── FAQ Accordion (forfaits) ──────────────────────── */
.faq-section {
  padding: 5rem 0;
  background: var(--color-white);
}
.faq-list {
  max-width: 760px;
  margin: 3rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--color-gray-border);
}
.faq-item:first-child { border-top: 1px solid var(--color-gray-border); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-black);
  transition: color 0.2s;
}
.faq-btn:hover { color: var(--color-gold-dark); }
.faq-btn.is-open { color: var(--color-gold-dark); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: var(--color-gold);
}
.faq-btn.is-open .faq-icon {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-black);
  transform: rotate(45deg);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer.is-open { grid-template-rows: 1fr; }
.faq-answer-inner {
  overflow: hidden;
  font-size: 0.97rem;
  color: var(--color-gray);
  line-height: 1.75;
  padding-bottom: 0;
  transition: padding-bottom 0.32s;
}
.faq-answer.is-open .faq-answer-inner { padding-bottom: 1.4rem; }
