/* =====================
   GRIND ACADEMY — STYLES
   Thème violet
   ===================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --violet-950: #0D0520;
  --violet-900: #1A0A3B;
  --violet-800: #2D1563;
  --violet-700: #4C1D95;
  --violet-600: #6D28D9;
  --violet-500: #7C3AED;
  --violet-400: #8B5CF6;
  --violet-300: #A78BFA;
  --violet-200: #C4B5FD;
  --violet-100: #EDE9FE;
  --gold: #F59E0B;
  --gold-light: #FCD34D;
  --white: #FFFFFF;
  --gray-100: #F3F4F6;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --card-bg: rgba(45, 21, 99, 0.5);
  --card-border: rgba(139, 92, 246, 0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--violet-950);
  color: var(--white);
  line-height: 1.6;
}

/* ===================== LAYOUT */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* ===================== NAV */

nav {
  background: rgba(13, 5, 32, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  position: sticky;
  top: 0;
  z-index: 200;
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--violet-400);
}

.nav-logo-img {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img img {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.4));
  transition: filter 0.3s, transform 0.3s;
}

.nav-logo-full {
  height: 52px !important;
  width: auto;
}

.nav-logo-img:hover img {
  filter: drop-shadow(0 0 14px rgba(224, 64, 251, 0.6));
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--violet-300);
}

.nav-cta {
  background: var(--violet-600);
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 8px;
  font-size: 1rem !important;
  font-weight: 700 !important;
  animation: navCtaPulse 2.5s ease-in-out infinite;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--violet-500) !important;
  color: var(--white) !important;
  transform: scale(1.06) !important;
  animation: none !important;
}

@keyframes navCtaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.5); }
  50% { box-shadow: 0 0 0 7px rgba(139, 92, 246, 0); }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  justify-self: end;
  background: rgba(109, 40, 217, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 8px;
  padding: 8px 10px;
  z-index: 301;
  transition: background 0.2s;
}

.nav-toggle:hover {
  background: rgba(109, 40, 217, 0.4);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* Animation burger → X */
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===================== HERO */

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(109, 40, 217, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-content p {
  margin-left: auto;
  margin-right: auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid var(--violet-500);
  color: var(--violet-300);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
  animation: titleReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero h1 .accent {
  background: linear-gradient(90deg,
    var(--violet-400) 0%,
    var(--violet-200) 25%,
    #ffffff 45%,
    var(--violet-200) 55%,
    var(--violet-400) 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShimmer 5s linear 0.9s infinite;
}

.hero p {
  font-size: 1.3rem;
  color: var(--gray-300);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===================== BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--violet-600), var(--violet-500));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(109, 40, 217, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--violet-500), var(--violet-400));
  box-shadow: 0 6px 28px rgba(109, 40, 217, 0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--violet-300);
  border: 2px solid var(--violet-500);
}

.btn-outline:hover {
  background: rgba(124, 58, 237, 0.15);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #D97706, var(--gold));
  color: #1a0a00;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

/* ===================== HERO CTA BUTTON */

@keyframes heroPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(109, 40, 217, 0.5), 0 0 0 0 rgba(124, 58, 237, 0.55);
  }
  50% {
    box-shadow: 0 8px 36px rgba(109, 40, 217, 0.75), 0 0 0 12px rgba(124, 58, 237, 0);
  }
}

@keyframes heroShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.btn-hero-cta {
  position: relative;
  font-size: 1.1rem;
  padding: 16px 36px;
  overflow: hidden;
  animation: heroPulse 2.2s ease-in-out infinite;
  background: linear-gradient(
    135deg,
    var(--violet-600) 0%,
    var(--violet-500) 40%,
    #a855f7 60%,
    var(--violet-500) 100%
  );
  background-size: 200% auto;
}

.btn-hero-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 80%
  );
  animation: heroShimmer 2.8s linear infinite;
}

.btn-hero-cta:hover {
  animation: none;
  box-shadow: 0 8px 40px rgba(109, 40, 217, 0.8);
  transform: translateY(-3px) scale(1.03);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(245, 158, 11, 0.5);
}

/* ===================== SYSTEM ADAPT LOGO */

.sa-logo-hero {
  height: clamp(140px, 28vw, 260px);
  width: auto;
  display: block;
  margin: 0 auto 12px;
  filter: brightness(1.4) contrast(1.1) drop-shadow(0 0 30px rgba(139, 92, 246, 0.9)) drop-shadow(0 0 60px rgba(139, 92, 246, 0.5));
}

