/* ==========================================================================
   MRG COACHING — ARCHITECTURE BENTO GRID AVEC SWITCH CLAIR / SOMBRE
   Palette : Club Lacoste Heritage · Blanc Tennis · Vert Forêt · Laiton Trophée
   Thèmes : [data-theme="light"] (par défaut) et [data-theme="dark"]
   Environnement : DEV UNIQUEMENT (/home/ubuntu/coaching_dev)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700;1,800;1,900&display=swap');

/* ==========================================================================
   VARIABLES DE THÈME : VERSION CLAIRE (PAR DÉFAUT)
   ========================================================================== */
:root,
[data-theme="light"] {
  /* Fonds de page et cartes */
  --bg-main: #f5f7f5;
  --bg-surface: #ffffff;
  --bg-card: #ffffff;
  --bg-card-subtle: rgba(7, 34, 24, 0.035);
  --header-bg: rgba(245, 247, 245, 0.92);

  /* Typographies */
  --text-main: #072218;
  --text-body: #334a3f;
  --text-muted: #5e756a;

  /* Verts Lacoste */
  --primary: #0b6646;
  --lacoste-green: #0b6646;
  --lacoste-green-dark: #07402b;
  --lacoste-green-vibrant: #059669;
  --lacoste-green-glow: rgba(11, 102, 70, 0.2);

  /* Doré Trophée / Laiton */
  --gold-club: #b88e3e;
  --gold-club-light: #8f6a24;
  --gold-club-dark: #735319;
  --gold-glow: rgba(184, 142, 62, 0.22);
  --gold-bg: rgba(184, 142, 62, 0.08);

  /* Terre Battue / Roland Garros */
  --clay-accent: #b8422f;
  --clay-glow: rgba(184, 66, 47, 0.2);
  --clay-bg: rgba(184, 66, 47, 0.08);

  /* Bordures */
  --border: rgba(7, 34, 24, 0.08);
  --border-card: rgba(7, 34, 24, 0.09);
  --border-gold: rgba(184, 142, 62, 0.35);

  /* Ombres Apple */
  --shadow-card: 0 4px 20px rgba(7, 34, 24, 0.05), 0 1px 3px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 14px 34px rgba(7, 34, 24, 0.1), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-popular: 0 16px 42px rgba(184, 142, 62, 0.18), 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-flagship: 0 16px 42px rgba(184, 142, 62, 0.18), 0 2px 8px rgba(0, 0, 0, 0.04);

  /* Cartes Spéciales */
  --popular-card-bg: linear-gradient(175deg, rgba(184, 142, 62, 0.08) 0%, #ffffff 100%);
  --flagship-card-bg: linear-gradient(160deg, rgba(184, 142, 62, 0.05) 0%, #ffffff 100%);
  --solution-card-bg: linear-gradient(160deg, rgba(11, 102, 70, 0.04) 0%, #ffffff 100%);
  --solution-card-border: rgba(11, 102, 70, 0.18);
  --banner-bg: linear-gradient(135deg, #07261d 0%, #0b3d2f 100%);
  --banner-text: #ffffff;
  --banner-sub: #d1ded7;

  /* Bouton Outline */
  --btn-outline-bg: #ffffff;
  --btn-outline-border: rgba(7, 34, 24, 0.16);
  --btn-outline-text: #072218;

  /* Formulaire */
  --form-bg: #f8faf8;
  --form-border: rgba(7, 34, 24, 0.16);
  --form-text: #072218;

  /* Bullets & Mini-tuiles */
  --bullet-bg: #ffffff;
  --bullet-border: rgba(7, 34, 24, 0.09);
  --bullet-text: #334a3f;
  --bullet-check-bg: rgba(5, 150, 105, 0.1);
  --bullet-check-border: rgba(5, 150, 105, 0.25);
  --bullet-check-color: #059669;

  /* Footer */
  --footer-bg: #061d15;
  --footer-text: #a8bdb3;

  /* Halos */
  --glow-1-bg: rgba(11, 102, 70, 0.06);
  --glow-2-bg: rgba(184, 142, 62, 0.05);
}

/* ==========================================================================
   VARIABLES DE THÈME : VERSION SOMBRE (CLUB LACOSTE DE NUIT)
   ========================================================================== */
[data-theme="dark"] {
  /* Fonds de page et cartes */
  --bg-main: #05150f;
  --bg-surface: #092218;
  --bg-card: linear-gradient(160deg, rgba(13, 39, 29, 0.8) 0%, rgba(7, 24, 18, 0.94) 100%);
  --bg-card-subtle: rgba(248, 246, 240, 0.05);
  --header-bg: rgba(5, 21, 15, 0.9);

  /* Typographies */
  --text-main: #ffffff;
  --text-body: #cbd5e1;
  --text-muted: #94a89f;

  /* Verts Lacoste */
  --primary: #10b981;
  --lacoste-green: #0b3b2c;
  --lacoste-green-dark: #07271d;
  --lacoste-green-vibrant: #10b981;
  --lacoste-green-glow: rgba(16, 185, 129, 0.28);

  /* Doré Trophée / Laiton */
  --gold-club: #c8a15b;
  --gold-club-light: #dfbe7e;
  --gold-club-dark: #a8833e;
  --gold-glow: rgba(200, 161, 91, 0.28);
  --gold-bg: rgba(200, 161, 91, 0.1);

  /* Terre Battue */
  --clay-accent: #c04835;
  --clay-glow: rgba(192, 72, 53, 0.25);
  --clay-bg: rgba(192, 72, 53, 0.1);

  /* Bordures */
  --border: rgba(248, 246, 240, 0.08);
  --border-card: rgba(248, 246, 240, 0.09);
  --border-gold: rgba(200, 161, 91, 0.35);

  /* Ombres Apple */
  --shadow-card: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 16px 36px rgba(0, 0, 0, 0.4);
  --shadow-hover: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 22px 48px rgba(0, 0, 0, 0.55), 0 0 25px rgba(200, 161, 91, 0.12);
  --shadow-popular: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 45px rgba(200, 161, 91, 0.25);
  --shadow-flagship: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 22px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(200, 161, 91, 0.18);

  /* Cartes Spéciales */
  --popular-card-bg: linear-gradient(175deg, rgba(200, 161, 91, 0.13) 0%, rgba(7, 26, 19, 0.98) 100%);
  --flagship-card-bg: linear-gradient(160deg, rgba(200, 161, 91, 0.1) 0%, rgba(7, 24, 18, 0.96) 100%);
  --solution-card-bg: linear-gradient(160deg, rgba(16, 185, 129, 0.08) 0%, rgba(7, 24, 18, 0.95) 100%);
  --solution-card-border: rgba(16, 185, 129, 0.22);
  --banner-bg: linear-gradient(135deg, rgba(15, 45, 33, 0.95) 0%, rgba(7, 25, 19, 0.98) 100%);
  --banner-text: #ffffff;
  --banner-sub: #b0c4bb;

  /* Bouton Outline */
  --btn-outline-bg: rgba(248, 246, 240, 0.04);
  --btn-outline-border: rgba(248, 246, 240, 0.16);
  --btn-outline-text: #ffffff;

  /* Formulaire */
  --form-bg: rgba(248, 246, 240, 0.04);
  --form-border: rgba(248, 246, 240, 0.14);
  --form-text: #ffffff;

  /* Bullets & Mini-tuiles */
  --bullet-bg: rgba(248, 246, 240, 0.035);
  --bullet-border: rgba(248, 246, 240, 0.08);
  --bullet-text: #cbd5e1;
  --bullet-check-bg: rgba(16, 185, 129, 0.15);
  --bullet-check-border: rgba(16, 185, 129, 0.35);
  --bullet-check-color: #10b981;

  /* Footer */
  --footer-bg: #04100c;
  --footer-text: #94a89f;

  /* Halos */
  --glow-1-bg: rgba(16, 185, 129, 0.14);
  --glow-2-bg: rgba(200, 161, 91, 0.11);
}

/* ==========================================================================
   CONSTANTES GLOBALES (RAYONS & TYPOS)
   ========================================================================== */
:root {
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --btn-green: #108a62;
  --btn-green-hover: #14a374;
  --btn-green-glow: rgba(16, 138, 98, 0.45);

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Outfit', 'Plus Jakarta Sans', sans-serif;
}

/* --- RESET ET TRANSITIONS DE THÈME FLUIDES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: clip;
  max-width: 100vw;
}

body {
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(rgba(11, 102, 70, 0.04) 1.5px, transparent 1.5px),
    radial-gradient(circle at 50% 0%, rgba(11, 102, 70, 0.08) 0%, transparent 65%);
  background-size: 32px 32px, 100% 100%;
  color: var(--text-body);
  font-family: var(--font-sans);
  line-height: 1.65;
  padding-top: 76px;
  overflow-x: clip;
  max-width: 100vw;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.3s ease, color 0.3s ease;
}

[data-theme="dark"] body {
  background-image: 
    radial-gradient(rgba(248, 246, 240, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(14, 56, 40, 0.45) 0%, transparent 60%);
}

img, svg, video, iframe {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- TRANSITION DOUCE SUR TOUS LES COMPOSANTS --- */
header, .stat-item, .why-card, .service-card, .pricing-card, .process-card, .testimonial-card, .faq-item, .contact-wrapper, .form-control, .channel-item, .coach-bullets li, .theme-toggle {
  transition: background 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* --- HALOS AMBIANTS --- */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--glow-1-bg) 0%, transparent 70%);
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.glow-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--glow-2-bg) 0%, transparent 70%);
  top: 1400px;
  right: -60px;
}

