/* ══════════════════════════════════════
   FORGEFIT — style.css
   Toutes les couleurs, polices et mises en page
   ══════════════════════════════════════ */

/* ────────────────────────────────────
   VARIABLES — modifie ici pour changer
   toutes les couleurs du site d'un coup
   ──────────────────────────────────── */
:root {
  /* Violet principal */
  --purple:        #5b21b6;
  --purple-dark:   #3b0764;
  --purple-mid:    #7c3aed;
  --purple-light:  #ede9fe;
  --purple-xlight: #f5f3ff;

  /* Jaune / Doré */
  --yellow:        #eab308;
  --yellow-dark:   #a16207;
  --yellow-light:  #fef9c3;
  --yellow-mid:    #facc15;

  /* Gris neutres */
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50:  #f9fafb;
  --white:    #ffffff;

  /* Ombres */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.15);

  /* Arrondis */
  --radius:    10px;
  --radius-lg: 16px;
}

/* ────────────────────────────────────
   RESET & BASE
   ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--white);
  color: var(--gray-800);
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; }
a { color: inherit; }

/* ────────────────────────────────────
   MISE EN PAGE
   ──────────────────────────────────── */
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ────────────────────────────────────
   HEADER & MENU BURGER
   ──────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: 2px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: .08em;
  color: var(--purple-dark);
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
}
.logo span { color: var(--yellow); }

/* Bouton burger */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background .2s;
  flex-shrink: 0;
}
.burger:hover { background: var(--gray-100); }
.burger span {
  display: block;
  height: 2px;
  background: var(--purple-dark);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
}
.burger span:nth-child(1) { width: 100%; }
.burger span:nth-child(2) { width: 75%; }
.burger span:nth-child(3) { width: 100%; }

/* Burger animé (état ouvert → croix) */
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 100%; }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 100%; }

/* Drawer latéral */
.drawer {
  position: fixed;
  top: 68px; right: 0; bottom: 0;
  width: min(320px, 100vw);
  background: var(--white);
  border-left: 2px solid var(--gray-100);
  box-shadow: -8px 0 40px rgba(0,0,0,.12);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  z-index: 499;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 8px;
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }

/* Overlay sombre derrière le drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  top: 68px;
  background: rgba(0,0,0,.35);
  z-index: 498;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

/* Liens dans le drawer */
.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gray-700);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: background .2s, color .2s;
}
.nav-link:hover  { background: var(--purple-xlight); color: var(--purple); }
.nav-link.active { background: var(--purple-light); color: var(--purple-dark); font-weight: 700; }
.nav-link .icon  { font-size: 1.2rem; width: 28px; flex-shrink: 0; }

.drawer-divider  { height: 1px; background: var(--gray-200); margin: 8px 0; }
.drawer-cta      { margin-top: auto; padding-top: 16px; }

/* ────────────────────────────────────
   PAGES (navigation par onglets)
   ──────────────────────────────────── */
.page { display: none; }
.page.active { display: block; animation: fadeIn .35s ease both; }

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

/* ────────────────────────────────────
   BOUTONS
   ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-lg { font-size: 1rem;   padding: 14px 28px; }
.btn-md { font-size: .9rem;  padding: 10px 20px; }
.btn-sm { font-size: .82rem; padding: 7px 14px; }
.btn-full { width: 100%; justify-content: center; }

.btn-purple {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(91,33,182,.35);
}
.btn-purple:hover { background: var(--purple-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(91,33,182,.45); }

.btn-yellow {
  background: var(--yellow);
  color: var(--gray-900);
  box-shadow: 0 4px 14px rgba(234,179,8,.4);
}
.btn-yellow:hover { background: var(--yellow-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(234,179,8,.5); }

.btn-outline-purple {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}
.btn-outline-purple:hover { background: var(--purple); color: var(--white); }

.btn-outline-gray {
  background: transparent;
  color: var(--gray-600);
  border: 2px solid var(--gray-300);
}
.btn-outline-gray:hover { border-color: var(--purple); color: var(--purple); }

/* ────────────────────────────────────
   TYPOGRAPHIE
   ──────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

h1, h2 { font-family: 'Bebas Neue', sans-serif; line-height: .95; letter-spacing: .02em; }
h3 { font-family: 'Outfit', sans-serif; font-weight: 800; line-height: 1.15; }

.display-xl { font-size: clamp(3.5rem, 8vw, 7rem); }
.display-lg { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.display-md { font-size: clamp(2rem, 4vw, 3rem); }

.text-purple { color: var(--purple); }
.text-yellow { color: var(--yellow-dark); }
.text-muted  { color: var(--gray-500); }
.text-dark   { color: var(--gray-900); }

/* ────────────────────────────────────
   SECTIONS
   ──────────────────────────────────── */
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.section-header { margin-bottom: 48px; }
.section-header p { font-size: 1.05rem; color: var(--gray-600); margin-top: 10px; max-width: 560px; line-height: 1.7; }