.sa-logo-inline {
  height: 1.6em;
  width: auto;
  vertical-align: middle;
  display: inline-block;
  margin: 0 6px;
  filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6));
}

.sa-logo-btn {
  height: 22px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
  margin-left: 6px;
  filter: brightness(0) invert(1);
}

.sa-logo-title {
  height: clamp(50px, 9vw, 80px);
  width: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 16px rgba(139, 92, 246, 0.6));
}

/* ===================== SECTION TITLES */

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--gray-400);
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.section-label {
  display: inline-block;
  color: var(--violet-400);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ===================== CARDS */

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-4px);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3-offers {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  align-items: stretch;
}

.grid-3-offers .offer-card {
  flex: 1 1 0;
  min-width: 0;
  padding: 24px 20px;
}

.grid-3-offers .offer-card h3 {
  font-size: 1.1rem;
}

.grid-3-offers .offer-card .price {
  font-size: 1.3rem;
}

.grid-3-offers .offer-card p {
  font-size: 0.88rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Grille centrée pour nombre impair d'items */
.grid-3-centered {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: center;
}

.grid-3-centered > * {
  width: 100%;
}

.grid-coaches {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.grid-coaches > * {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 220px;
}

/* ===================== OFFER CARDS */

.offer-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: all 0.2s;
}

.offer-card:hover {
  border-color: var(--violet-500);
  transform: translateY(-4px);
}

.offer-card.featured {
  border-color: var(--violet-500);
  background: rgba(109, 40, 217, 0.15);
}

.offer-card.featured::before {
  content: 'Populaire';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--violet-600);
  color: white;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.offer-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.offer-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.offer-card .price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--violet-300);
  margin-bottom: 12px;
}

.offer-card p {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.offer-card a {
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: 10px;
  margin-top: auto;
  background: linear-gradient(135deg, var(--violet-600), var(--violet-500));
  color: #fff;
  box-shadow: 0 4px 18px rgba(109, 40, 217, 0.45);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.offer-card a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(109, 40, 217, 0.65);
  background: linear-gradient(135deg, var(--violet-500), var(--violet-400));
}

.offer-card.featured a {
  background: linear-gradient(135deg, var(--violet-500), #a855f7);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.6);
}

/* ===================== FILOSOFY */

.philosophy-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-left: 4px solid var(--violet-500);
  border-radius: 16px;
  padding: 48px;
}

.philosophy-box p {
  font-size: 1.1rem;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 16px;
}

.philosophy-box p:last-child {
  margin-bottom: 0;
}

.philosophy-box strong {
  color: var(--white);
}

/* ===================== JEREMY */

.jeremy-new-section {
  padding: 80px 0;
}

.jeremy-new-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: center;
}

.jeremy-new-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.jeremy-new-badge {
  background: rgba(109, 40, 217, 0.2);
  border: 1px solid var(--violet-500);
  color: var(--violet-300);
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
}

.jeremy-new-text-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.jeremy-new-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  margin: 12px 0 24px;
  text-transform: uppercase;
}

.jeremy-new-title span {
  background: linear-gradient(135deg, var(--violet-400), var(--violet-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jeremy-new-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.jeremy-new-tags span {
  background: rgba(109, 40, 217, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--violet-200);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.jeremy-new-text-col p {
  color: var(--gray-300);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.jeremy-new-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.jeremy-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
}

.avatar-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-700), var(--violet-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: 0 0 60px rgba(109, 40, 217, 0.4);
}

.jeremy-photo-wrap {
  position: relative;
  width: 320px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Photo Jérémy : animations ── */
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.45; transform: scale(0.92); }
  50%       { opacity: 1;    transform: scale(1.22); }
}
@keyframes photoFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.jeremy-photo-wrap {
  animation: photoFloat 4s ease-in-out infinite;
}

/* Comète orbitale */
.jeremy-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(
    rgba(196, 181, 253, 0)    0deg,
    rgba(196, 181, 253, 0.25) 40deg,
    rgba(220, 200, 255, 0.7)  80deg,
    #ffffff                   95deg,
    rgba(167, 139, 250, 0.55) 115deg,
    rgba(109,  40, 217, 0.15) 160deg,
    rgba(109,  40, 217, 0)    210deg,
    rgba(109,  40, 217, 0)    360deg
  );
  animation: ringRotate 3s linear infinite;
  z-index: 0;
}

/* Halo pulsant */
.jeremy-photo-wrap::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.55) 0%, rgba(109, 40, 217, 0.2) 45%, transparent 70%);
  filter: blur(22px);
  z-index: -1;
  animation: glowPulse 3s ease-in-out infinite;
}