.glow-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--glow-1-bg) 0%, transparent 70%);
  bottom: 800px;
  left: -60px;
}

/* ==========================================================================
   HEADER & NAVIGATION FLOTTANTE
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text-main);
  flex-shrink: 0;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid var(--gold-club);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  box-shadow: 0 4px 12px rgba(7, 34, 24, 0.1);
  font-size: 1.25rem;
}

.brand-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.3px;
  color: var(--text-main);
  line-height: 1.2;
}

.brand-sub {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-club-light);
}

.brand-sub-mobile {
  display: none !important;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.2s ease;
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-club);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* --- BOUTON SWITCH THÈME CLAIR / SOMBRE --- */
.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-card-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
  color: var(--text-main);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.theme-toggle:hover {
  border-color: var(--gold-club);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px var(--gold-glow);
}

/* Icône conditionnelle selon le thème actif */
[data-theme="light"] .theme-toggle::after {
  content: '🌙';
}

[data-theme="dark"] .theme-toggle::after {
  content: '☀️';
}

.nav-btn {
  padding: 0.55rem 1.25rem;
  font-size: 0.84rem;
}

.nav-btn-text-short {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 40px;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 9px;
  z-index: 1001;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* --- BOUTONS HAUTE PRÉCISION --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.88rem 1.85rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #128059 0%, #095037 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 22px rgba(11, 102, 70, 0.32);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #159b6c 0%, #0d6143 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(11, 102, 70, 0.45), 0 0 20px rgba(184, 142, 62, 0.25);
}