.divider { height: 1px; background: var(--gray-200); }

/* ────────────────────────────────────
   ANIMATIONS AU SCROLL
   ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ════════════════════════════════════
   PAGE ACCUEIL
   ════════════════════════════════════ */

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 60%, #6d28d9 100%);
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 600px; height: 600px;
  background: rgba(234,179,8,.12);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -5%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--yellow-mid);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--yellow-mid);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{ opacity:1 } 50%{ opacity:.3 } }

.hero h1 { color: var(--white); margin-bottom: 18px; animation: fadeUp .5s ease both; }
.hero h1 em { color: var(--yellow-mid); font-style: normal; display: block; }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin-bottom: 28px;
  animation: fadeUp .5s .1s ease both;
}
.hero-desc strong { color: var(--white); }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; animation: fadeUp .5s .18s ease both; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.15);
  animation: fadeUp .5s .26s ease both;
  flex-wrap: wrap;
}
.hstat-n { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; color: var(--yellow-mid); line-height: 1; }
.hstat-l { font-size: .8rem; color: rgba(255,255,255,.6); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-top: 2px; }

/* Cartes flottantes hero (côté droit) */
.hero-right-cards { display: flex; flex-direction: column; gap: 14px; animation: fadeUp .5s .1s ease both; }

.hcard {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  padding: 18px 20px;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: background .2s;
}
.hcard:hover { background: rgba(255,255,255,.18); }
.hcard-icon  { font-size: 1.8rem; flex-shrink: 0; }
.hcard-title { font-weight: 700; font-size: .98rem; color: var(--white); margin-bottom: 3px; }
.hcard-text  { font-size: .85rem; color: rgba(255,255,255,.68); line-height: 1.45; }
.hcard-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--yellow-mid); margin-top: 4px; }

@keyframes fadeUp { from { opacity:0; transform:translateY(20px) } to { opacity:1; transform:translateY(0) } }

/* Trust bar */
.trust-bar { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 14px 0; }
.trust-items { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: .84rem; font-weight: 600; color: var(--gray-600); }
.trust-item span { font-size: 1rem; }

/* Section "Pourquoi" */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }

.why-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.why-card:hover { border-color: var(--purple-light); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-card:hover::before { transform: scaleX(1); }

.wc-icon  { font-size: 2rem; margin-bottom: 12px; }
.wc-title { font-size: 1rem; font-weight: 800; color: var(--gray-900); margin-bottom: 8px; }
.wc-text  { font-size: .88rem; color: var(--gray-500); line-height: 1.6; }

/* Bannière CTA */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: 'PROMO';
  position: absolute; right: -20px; bottom: -20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 7rem;
  color: rgba(255,255,255,.04);
  pointer-events: none; line-height: 1;
}
.cta-banner-text h3 { font-family:'Bebas Neue',sans-serif; font-size: 2.2rem; color: var(--white); margin-bottom: 6px; letter-spacing:.03em; }
.cta-banner-text p  { font-size: .97rem; color: rgba(255,255,255,.75); }
.cta-price          { text-align: right; }
.cta-price-old  { font-size: .9rem; color: rgba(255,255,255,.45); text-decoration: line-through; margin-bottom: 2px; font-weight:600; }
.cta-price-main { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; color: var(--yellow-mid); line-height: 1; }
.cta-price-note { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 2px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; }

/* ════════════════════════════════════
   PAGE PROGRAMMES
   ════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: var(--white);
  padding: 56px 0 48px;
}
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p  { font-size: 1.05rem; color: rgba(255,255,255,.78); max-width: 540px; line-height: 1.7; }

/* Filtres */
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; padding: 24px 0; border-bottom: 1px solid var(--gray-200); }
.filt {
  font-size: .84rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 100px;
  border: 2px solid var(--gray-300); background: var(--white); color: var(--gray-500);
  cursor: pointer; transition: all .2s;
}
.filt.active, .filt:hover { background: var(--purple); color: var(--white); border-color: var(--purple); }