.jeremy-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  background: transparent;
  padding: 4px;
  box-shadow: 0 20px 60px rgba(109, 40, 217, 0.5);
}

/* ===================== BRANDING QUOTE */

.branding-quote {
  text-align: center;
  padding: 16px 0;
}

.branding-quote + section {
  padding: 20px 0 48px;
}

.branding-quote blockquote {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  font-style: italic;
  color: var(--violet-200);
  line-height: 1.5;
  border: none;
  position: relative;
}

.branding-quote blockquote::before {
  display: none;
}

/* ===================== TABLE */

.styled-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.styled-table thead {
  background: rgba(109, 40, 217, 0.3);
}

.styled-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--violet-300);
}

.styled-table td {
  padding: 16px 20px;
  color: var(--gray-300);
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  font-size: 0.95rem;
}

.styled-table tr:hover td {
  background: rgba(109, 40, 217, 0.1);
}

.styled-table td strong {
  color: var(--white);
  font-weight: 600;
}

.price-highlight {
  color: var(--violet-300);
  font-weight: 700;
}

/* ===================== FORM */

.form-wrapper {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 48px;
  backdrop-filter: blur(8px);
}

.form-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--violet-300);
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--card-border);
}

.form-section-title:first-child {
  margin-top: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-300);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(13, 5, 32, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--violet-500);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group select option {
  background: var(--violet-900);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.file-upload {
  background: rgba(13, 5, 32, 0.6);
  border: 2px dashed rgba(139, 92, 246, 0.4);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
}

.file-upload:hover {
  border-color: var(--violet-500);
}

.file-upload p {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-top: 8px;
}

.file-upload input {
  display: none;
}

/* ===================== CHECKLIST */

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--gray-300);
  font-size: 1.15rem;
}

.checklist li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid var(--violet-500);
  color: var(--violet-300);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===================== FAQ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
}

.faq-question:hover {
  background: rgba(124, 58, 237, 0.1);
}

.faq-icon {
  color: var(--violet-400);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--gray-400);
  line-height: 1.7;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

/* ===================== SLOGANS */

.slogans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.slogan-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--violet-200);
  font-style: italic;
  transition: all 0.2s;
}

.slogan-card:hover {
  border-color: var(--violet-500);
  background: rgba(109, 40, 217, 0.15);
}

/* ===================== COACH CAROUSEL */

.coach-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  padding: 4px;
}

.carousel-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 48px;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s;
}

.carousel-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-700), var(--violet-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: 0 0 40px rgba(109, 40, 217, 0.5);
  flex-shrink: 0;
  overflow: hidden;
  border: 3px solid var(--violet-500);
}

.carousel-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.carousel-name {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.carousel-rate {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--violet-300);
  margin-bottom: 8px;
}

.carousel-packs {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--card-border);
}

.carousel-desc {
  color: var(--gray-300);
  line-height: 1.75;
  font-size: 1rem;
}

/* Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(109, 40, 217, 0.7);
  border: 1px solid var(--violet-500);
  color: white;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}

.carousel-btn:hover {
  background: var(--violet-600);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--violet-800);
  border: 1px solid var(--violet-500);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.carousel-dot.active {
  background: var(--violet-400);
  transform: scale(1.35);
}

@media (max-width: 768px) {
  .carousel-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 20px;
    gap: 24px;
  }
  .carousel-avatar {
    margin: 0 auto;
    width: 120px;
    height: 120px;
    font-size: 3rem;
  }
  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
  }
}

/* ===================== COACHES */

.coach-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: all 0.2s;
}

.coach-card:hover {
  border-color: var(--violet-500);
  transform: translateY(-4px);
}