.btn-outline {
  background: var(--btn-outline-bg);
  border: 1px solid var(--btn-outline-border);
  color: var(--btn-outline-text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-outline:hover {
  border-color: var(--gold-club);
  color: var(--gold-club-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px var(--gold-glow);
}

.btn-insta {
  background: var(--clay-bg);
  border: 1px solid rgba(184, 66, 47, 0.3);
  color: var(--clay-accent);
}

.btn-insta:hover {
  background: rgba(184, 66, 47, 0.16);
  border-color: var(--clay-accent);
  transform: translateY(-3px);
}

/* ==========================================================================
   SECTION HERO & TÉLÉMÉTRIE STATISTIQUE
   ========================================================================== */
.hero {
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(2.5rem, 5vw, 4.2rem);
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--gold-bg);
  border: 1px solid rgba(184, 142, 62, 0.3);
  color: var(--gold-club-light);
  padding: 0.52rem 1.45rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  text-transform: uppercase;
  max-width: 100%;
  line-height: 1.4;
  box-shadow: 0 2px 12px rgba(184, 142, 62, 0.1);
}

.hero h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.6px;
  margin-bottom: 1.6rem;
  color: var(--text-main);
}

.hero h2 .highlight {
  background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 60%, var(--gold-club) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-sub {
  font-size: clamp(1.04rem, 2.3vw, 1.2rem);
  color: var(--text-body);
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  width: 100%;
}

.hero-actions .btn {
  white-space: normal;
  text-align: center;
}

/* --- CLUSTER STATISTIQUE BENTO (4 TUILES INDÉPENDANTES) --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  width: 100%;
  position: relative;
  margin-top: 1rem;
}

.stat-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 142, 62, 0.35);
  box-shadow: var(--shadow-hover);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-club), transparent);
}

/* Live Pulse Dot sur coaching 1-to-1 */
.stat-item:nth-child(3)::after {
  content: '';
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lacoste-green-vibrant);
  box-shadow: 0 0 8px var(--lacoste-green-vibrant);
  animation: liveDotPulse 2s infinite ease-in-out;
}

@keyframes liveDotPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(5, 150, 105, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); }
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  font-weight: 900;
  line-height: 1;
  color: var(--text-main);
  margin-bottom: 0.55rem;
}

