/* =====================
   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: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1100px;
  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: 8px 18px;
  border-radius: 8px;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--violet-500) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===================== 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;
}

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

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

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

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

.btn {
  display: inline-block;
  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);
}

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

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

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  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 {
  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 {
  color: var(--violet-400);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s, gap 0.2s;
}

.offer-card a:hover {
  color: var(--violet-300);
  gap: 10px;
}

/* ===================== 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-section {
  background: linear-gradient(135deg, rgba(45, 21, 99, 0.6) 0%, rgba(13, 5, 32, 0.8) 100%);
  border-radius: 24px;
  padding: 64px;
  border: 1px solid var(--card-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.jeremy-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.jeremy-text p {
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 24px;
}

.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: 420px;
  max-width: 100%;
}

.jeremy-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(156, 39, 176, 0.45) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  filter: blur(12px);
}

.jeremy-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(156, 39, 176, 0.35));
}

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

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

.branding-quote blockquote {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  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: 12px;
}

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

.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;
  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;
}

.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;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

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

/* ===================== 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;
}

.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: 24px;
  margin: 40px 0;
}

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

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

.stat-box .label {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* ===================== RESPONSIVE */

@media (max-width: 768px) {
  section { padding: 60px 0; }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .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;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--violet-950);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 200;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 300;
  }

  .hero {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .jeremy-section {
    grid-template-columns: 1fr;
    padding: 32px;
    text-align: center;
  }

  .jeremy-avatar {
    order: -1;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

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

  .banner {
    padding: 40px 24px;
  }

  .form-wrapper {
    padding: 28px 20px;
  }

  .styled-table {
    font-size: 0.85rem;
  }

  .styled-table th,
  .styled-table td {
    padding: 12px 12px;
  }
}

/* ===================== 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: 260px; }
}

/* ===================== 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 */

.deco-card {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 10px;
  font-weight: 800;
  line-height: 1;
  animation: cardFloat ease-in-out infinite;
  will-change: transform;
  backdrop-filter: blur(2px);
}

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

.deco-card .card-value {
  font-size: 1rem;
}

.deco-card .card-suit {
  font-size: 1.4rem;
  text-align: center;
}

.deco-card .card-value-bottom {
  font-size: 1rem;
  transform: rotate(180deg);
  align-self: flex-end;
}

/* red suits */
.deco-card.red {
  background: rgba(255,255,255, 0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: #f87171;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(139,92,246,0.15);
}

/* black suits */
.deco-card.black {
  background: rgba(255,255,255, 0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(139,92,246,0.15);
}

/* ===================== GA CHIP DECORATION */

.ga-chip {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  animation: gaChipFloat ease-in-out infinite;
  will-change: transform, opacity;
}

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

.ga-chip img {
  width: 100%;
  height: 100%;
  opacity: var(--chip-opacity, 0.18);
  filter: drop-shadow(0 0 12px rgba(156, 39, 176, 0.5));
}