.coach-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-700), var(--violet-500));
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.coach-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.coach-rate {
  color: var(--violet-300);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.coach-packs {
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* ===================== PAGE HERO (small) */

.page-hero {
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

/* Masquer déco cards sur mobile */
@media (max-width: 900px) {
  .deco-card, .deco-chip { display: none; }
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 0%, rgba(109, 40, 217, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes titleShimmer {
  0%   { background-position: -250% center; }
  100% { background-position: 250% center; }
}

.page-hero h1 {
  font-size: clamp(1.7rem, 3.8vw, 3rem);
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: linear-gradient(90deg,
    #ffffff 0%,
    #ffffff 25%,
    #c4b5fd 45%,
    #ffffff 55%,
    #ffffff 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation:
    titleReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) both,
    titleShimmer 5s linear 0.9s infinite;
}

.page-hero p {
  color: var(--gray-300);
  font-size: 1.25rem;
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 32px;
}

/* ===================== INCLUS GRID */

.inclus-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: stretch;
}

.inclus-features {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inclus-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--card-border);
  transition: background 0.2s;
}

.inclus-row:last-child {
  border-bottom: none;
}

.inclus-row:hover {
  background: rgba(124,58,237,0.08);
}

.inclus-emoji {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.inclus-row h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.inclus-row p {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.5;
}

.inclus-price-card {
  background: var(--card-bg);
  border: 1px solid var(--violet-500);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(109,40,217,0.2);
  position: sticky;
  top: 90px;
}

.inclus-price-top {
  background: linear-gradient(145deg, rgba(109,40,217,0.35), rgba(45,21,99,0.4));
  padding: 32px 28px;
  text-align: center;
  border-bottom: 1px solid var(--card-border);
}

.inclus-price-title {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.inclus-price-title span {
  color: var(--violet-300);
}

.inclus-price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.inclus-price-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-400);
}

.inclus-price-top p {
  color: var(--gray-400);
  font-size: 0.85rem;
}

.inclus-price-body {
  padding: 28px;
  border-bottom: 1px solid var(--card-border);
}

.inclus-price-footer {
  padding: 24px 28px;
  text-align: center;
}

.inclus-price-footer p {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 10px;
}

@media (max-width: 900px) {
  .inclus-layout {
    grid-template-columns: 1fr;
  }
  .inclus-price-card {
    position: static;
  }
}

/* ===================== SYSTEM ADAPT */

.system-adapt-section {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(109,40,217,0.18) 0%, transparent 70%);
}

.system-adapt-wrapper {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.system-adapt-header {
  text-align: center;
}

.system-adapt-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin: 16px 0 24px;
  line-height: 1;
}

.system-adapt-hook {
  font-size: 1.3rem;
  color: var(--violet-200);
  font-style: italic;
  font-weight: 500;
}

.system-adapt-body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.system-adapt-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.system-adapt-left p {
  color: var(--gray-300);
  font-size: 1.05rem;
  line-height: 1.75;
}

.system-adapt-highlight {
  background: rgba(124,58,237,0.15);
  border-left: 4px solid var(--violet-400);
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.system-adapt-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 4px 0;
}

.system-adapt-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.sa-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.system-adapt-quote {
  font-size: 1.1rem;
  color: var(--violet-200) !important;
  font-style: italic;
  border-top: 1px solid var(--card-border);
  padding-top: 20px;
  line-height: 1.8 !important;
}

.sa-coach-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  position: sticky;
  top: 100px;
}

.sa-coach-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--violet-400);
  font-weight: 700;
  margin-bottom: 20px;
}

.sa-coach-photo-wrap {
  position: relative;
  width: 148px;
  height: 148px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sa-coach-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: conic-gradient(
    var(--violet-400),
    var(--violet-600),
    #a855f7,
    var(--violet-300),
    var(--violet-500),
    var(--violet-400)
  );
  animation: ringRotate 4s linear infinite;
  z-index: 0;
}

.sa-coach-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.4) 0%, transparent 70%);
  filter: blur(16px);
  z-index: -1;
}

.sa-coach-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: none;
  padding: 4px;
  position: relative;
  z-index: 1;
  display: block;
  box-shadow: 0 16px 40px rgba(109, 40, 217, 0.5);
}

.sa-coach-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.sa-coach-card p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.sa-pillars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sa-pillar {
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--violet-200);
}

.system-adapt-footer {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--card-border);
}

.system-adapt-footer p {
  color: var(--gray-300);
  font-size: 1.05rem;
  line-height: 1.7;
}

.sa-cta-text {
  font-size: 1.2rem !important;
  color: var(--violet-200) !important;
  font-style: italic;
}

.sa-final {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  margin-top: 8px;
}