.stat-label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

/* ==========================================================================
   SECTIONS GÉNÉRALES & EN-TÊTES
   ========================================================================== */
section {
  padding: clamp(4.5rem, 7vw, 6.8rem) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-club-light);
  margin-bottom: 0.9rem;
}

.section-tag::before {
  content: '//';
  color: var(--primary);
  font-weight: 900;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.9rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ==========================================================================
   BENTO GRID : POURQUOI & RÉPONSE MRG (FLUX SÉCURISÉ SANS ÉCRASEMENT)
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-bottom: 2.5rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 142, 62, 0.35);
  box-shadow: var(--shadow-hover);
}

.why-card:hover::before {
  background: linear-gradient(90deg, var(--gold-club), var(--primary));
}

.why-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.why-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  line-height: 1.35;
  color: var(--text-main);
  width: 100%;
}

.why-card p {
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.65;
  width: 100%;
}

/* Cartes Solution Réponse MRG */
.why-card.solution-card {
  background: var(--solution-card-bg);
  border: 1px solid var(--solution-card-border);
}

.why-card.solution-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.why-card.solution-card .why-card-icon {
  background: rgba(11, 102, 70, 0.08);
  border-color: rgba(11, 102, 70, 0.22);
}

/* Bannière Modulaire Bento */
.why-banner {
  background: var(--banner-bg);
  border: 1px solid rgba(184, 142, 62, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.8rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.2rem;
  margin-top: 3.5rem;
  box-shadow: 0 16px 40px rgba(7, 34, 24, 0.18);
  position: relative;
  overflow: hidden;
  color: var(--banner-text);
}

.why-banner-text h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--banner-text);
}

.why-banner-text p {
  color: var(--banner-sub);
  font-size: 0.98rem;
  line-height: 1.6;
}

.why-banner-text p strong {
  color: #ffffff;
}

/* ==========================================================================
   BENTO GRID : SECTION À PROPOS
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.8rem;
  align-items: center;
}

.about-photo-col {
  position: relative;
}

.about-photo-card {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
}

.about-photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(184, 142, 62, 0.35);
  position: relative;
  box-shadow: 0 20px 48px rgba(7, 34, 24, 0.14);
  background: var(--bg-surface);
}

.about-portrait-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-photo-card:hover .about-portrait-img {
  transform: scale(1.025);
}

.about-photo-badge {
  position: absolute;
  bottom: -22px;
  right: -10px;
  background: var(--bg-surface);
  border: 1.5px solid var(--gold-club);
  border-radius: 18px;
  padding: 1.1rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.95rem;
  box-shadow: 0 14px 34px rgba(7, 34, 24, 0.12);
}

.badge-icon {
  font-size: 1.9rem;
}

.about-photo-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-main);
}

.about-photo-badge span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold-club-light);
}

.coach-certifications {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.4rem 0 2rem;
}

.cert-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--gold-bg);
  border: 1px solid rgba(184, 142, 62, 0.28);
  color: var(--gold-club-light);
  padding: 0.72rem 1.25rem;
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 700;
}

.about-lead {
  font-size: 1.14rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.about-content-col p {
  color: var(--text-body);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

/* Transformation des bullets en mini-tuiles Bento */
.coach-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 1.8rem 0;
}