/* Grille produits */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; padding: 40px 0 80px; }

.product-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.product-card:hover { border-color: var(--purple); box-shadow: 0 8px 32px rgba(91,33,182,.15); transform: translateY(-4px); }

/* Thumbnails colorés */
.p-thumb {
  aspect-ratio: 16/8;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.thumb-1 { background: linear-gradient(135deg, #3b0764 0%, #7c3aed 60%, #a78bfa 100%); }
.thumb-2 { background: linear-gradient(135deg, #1e1b4b 0%, #4338ca 60%, #818cf8 100%); }
.thumb-3 { background: linear-gradient(135deg, #4a1d96 0%, #5b21b6 55%, #eab308 100%); }
.thumb-4 { background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 60%, #93c5fd 100%); }
.thumb-5 { background: linear-gradient(135deg, #3b0764 0%, #9333ea 40%, #f0abfc 100%); }
.thumb-6 { background: linear-gradient(135deg, #1c1917 0%, #57534e 55%, #a8a29e 100%); }

.p-thumb-icon { position: relative; z-index: 1; filter: drop-shadow(0 2px 8px rgba(0,0,0,.3)); }

.p-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--yellow); color: var(--gray-900);
  font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px; z-index: 1;
}
.p-level {
  position: absolute; top: 10px; left: 10px;
  background: rgba(0,0,0,.45); color: rgba(255,255,255,.9);
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px; z-index: 1; backdrop-filter: blur(4px);
}

.p-body { padding: 20px; }
.p-cat  { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--purple); margin-bottom: 4px; }
.p-body h3 { font-size: 1.25rem; color: var(--gray-900); margin-bottom: 8px; }
.p-desc    { font-size: .88rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 14px; }

.p-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.ptag   { font-size: .76rem; font-weight: 600; color: var(--gray-600); background: var(--gray-100); border-radius: 6px; padding: 3px 9px; border: 1px solid var(--gray-200); }

.p-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--gray-100); }
.p-price-old  { font-size: .82rem; color: var(--gray-400); text-decoration: line-through; font-weight:600; }
.p-price-main { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--purple-dark); line-height: 1; }
.p-price-unit { font-size: .9rem; color: var(--gray-500); font-weight: 500; }

/* ════════════════════════════════════
   PAGE TÉMOIGNAGES
   ════════════════════════════════════ */
.testi-summary-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; margin: 36px 0; }
.ts-box { background: var(--purple-xlight); border: 2px solid var(--purple-light); border-radius: var(--radius); padding: 20px 16px; text-align: center; }
.ts-num { font-family:'Bebas Neue',sans-serif; font-size:2.4rem; color:var(--purple-dark); line-height:1; }
.ts-lbl { font-size:.76rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--purple); margin-top:3px; }

.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; padding-bottom: 80px; }
.tcard { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; transition: border-color .25s, box-shadow .25s; }
.tcard:hover { border-color: var(--purple-light); box-shadow: var(--shadow-md); }
.tcard-stars  { color: var(--yellow); font-size: .95rem; letter-spacing: .04em; margin-bottom: 10px; }
.tcard-text   { font-size: .93rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .9rem; color: var(--white); flex-shrink: 0; }
.av-1 { background: linear-gradient(135deg, #5b21b6, #7c3aed) }
.av-2 { background: linear-gradient(135deg, #1e3a5f, #2563eb) }
.av-3 { background: linear-gradient(135deg, #7e22ce, #c026d3) }
.av-4 { background: linear-gradient(135deg, #a16207, #eab308) }
.av-5 { background: linear-gradient(135deg, #166534, #16a34a) }
.av-6 { background: linear-gradient(135deg, #9f1239, #e11d48) }
.tcard-name   { font-size: .95rem; font-weight: 700; color: var(--gray-900); }
.tcard-prog   { font-size: .78rem; color: var(--purple); font-weight: 600; margin-top: 1px; }
.tcard-result { display: inline-block; font-size: .74rem; font-weight: 700; color: var(--purple-dark); background: var(--purple-xlight); border: 1px solid var(--purple-light); border-radius: 100px; padding: 2px 10px; margin-top: 5px; }

/* ════════════════════════════════════
   PAGE À PROPOS
   ════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-text h2 { margin-bottom: 16px; }
.about-text p  { font-size: .97rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 14px; }

.about-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.an-box { background: var(--purple-xlight); border: 2px solid var(--purple-light); border-radius: var(--radius); padding: 20px 18px; }
.an-box:first-child { grid-column: span 2; background: linear-gradient(135deg, var(--purple-dark), var(--purple)); }
.an-box:first-child .an-num { color: var(--yellow-mid); }
.an-box:first-child .an-lbl { color: rgba(255,255,255,.7); }
.an-num { font-family:'Bebas Neue',sans-serif; font-size:2.6rem; color:var(--purple-dark); line-height:1; }
.an-lbl { font-size:.8rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--purple); margin-top:3px; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 40px; }
.team-card { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; transition: border-color .25s, box-shadow .25s, transform .25s; }
.team-card:hover { border-color: var(--purple); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-avatar { width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; color: var(--white); }
.ta1 { background: linear-gradient(135deg, #5b21b6, #7c3aed) }
.ta2 { background: linear-gradient(135deg, #1e3a5f, #3b82f6) }
.ta3 { background: linear-gradient(135deg, #7e22ce, #ec4899) }
.team-name { font-size:1.1rem; font-weight:800; color:var(--gray-900); margin-bottom:4px; }
.team-role { font-size:.78rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--purple); margin-bottom:10px; }
.team-bio  { font-size:.86rem; color:var(--gray-500); line-height:1.6; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 40px; }
.val-card { background: var(--gray-50); border: 2px solid var(--gray-200); border-radius: var(--radius); padding: 24px 20px; transition: border-color .2s, background .2s; }
.val-card:hover { border-color: var(--purple-light); background: var(--purple-xlight); }
.val-icon  { font-size:1.9rem; margin-bottom:10px; }
.val-title { font-size:.95rem; font-weight:800; color:var(--gray-900); margin-bottom:7px; }
.val-text  { font-size:.86rem; color:var(--gray-500); line-height:1.6; }

/* ════════════════════════════════════
   PAGE CONTACT
   ════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; padding: 64px 0 80px; align-items: start; }
.contact-left h2   { margin-bottom: 12px; }
.contact-left .lead { font-size:1rem; color:var(--gray-600); line-height:1.7; margin-bottom:28px; }

.contact-items { display: flex; flex-direction: column; gap: 14px; }
.ci { display: flex; align-items: flex-start; gap: 14px; background: var(--gray-50); border: 2px solid var(--gray-200); border-radius: var(--radius); padding: 16px 18px; transition: border-color .2s; }
.ci:hover { border-color: var(--purple-light); }
.ci-icon  { font-size:1.4rem; flex-shrink:0; }
.ci-title { font-size:.78rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--purple); margin-bottom:3px; }
.ci-val   { font-size:.9rem; color:var(--gray-600); line-height:1.5; }
.ci-val a { color:var(--purple); font-weight:600; text-decoration:none; }
.ci-val a:hover { text-decoration:underline; }

/* Formulaire */
.contact-form { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-md); }
.form-title { font-size:1.5rem; font-weight:800; color:var(--gray-900); margin-bottom:4px; }
.form-sub   { font-size:.88rem; color:var(--gray-500); margin-bottom:24px; }
.form-row   { margin-bottom: 16px; }
.form-row label { display: block; font-size: .82rem; font-weight: 700; color: var(--gray-700); margin-bottom: 5px; letter-spacing: .04em; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%; background: var(--gray-50); border: 2px solid var(--gray-200); border-radius: 8px;
  color: var(--gray-900); font-family: 'Outfit', sans-serif; font-size: .95rem; padding: 10px 14px;
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(91,33,182,.12); background: var(--white); }
.form-row textarea { resize: vertical; min-height: 110px; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size:.76rem; color:var(--gray-400); text-align:center; margin-top:12px; }
.form-note a { color:var(--purple); }

/* FAQ */
.faq-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; margin-top: 32px; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q {
  width:100%; background:none; border:none;
  font-family:'Outfit',sans-serif; font-weight:600; font-size:.97rem;
  color:var(--gray-800); text-align:left; padding: 16px 0; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  transition:color .2s;
}
.faq-q:hover { color:var(--purple); }
.faq-arrow  { font-size:1.1rem; color:var(--purple); transition:transform .3s; flex-shrink:0; }
.faq-item.open .faq-arrow { transform:rotate(45deg); }
.faq-a { overflow:hidden; max-height:0; transition:max-height .35s ease, padding .35s; }
.faq-item.open .faq-a { max-height:160px; padding-bottom:14px; }
.faq-a p { font-size:.88rem; color:var(--gray-500); line-height:1.7; }

/* ════════════════════════════════════
   MODALE ACHAT
   ════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55); backdrop-filter: blur(6px);
  z-index: 900; display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  max-width: 480px; width: 100%; position: relative;
  box-shadow: var(--shadow-xl); transform: scale(.96); transition: transform .25s;
}
.modal-overlay.open .modal { transform: scale(1); }

.modal-close {
  position: absolute; top:14px; right:14px;
  background: var(--gray-100); border:none; width:32px; height:32px;
  border-radius:50%; font-size:1.1rem; cursor:pointer; color:var(--gray-500);
  display:flex; align-items:center; justify-content:center; transition:background .2s, color .2s;
}
.modal-close:hover { background:var(--gray-200); color:var(--gray-900); }

.modal .eyebrow   { margin-bottom:4px; }
.modal-name       { font-size:1.8rem; font-weight:800; color:var(--gray-900); margin-bottom:2px; }
.modal-price      { font-family:'Bebas Neue',sans-serif; font-size:3rem; color:var(--purple-dark); line-height:1; margin-bottom:20px; }
.modal-inc-title  { font-size:.76rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--gray-500); margin-bottom:10px; }

.modal-feat { display:flex; align-items:center; gap:10px; font-size:.9rem; color:var(--gray-700); padding:8px 0; border-bottom:1px solid var(--gray-100); }
.modal-feat:last-child { border-bottom:none; }
.modal-feat::before { content:'✓'; color:var(--purple); font-weight:800; flex-shrink:0; }
.modal-feats { margin-bottom: 24px; }

.modal-pay-btn {
  display: flex; width:100%; align-items:center; justify-content:center; gap:8px;
  background: var(--purple); color: var(--white);
  font-family:'Outfit',sans-serif; font-weight:700; font-size:1rem;
  padding:14px; border-radius:8px; border:none; cursor:pointer; text-decoration:none;
  transition: background .2s, box-shadow .2s; box-shadow: 0 4px 16px rgba(91,33,182,.4);
}
.modal-pay-btn:hover { background:var(--purple-dark); box-shadow:0 6px 24px rgba(91,33,182,.55); }
.modal-secure { text-align:center; font-size:.76rem; color:var(--gray-400); margin-top:10px; }

/* ════════════════════════════════════
   FOOTER
   ════════════════════════════════════ */
footer { background: var(--gray-900); color: var(--gray-300); padding: 56px 0 28px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo  { font-family:'Bebas Neue',sans-serif; font-size:1.8rem; color:var(--white); margin-bottom:10px; }
.footer-logo span { color:var(--yellow); }
.footer-about { font-size:.86rem; color:var(--gray-500); line-height:1.65; }
.footer-col h4 { font-size:.78rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--gray-400); margin-bottom:14px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:8px; }
.footer-col a  { font-size:.88rem; color:var(--gray-500); text-decoration:none; transition:color .2s; }
.footer-col a:hover { color:var(--yellow); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.07); padding-top:20px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-copy   { font-size:.82rem; color:var(--gray-600); }
.footer-stripe { display:flex; align-items:center; gap:6px; font-size:.78rem; color:var(--gray-600); background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); padding:5px 12px; border-radius:6px; }
.footer-stripe strong { color:#8b9cf4; }

/* ════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner          { grid-template-columns: 1fr; }
  .hero-right-cards    { display: none; }
  .about-grid          { grid-template-columns: 1fr; }
  .contact-layout      { grid-template-columns: 1fr; }
  .footer-top          { grid-template-columns: 1fr 1fr; }
  .faq-wrap            { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .wrap        { padding: 0 16px; }
  .section     { padding: 56px 0; }
  .hero        { padding: 56px 0 40px; }
  .footer-top  { grid-template-columns: 1fr; }
  .form-2col   { grid-template-columns: 1fr; }
  .testi-summary-row { grid-template-columns: 1fr 1fr; }
}