.sa-final span {
  background: linear-gradient(135deg, var(--violet-400), var(--violet-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 900px) {
  .system-adapt-body {
    grid-template-columns: 1fr;
  }
  .sa-coach-card {
    position: static;
  }
}

/* ===================== RÉSEAUX */

.reseaux-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.reseau-card {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 36px 32px;
  border-radius: 20px;
  text-decoration: none;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: all 0.25s;
  color: var(--white);
}

.reseau-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

.reseau-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reseau-youtube .reseau-icon { background: rgba(255,0,0,0.15); color: #ff4444; }
.reseau-youtube:hover { border-color: #ff4444; box-shadow: 0 16px 48px rgba(255,0,0,0.15); }

.reseau-discord .reseau-icon { background: rgba(88,101,242,0.15); color: #5865F2; }
.reseau-discord:hover { border-color: #5865F2; box-shadow: 0 16px 48px rgba(88,101,242,0.2); }

.reseau-skool .reseau-icon { background: rgba(124,58,237,0.15); color: var(--violet-400); }
.reseau-skool:hover { border-color: var(--violet-400); box-shadow: 0 16px 48px rgba(124,58,237,0.2); }

.reseau-instagram .reseau-icon { background: rgba(225,48,108,0.15); color: #E1306C; }
.reseau-instagram:hover { border-color: #E1306C; box-shadow: 0 16px 48px rgba(225,48,108,0.15); }

.reseau-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.reseau-info p {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.reseau-cta {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--violet-300);
}

@media (max-width: 900px) {
  .reseaux-grid {
    grid-template-columns: 1fr;
  }
  .reseau-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ===================== FOOTER */

footer {
  background: var(--violet-900);
  border-top: 1px solid var(--card-border);
  padding: 48px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
  margin-top: 16px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--violet-300);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--violet-300);
}

.footer-bottom {
  border-top: 1px solid rgba(139, 92, 246, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray-400);
  font-size: 0.85rem;
}

/* ===================== DIVIDER */

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet-700), transparent);
  margin: 0;
}

/* ===================== BANNER */

.banner {
  background: linear-gradient(135deg, var(--violet-700), var(--violet-600));
  padding: 60px;
  border-radius: 20px;
  text-align: center;
}

.banner h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.banner p {
  color: var(--violet-200);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* ===================== FEATURES LIST */

.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  transition: border-color 0.2s;
}

.feature-item:hover {
  border-color: var(--violet-500);
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--gray-400);
}

/* ===================== STAT */

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 48px;
  margin: 40px 0;
}

.stat-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(45, 21, 99, 0.5);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.2s;
}

.stat-box:hover {
  border-color: var(--violet-400);
  background: rgba(109, 40, 217, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(109, 40, 217, 0.25);
}

.stat-box .number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--violet-300);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-box .stat-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  white-space: nowrap;
}

.stat-box .stat-sub {
  font-size: 0.9rem;
  color: var(--gray-400);
  font-weight: 400;
  line-height: 1.5;
  max-width: 200px;
}

.stat-box .label {
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 700;
}

/* ===================== RESPONSIVE — TABLETTE */