.coach-bullets li {
  position: relative;
  padding: 1.1rem 1.4rem 1.1rem 3.4rem;
  background: var(--bullet-bg);
  border: 1px solid var(--bullet-border);
  border-radius: var(--radius-md);
  color: var(--bullet-text);
  font-size: 0.98rem;
  line-height: 1.6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.coach-bullets li:hover {
  border-color: rgba(184, 142, 62, 0.35);
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
}

.coach-bullets li span {
  position: absolute;
  left: 1.15rem;
  top: 1.15rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bullet-check-bg);
  border: 1px solid var(--bullet-check-border);
  color: var(--bullet-check-color);
  font-weight: 900;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.coach-bullets li strong {
  color: var(--text-main);
  font-weight: 800;
}

/* ==========================================================================
   BENTO GRID : SERVICES & PILIERS MRG (STYLE APPLE IMBRIQUÉ)
   Formule officielle Apple : grid-template-areas en puzzle asymétrique
   - Bento-1 (Sport) : Tuile haute à gauche (lignes 1 & 2)
   - Bento-3 (Vie) : Tuile compacte en haut à droite (ligne 1)
   - Bento-4 (Sparring VIP) : Grande tuile haute à droite (lignes 2 & 3)
   - Bento-2 (Pro) : Tuile compacte en bas à gauche (ligne 3)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto minmax(130px, auto) auto;
  grid-template-areas:
    "bento-1 bento-3"
    "bento-1 bento-4"
    "bento-2 bento-4";
  gap: 1.8rem;
  align-items: stretch;
}

/* Assignation des tuiles Bento selon le modèle Apple */
.services-grid .service-card:nth-child(1) {
  grid-area: bento-1;
}

.services-grid .service-card:nth-child(2) {
  grid-area: bento-2;
}

.services-grid .service-card:nth-child(3) {
  grid-area: bento-3;
}

.services-grid .service-card:nth-child(4) {
  grid-area: bento-4;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.6rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.3s ease, 
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Filigrane Apple stylé en coin de carte (sans modifier aucun texte) */
.service-card::after {
  position: absolute;
  right: -8px;
  bottom: -15px;
  opacity: 0.045;
  pointer-events: none;
  line-height: 1;
  filter: grayscale(0.6);
  transition: transform 0.4s ease, opacity 0.4s ease;
  user-select: none;
}

.service-card:hover::after {
  transform: scale(1.08) rotate(-4deg);
  opacity: 0.09;
}

.service-card:nth-child(1)::after {
  content: '🏆';
  font-size: 7.5rem;
}

.service-card:nth-child(2)::after {
  content: '💼';
  font-size: 6.2rem;
}

.service-card:nth-child(3)::after {
  content: '🎯';
  font-size: 6.2rem;
}

.service-card:nth-child(4)::after {
  content: '🥊';
  font-size: 7.5rem;
}

/* Optimisation de l'espacement pour les cartes hautes (1 & 4) */
@media (min-width: 1025px) {
  .service-card:nth-child(1) .service-features li,
  .service-card:nth-child(4) .service-features li {
    margin-bottom: 0.95rem;
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .service-card:nth-child(1) .service-icon,
  .service-card:nth-child(4) .service-icon {
    width: 64px;
    height: 64px;
    font-size: 2rem;
    margin-bottom: 1.6rem;
  }
}

/* Sparring partner mental (Flagship VIP) */
.service-card:nth-child(4) {
  border: 2px solid var(--gold-club);
  background: var(--flagship-card-bg);
  box-shadow: var(--shadow-flagship);
}

.service-card:nth-child(4) .btn {
  background: var(--gold-club);
  color: #072218;
  border-color: var(--gold-club);
  font-weight: 700;
}

.service-card:nth-child(4) .btn:hover {
  background: var(--gold-club-light);
  border-color: var(--gold-club-light);
  box-shadow: 0 4px 16px var(--gold-glow);
}

[data-theme="dark"] .service-card:nth-child(4) .btn {
  color: #05150f;
  background: var(--gold-club);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 142, 62, 0.4);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-card h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: var(--text-main);
}

.service-card p {
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--text-body);
  font-size: 0.92rem;
  margin-bottom: 0.65rem;
  line-height: 1.55;
}

.service-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold-club);
  font-size: 1.1rem;
  line-height: 1;
}

/* ==========================================================================
   BENTO GRID : TARIFS & FORMULES D'ACCOMPAGNEMENT
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  align-items: stretch;
  margin-top: 2.4rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.3rem 1.6rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-card);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 142, 62, 0.35);
  box-shadow: var(--shadow-hover);
}

/* Pack Populaire (Recommandé) */
.pricing-card.popular {
  border: 2px solid var(--gold-club);
  background: var(--popular-card-bg);
  box-shadow: var(--shadow-popular);
  transform: scale(1.02);
  z-index: 2;
}

.pricing-card.popular:hover {
  transform: scale(1.02) translateY(-6px);
  box-shadow: 0 20px 48px rgba(184, 142, 62, 0.25);
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #dfbe7e 0%, #b88e3e 100%);
  color: #072218;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(184, 142, 62, 0.35);
  white-space: nowrap;
}

.pricing-pill {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--bg-card-subtle);
  color: var(--text-muted);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}

.pricing-card.popular .pricing-pill {
  background: var(--gold-bg);
  color: var(--gold-club-light);
  border-color: rgba(184, 142, 62, 0.35);
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.25;
  color: var(--text-main);
}

.pricing-desc {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 1.4rem;
  min-height: 2.8rem;
}

.pricing-price-box {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.pricing-price .currency {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold-club);
}

.pricing-unit {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.pricing-savings-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold-bg);
  border: 1px solid rgba(184, 142, 62, 0.28);
  color: var(--gold-club-light);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  margin-top: 0.65rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features li {
  position: relative;
  padding-left: 1.45rem;
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.pricing-features li strong {
  color: var(--text-main);
  font-weight: 800;
}

.pricing-features li .check {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
  font-size: 0.95rem;
  line-height: 1.5;
}

.pricing-btn {
  width: 100%;
  margin-top: auto;
}

/* ==========================================================================
   BENTO GRID : MÉTHODE EN 4 ÉTAPES
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.3rem 1.7rem;
  position: relative;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 142, 62, 0.38);
  box-shadow: var(--shadow-hover);
}

.process-step {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold-club);
  margin-bottom: 1.1rem;
}

.process-card h4 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
  color: var(--text-main);
}

.process-card p {
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ==========================================================================
   BENTO GRID : TÉMOIGNAGES
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 142, 62, 0.35);
  box-shadow: var(--shadow-hover);
}

.stars {
  color: var(--gold-club);
  font-size: 1.05rem;
  letter-spacing: 2.5px;
}

.testimonial-text {
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.testimonial-author span:first-child {
  font-weight: 800;
  color: var(--text-main);
  font-size: 0.95rem;
}

.testimonial-goal {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-club-light);
  background: var(--gold-bg);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   BENTO GRID : SECTION FAQ
   ========================================================================== */
.faq-wrapper {
  max-width: 860px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq-item:hover {
  border-color: rgba(184, 142, 62, 0.3);
}

.faq-item.active {
  border-color: rgba(184, 142, 62, 0.45);
  box-shadow: var(--shadow-hover);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.4rem 1.8rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s ease;
}

.faq-item.active .faq-question {
  color: var(--gold-club-light);
}

.faq-chevron {
  font-size: 0.75rem;
  color: var(--gold-club);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.8rem 1.6rem 1.8rem;
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p:not(:last-child) {
  margin-bottom: 0.8rem;
}

/* ==========================================================================
   BENTO GRID : MASTER BOX CONTACT
   ========================================================================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.8rem;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-club) 0%, var(--primary) 50%, transparent 100%);
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: var(--text-main);
}

.contact-info p {
  color: var(--text-body);
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.95rem 1.2rem;
}

.channel-item:hover {
  background: var(--gold-bg);
  border-color: rgba(184, 142, 62, 0.3);
  transform: translateX(3px);
}

.channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--bg-surface);
  border: 1px solid rgba(184, 142, 62, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.channel-title {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.channel-value {
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.02rem;
  transition: color 0.2s ease;
}

.channel-value:hover {
  color: var(--gold-club-light);
}

.channel-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Formulaire Contact */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  background: var(--form-bg);
  border: 1px solid var(--form-border);
  border-radius: 14px;
  padding: 0.92rem 1.2rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--form-text);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 14px var(--lacoste-green-glow);
  background: var(--bg-surface);
}

select.form-control {
  cursor: pointer;
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

.form-status {
  margin-bottom: 1.2rem;
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  font-size: 0.92rem;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(5, 150, 105, 0.1);
  border: 1px solid rgba(5, 150, 105, 0.3);
  color: #059669;
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
}

/* ==========================================================================
   FOOTER (CLUB HOUSE LACOSTE CONTRASTE CHIC)
   ========================================================================== */
footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border);
  padding: 3.4rem 0;
  font-size: 0.88rem;
  color: var(--footer-text);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-club-light);
}