@media (max-width: 900px) {
  .jeremy-new-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .jeremy-new-tags, .jeremy-new-btns {
    justify-content: center;
  }
  .inclus-layout {
    grid-template-columns: 1fr;
  }
  .inclus-price-card {
    position: static;
    max-width: 480px;
    margin: 0 auto;
  }
  .sa-coach-card {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ===================== RESPONSIVE — MOBILE */

@media (max-width: 768px) {

  /* === BASE === */
  .container { padding: 0 16px; }
  section { padding: 48px 0; }

  /* === NAV === */
  .nav-inner {
    grid-template-columns: 1fr auto 1fr;
    padding: 10px 16px;
  }
  .nav-logo-img {
    grid-column: 2;
    justify-self: center;
  }
  .nav-logo-full { height: 34px; width: auto; }

  .nav-toggle {
    display: flex;
    z-index: 400;
    grid-column: 3;
    justify-self: end;
  }

  /* Menu plein écran slide-in */
  .nav-links {
    display: flex;
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100dvh;
    background: linear-gradient(160deg, #1a0a3b 0%, #0d0520 100%);
    border-left: 1px solid rgba(139, 92, 246, 0.2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 80px 32px 40px;
    z-index: 300;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.6);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  }

  .nav-links li:last-child {
    border-bottom: none;
    margin-top: 24px;
  }

  .nav-links a {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 16px 0;
    color: var(--gray-300);
    letter-spacing: 0.02em;
  }

  .nav-links a.active {
    color: var(--violet-300);
  }

  .nav-links .nav-cta {
    display: block;
    text-align: center;
    padding: 14px 24px !important;
    font-size: 1.05rem !important;
    border-radius: 10px;
    animation: none !important;
    width: 100%;
  }

  /* Overlay sombre derrière le menu */
  #menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  #menu-overlay.visible {
    opacity: 1;
    pointer-events: auto;
  }

  /* === HERO (index) === */
  .hero {
    min-height: auto;
    padding: 90px 0 56px;
    text-align: center;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    line-height: 1.2;
  }
  .hero p { font-size: 1rem; margin-bottom: 28px; }
  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-btns .btn { width: 100%; max-width: 320px; text-align: center; }
  .hero-badge { font-size: 0.85rem; }
  .deco-card-img, .deco-chip { display: none !important; }

  /* === PAGE HERO (sous-pages) === */
  .page-hero {
    padding: 90px 0 48px;
    text-align: center;
  }
  .page-hero h1 {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    line-height: 1.15;
  }
  .page-hero p { font-size: 0.95rem; }
  .page-hero .btn { width: 100%; max-width: 320px; }

  /* === GRIDS === */
  .grid-2 { grid-template-columns: 1fr; gap: 24px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-3-centered { grid-template-columns: 1fr; }
  .grid-coaches { flex-direction: column; align-items: center; }
  .grid-coaches > * { flex: none; width: 100%; max-width: 400px; }

  /* === OFFRES (3 cartes → colonne) === */
  .grid-3-offers {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 16px;
  }
  .grid-3-offers .offer-card {
    flex: none;
    width: 100%;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .grid-3-offers .offer-card .offer-icon { font-size: 2rem; }
  .grid-3-offers .offer-card h3 { font-size: 1.1rem; }
  .grid-3-offers .offer-card .price { font-size: 1.3rem; }
  .grid-3-offers .offer-card p { font-size: 0.9rem; }

  /* === STATS === */
  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .stat-box {
    padding: 18px 10px;
    overflow: hidden;
  }
  .stat-box .stat-title {
    font-size: 0.95rem;
    white-space: normal;
    word-break: break-word;
  }
  .stat-box .stat-sub { font-size: 0.75rem; }

  /* === JÉRÉMY === */
  .jeremy-new-section { padding: 48px 0; }
  .jeremy-new-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .jeremy-photo-wrap { width: 200px; margin: 0 auto; }
  .jeremy-new-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .jeremy-new-tags, .jeremy-new-btns { justify-content: center; }
  .jeremy-new-btns { flex-direction: column; align-items: center; }
  .jeremy-new-btns .btn { width: 100%; max-width: 300px; text-align: center; }

  /* === CAROUSEL COACHES === */
  .carousel-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 16px;
    gap: 20px;
  }
  .carousel-avatar {
    margin: 0 auto;
    width: 110px;
    height: 110px;
  }
  .carousel-name { font-size: 1.3rem; }
  .carousel-rate { font-size: 1.1rem; }
  .carousel-desc { font-size: 0.9rem; }
  .carousel-btn { width: 36px; height: 36px; font-size: 1.3rem; }
  .carousel-info .btn { width: 100%; text-align: center; }

  /* === COACHING COLLECTIF === */
  .inclus-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .inclus-price-card { position: static; }
  .sa-coach-card { padding: 24px 16px; }
  .sa-pillars { flex-direction: column; gap: 8px; }
  .sa-pillar { justify-content: center; }

  /* === PHILOSOPHY / FEATURES === */
  .features-list { gap: 16px; }
  .feature-item { gap: 12px; }
  .feature-icon { font-size: 1.3rem; min-width: 40px; height: 40px; }

  /* === SLOGANS === */
  .slogans-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .slogan-card { font-size: 1rem; padding: 20px; }

  /* === BANNER/CTA === */
  .banner { padding: 36px 20px; border-radius: 16px; text-align: center; }
  .banner h2 { font-size: 1.5rem; }
  .banner .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
  .banner .btn { width: 100%; max-width: 300px; text-align: center; }

  /* === BRANDING QUOTE === */
  .branding-quote blockquote { font-size: 1.3rem; }

  /* === RÉSEAUX === */
  .reseaux-grid { grid-template-columns: 1fr; gap: 16px; }
  .reseau-card { flex-direction: row; padding: 20px 16px; gap: 16px; }
  .reseau-icon svg { width: 32px; height: 32px; }
  .reseau-icon span { font-size: 2rem !important; }
  .reseau-info h3 { font-size: 1.2rem; }
  .reseau-cta { font-size: 0.85rem; }

  /* === FORMULAIRES === */
  .form-wrapper { padding: 24px 16px; border-radius: 16px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group { margin-bottom: 16px; }
  .form-group label { font-size: 0.9rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 1rem; padding: 12px 14px; }
  .form-section-title { font-size: 1rem; margin: 24px 0 16px; }
  .file-upload { padding: 24px 16px; }

  /* === FOOTER === */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; font-size: 0.8rem; }
  .footer-col h4 { font-size: 1rem; }
  footer { padding: 48px 0 28px; }

  /* === CARDS === */
  .card { padding: 24px 16px; }

  /* === CFP CHECKLIST === */
  .checklist li { font-size: 1rem; }

  /* === SECTION TITLES === */
  .section-title { font-size: clamp(1.4rem, 5vw, 2rem); }
  .section-subtitle { font-size: 0.95rem; }

  /* === COACHING COLLECTIF (mobile) === */
  .system-adapt-highlight { font-size: 0.95rem; padding: 14px 16px; }
  .system-adapt-list li { font-size: 1rem; }
  .inclus-row { gap: 12px; }
  .inclus-row h4 { font-size: 1rem; }
  .inclus-emoji { font-size: 1.5rem; min-width: 36px; }
  .inclus-price-top { padding: 24px 20px; }
  .inclus-price-amount { font-size: 2.5rem; }
  .inclus-price-body { padding: 20px; }
  .inclus-price-footer { padding: 20px; }
  .sa-coach-card { padding: 20px 16px; }
  .sa-coach-photo { width: 100px; height: 100px; }
  .sa-pillars { flex-direction: column; gap: 8px; }
  .sa-final { font-size: 1.4rem !important; }

  /* === CFP (mobile) === */
  .philosophy-box { padding: 24px 16px; }
  .philosophy-box p { font-size: 0.95rem; }

  /* === COACHING INDIVIDUEL (mobile) === */
  .coach-carousel { margin: 0 -4px; }
  .carousel-packs { font-size: 0.8rem; }
  .features-list { gap: 20px; }
  .feature-item { gap: 12px; }

  /* === RÉSEAUX (mobile) === */
  .reseau-card { border-radius: 12px; }

  /* === FAQ === */
  .faq-question { font-size: 0.95rem; padding: 16px 0; }
  .faq-answer p { font-size: 0.9rem; }

  /* === BRANDING QUOTE === */
  .branding-quote { padding: 40px 0; }

  /* === DIVIDER === */
  .divider { margin: 0; }

  /* === ANNEAU JÉRÉMY : désactiver l'animation lourde sur mobile === */
  .jeremy-photo-wrap { animation: none; }
  .jeremy-photo-wrap::before {
    animation: none;
    background: var(--violet-600);
  }
  .jeremy-photo-wrap::after { animation: none; }
}

/* === TRÈS PETIT ÉCRAN (< 400px) === */
@media (max-width: 400px) {
  .container { padding: 0 12px; }
  .page-hero h1 { font-size: 1.35rem; }
  .hero h1 { font-size: 1.65rem; }
  .stats-row { grid-template-columns: 1fr; }
  .nav-logo-full { height: 30px; }
  .carousel-card { padding: 20px 12px; }
  .carousel-avatar { width: 90px; height: 90px; }
  .reseau-card { flex-direction: column; text-align: center; }
  .banner h2 { font-size: 1.3rem; }
  .jeremy-new-title { font-size: 1.8rem; }
}

/* ===================== COACHING COLLECTIF GRID */

.collectif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.collectif-left {
  display: flex;
  flex-direction: column;
}

.collectif-left .features-list {
  flex: 1;
}

.collectif-right {
  display: flex;
  flex-direction: column;
}

.collectif-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: sticky;
  top: 90px;
}

@media (max-width: 768px) {
  .collectif-grid {
    grid-template-columns: 1fr;
  }
  .collectif-card {
    position: static;
  }
}

/* ===================== HERO LOGO FULL */

.hero-logo-full {
  width: 420px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 28px;
  filter: drop-shadow(0 4px 24px rgba(156, 39, 176, 0.45));
  animation: gaLogoPulse 5s ease-in-out infinite;
}

@media (max-width: 600px) {
  .hero-logo-full { width: 200px; }
}

/* ===================== LOGO PULSE */

@keyframes gaLogoPulse {
  0%, 100% {
    transform: scale(1) translateY(0px);
    filter: drop-shadow(0 0 30px rgba(156, 39, 176, 0.5));
  }
  50% {
    transform: scale(1.05) translateY(-8px);
    filter: drop-shadow(0 0 55px rgba(224, 64, 251, 0.75));
  }
}

/* ===================== CURSOR GLOW */

#cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, rgba(109, 40, 217, 0.06) 50%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9998;
  transition: opacity 0.4s;
  filter: blur(4px);
}

/* ===================== POKER PARTICLES */

.poker-particle {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  font-style: normal;
  user-select: none;
  animation: floatUp linear forwards;
  will-change: transform, opacity;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: var(--start-opacity);
  }
  20% { transform: translateY(-20vh) translateX(15px) rotate(30deg); }
  50% { transform: translateY(-50vh) translateX(-10px) rotate(60deg); opacity: var(--start-opacity); }
  80% { transform: translateY(-80vh) translateX(12px) rotate(100deg); }
  100% {
    transform: translateY(-105vh) translateX(-5px) rotate(130deg);
    opacity: 0;
  }
}