/* ==========================================================================
   RESPONSIVE BENTO ROBUSTE (TABLETTES & MOBILES)
   ========================================================================== */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 860px;
    gap: 1.6rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 100%;
    grid-template-rows: auto;
    grid-template-areas:
      "bento-1"
      "bento-2"
      "bento-3"
      "bento-4";
    max-width: 680px;
    margin: 0 auto;
    gap: 1.5rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  .why-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.4rem 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-photo-card {
    max-width: 380px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 2.5rem;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 68px;
  }

  header {
    height: 68px;
  }

  body {
    padding-top: 68px;
  }

  .nav-cta {
    gap: 0.5rem;
  }

  .theme-toggle {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
    border-radius: 10px;
  }

  .nav-toggle {
    display: flex;
    width: 36px;
    height: 36px;
    padding: 7px;
    border-radius: 10px;
  }

  /* Rond / Bouton Bilan Offert compact sur tablette & smartphone */
  .nav-btn {
    padding: 0.38rem 0.82rem;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(11, 102, 70, 0.2);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--header-bg);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.8rem 1.5rem;
    gap: 1.2rem;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  }

  .nav-links.open {
    display: flex;
    animation: menuFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-6px);
  }

  .process-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

@media (max-width: 640px) {
  .brand-sub-desktop {
    display: none !important;
  }

  .brand-sub-mobile {
    display: block !important;
  }

  .hero h2 {
    font-size: 2.1rem;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 0.8rem 1.2rem;
    font-size: 0.92rem;
  }

  .why-banner .btn {
    width: 100%;
    padding: 0.8rem 1.2rem;
    font-size: 0.92rem;
  }

  .contact-wrapper {
    padding: 1.8rem 1.4rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    height: 62px;
  }

  header {
    height: 62px;
  }

  body {
    padding-top: 62px;
  }

  .nav-links {
    top: 62px;
  }

  .nav-cta {
    gap: 0.35rem;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-icon {
    width: 35px;
    height: 35px;
    border-radius: 9px;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .brand-sub-mobile {
    font-size: 0.62rem;
  }

  .theme-toggle {
    width: 33px;
    height: 33px;
    font-size: 0.95rem;
    border-radius: 9px;
  }

  .nav-toggle {
    width: 33px;
    height: 33px;
    padding: 7px;
    border-radius: 9px;
  }

  /* Rond Bilan Offert format pastille fine et discrète sur petit smartphone */
  .nav-btn {
    padding: 0.32rem 0.65rem;
    font-size: 0.7rem;
    letter-spacing: 0.2px;
    box-shadow: 0 2px 8px rgba(11, 102, 70, 0.18);
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .about-photo-badge {
    position: static;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }
}

@keyframes menuFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