/* ===================== HERO DECORATIVE CARDS */

@keyframes cardFloat {
  0%, 100% { transform: translateY(0px) rotate(var(--card-rot)); }
  50%       { transform: translateY(-18px) rotate(var(--card-rot)); }
}

.deco-card-img {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  height: auto;
  border-radius: 10px;
  opacity: 0.88;
  animation: cardFloat ease-in-out infinite;
  will-change: transform;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}

.deco-card {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 14px;
  overflow: hidden;
  animation: cardFloat ease-in-out infinite;
  will-change: transform;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(160deg, #ffffff 0%, #ece9ff 100%);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.6),
    0 4px 12px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,1);
  border: 1px solid rgba(200,190,255,0.5);
  opacity: 0.9;
}

.deco-card .card-val {
  font-size: 1.6rem;
  font-weight: 900;
  font-family: 'Georgia', serif;
  line-height: 1;
}

.deco-card .card-suit-lg {
  font-size: 2.4rem;
  line-height: 1;
}

.deco-card.red  { color: #c0392b; }
.deco-card.black { color: #1a1a2e; }

/* ===================== POKER CHIP DECORATION */

@keyframes chipFloat {
  0%, 100% { transform: translateY(0px) rotate(var(--chip-rot, 0deg)) scale(1); }
  50%       { transform: translateY(-20px) rotate(var(--chip-rot, 0deg)) scale(1.05); }
}

.deco-chip {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  animation: chipFloat ease-in-out infinite;
  will-change: transform;
  opacity: var(--chip-opacity, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 35px rgba(0,0,0,0.6),
    0 2px 8px rgba(0,0,0,0.4),
    inset 0 2px 4px rgba(255,255,255,0.2),
    0 0 24px var(--chip-glow, rgba(124,58,237,0.35));
}

/* Outer ring segments */
.deco-chip .chip-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 6px solid var(--chip-color, #7C3AED);
  background: radial-gradient(circle,
    var(--chip-inner, #2D1563) 52%,
    var(--chip-color, #7C3AED) 53%,
    var(--chip-color, #7C3AED) 65%,
    var(--chip-inner, #2D1563) 66%
  );
}

/* Dash notches on the edge */
.deco-chip .chip-notch {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(
    var(--chip-color, #7C3AED) 0deg 18deg,
    transparent 18deg 30deg
  );
  mask: radial-gradient(circle, transparent 88%, black 89%, black 100%);
  -webkit-mask: radial-gradient(circle, transparent 88%, black 89%, black 100%);
}

/* Center label */
.deco-chip .chip-label {
  position: relative;
  z-index: 2;
  font-size: var(--chip-fs, 13px);
  font-weight: 900;
  font-family: 'Georgia', serif;
  color: var(--chip-text, rgba(255,255,255,0.92));
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
  user-select: none;
}
