/* ═══════════════════════════════════════════════════════════════
   Zupadel — Design system partagé (pages Joueurs / Clubs / Coachs)
   ═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --lime: #C8F135;
  --lime-dark: #5F7E08;
  --dark: #FDFBF5;
  --dark2: #F4EFE3;
  --dark3: #FFFFFF;
  --mid: #ECE6D8;
  --text: #1A1C11;
  --muted: #6C7062;
  --accent: #FF5733;
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--dark); color: var(--text); overflow-x: hidden; }
a { color: inherit; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 4rem; background: rgba(253,251,245,0.9);
  backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.12em; color: var(--lime-dark); text-decoration: none; }
.nav-logo span { color: var(--text); }
nav ul { list-style: none; display: flex; gap: 2.2rem; }
nav ul a { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
nav ul a:hover, nav ul a[aria-current="page"] { color: var(--lime-dark); }
.nav-cta { background: var(--lime); color: #141610; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.6rem 1.4rem; border-radius: 4px; text-decoration: none; transition: background 0.2s, transform 0.15s; }
.nav-cta:hover { background: #d4f54a; transform: translateY(-1px); }

/* BOUTONS */
.btn-primary { background: var(--lime); color: #141610; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 1rem 2.2rem; border-radius: 6px; text-decoration: none; border: none; cursor: pointer; display: inline-block; transition: background 0.2s, transform 0.15s; }
.btn-primary:hover { background: #d4f54a; transform: translateY(-2px); }
.btn-outline { display: inline-block; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 1rem 2.2rem; border-radius: 6px; text-decoration: none; color: var(--text); border: 1px solid rgba(200,241,53,0.35); transition: background 0.2s, border-color 0.2s; }
.btn-outline:hover { background: rgba(200,241,53,0.08); border-color: rgba(200,241,53,0.7); }
.btn-ghost { font-size: 0.9rem; font-weight: 500; color: var(--muted); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: color 0.2s; }
.btn-ghost:hover { color: var(--text); }
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(4px); }

/* SECTION */
.section { padding: 6rem 4rem; }
.section-center { text-align: center; }
.section-center .section-desc { margin-left: auto; margin-right: auto; }
.section-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lime-dark); margin-bottom: 1rem; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.8rem, 5vw, 5rem); line-height: 0.95; letter-spacing: 0.03em; }
.section-title span { color: var(--lime-dark); }
.section-desc { max-width: 560px; font-size: 1.05rem; font-weight: 300; color: var(--muted); line-height: 1.75; margin-top: 1.2rem; }

/* HERO SOUS-PAGE (centré) */
.subhero { position: relative; overflow: hidden; padding: 11rem 4rem 5rem; text-align: center; }
.subhero::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(200,241,53,0.09) 0%, transparent 65%); pointer-events: none; }
.subhero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.subhero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,241,53,0.1); border: 1px solid rgba(200,241,53,0.25); border-radius: 999px; padding: 0.35rem 1rem; margin-bottom: 1.8rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--lime-dark); }
.subhero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); animation: pulse 2s infinite; }
.subhero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3.2rem, 7vw, 6rem); line-height: 0.92; letter-spacing: 0.02em; color: var(--text); }
.subhero h1 span { color: var(--lime-dark); }
.subhero-sub { max-width: 560px; margin: 1.6rem auto 0; font-size: 1.12rem; font-weight: 300; line-height: 1.7; color: var(--muted); }
.subhero-sub strong { color: var(--text); font-weight: 500; }
.subhero-btns { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 2.6rem; flex-wrap: wrap; }
.subhero-social { display: flex; align-items: center; justify-content: center; gap: 0.8rem; margin-top: 2rem; }
.subhero-avatars { display: flex; }
.subhero-av { width: 34px; height: 34px; border-radius: 50%; background: var(--mid); border: 2px solid var(--dark); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; margin-left: -10px; }
.subhero-av:first-child { margin-left: 0; }
.subhero-social-text { font-size: 0.88rem; color: var(--muted); }
.subhero-social-text strong { color: var(--text); font-weight: 700; font-variant-numeric: tabular-nums; }

/* HERO SOMBRE (bandeau contrasté façon tennisngo, sur site clair) */
.subhero { background: #14170D; }
.subhero-tag { color: var(--lime); }
.subhero h1 { color: #F1EEE2; }
.subhero h1 span { color: var(--lime); }
.subhero-sub { color: #BFC4B2; }
.subhero-sub strong { color: #F1EEE2; }
.subhero .btn-ghost { color: #BFC4B2; }
.subhero .btn-ghost:hover { color: #F1EEE2; }
.subhero-social-text { color: #BFC4B2; }
.subhero-social-text strong { color: #F1EEE2; }
.subhero-av { border-color: #14170D; }

/* STATS (3 colonnes, bandeau lime) */
.stats-bar3 { background: var(--lime); padding: 2.6rem 4rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.stat3-val { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; letter-spacing: 0.03em; color: #141610; line-height: 1; }
.stat3-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; color: rgba(13,15,10,0.65); margin-top: 0.4rem; }

/* BLOCS ALTERNÉS 01-04 */
.fblocks { display: flex; flex-direction: column; gap: 5.5rem; margin-top: 5rem; }
.fblock { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.fblock:nth-child(even) .fblock-media { order: 2; }
.fblock-text { max-width: 480px; }
.fblock-num { display: inline-block; font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; letter-spacing: 0.22em; color: var(--lime-dark); margin-bottom: 1rem; }
.fblock-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 3.6vw, 3.4rem); line-height: 0.98; letter-spacing: 0.03em; color: var(--text); margin-bottom: 1.2rem; }
.fblock-desc { font-size: 1.02rem; font-weight: 300; color: var(--muted); line-height: 1.75; }
.fblock-list { list-style: none; margin: 1.5rem 0 2rem; }
.fblock-list li { font-size: 0.92rem; color: var(--text); padding: 0.4rem 0; display: flex; align-items: center; gap: 10px; }
.fblock-list li::before { content: '✓'; color: var(--lime-dark); font-weight: 700; font-size: 0.8rem; background: rgba(200,241,53,0.12); border-radius: 50%; width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fblock-media { position: relative; border-radius: 24px; overflow: hidden; background: linear-gradient(150deg, var(--dark3) 0%, var(--dark2) 100%); border: 1px solid rgba(200,241,53,0.1); padding: 2.6rem 2.4rem; min-height: 320px; display: flex; align-items: center; justify-content: center; }
.fblock-watermark { position: absolute; top: -0.5rem; right: 0.8rem; font-family: 'Bebas Neue', sans-serif; font-size: 9rem; line-height: 1; color: rgba(200,241,53,0.07); pointer-events: none; }
.fblock-card { position: relative; z-index: 1; width: 100%; max-width: 330px; background: rgba(255,255,255,0.82); border: 1px solid rgba(0,0,0,0.08); border-radius: 16px; padding: 1.1rem; backdrop-filter: blur(4px); display: flex; flex-direction: column; gap: 0.6rem; }
.fbc-head { display: flex; align-items: center; gap: 8px; margin-bottom: 0.3rem; }
.fbc-emoji { font-size: 1.1rem; }
.fbc-title { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; color: var(--text); }
.fbc-row, .fbc-post, .fbc-rank { display: flex; align-items: center; gap: 10px; background: var(--mid); border-radius: 10px; padding: 0.6rem 0.7rem; }
.fbc-avatar { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; background: rgba(200,241,53,0.15); color: var(--lime-dark); display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 800; }
.fbc-name { font-size: 0.78rem; font-weight: 600; color: var(--text); }
.fbc-sub { font-size: 0.68rem; color: var(--muted); margin-top: 1px; line-height: 1.35; }
.fbc-row > div, .fbc-post > div, .fbc-rank .fbc-name { flex: 1; min-width: 0; }
.fbc-match { font-size: 0.72rem; font-weight: 800; color: var(--lime-dark); }
.fbc-slot { display: flex; align-items: center; justify-content: space-between; background: var(--mid); border-radius: 10px; padding: 0.65rem 0.8rem; font-size: 0.78rem; color: var(--text); }
.fbc-slot .fbc-ok { font-size: 0.68rem; font-weight: 700; color: #141610; background: var(--lime); border-radius: 6px; padding: 3px 10px; }
.fbc-slot.muted { color: var(--muted); }
.fbc-slot.muted span:last-child { color: var(--muted); background: transparent; font-weight: 600; }
.fbc-pos { width: 20px; text-align: center; font-family: 'Bebas Neue', sans-serif; font-size: 1rem; color: var(--lime-dark); flex-shrink: 0; }
.fbc-pts { font-size: 0.72rem; font-weight: 700; color: var(--lime-dark); white-space: nowrap; }
.fbc-rank.hl { border: 1px solid rgba(200,241,53,0.4); background: rgba(200,241,53,0.06); }

/* COMMENT ÇA MARCHE */
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 4rem; }
.how-grid.steps3 { grid-template-columns: repeat(3, 1fr); }
.step { position: relative; }
.step-num { font-family: 'Bebas Neue', sans-serif; font-size: 4rem; color: rgba(200,241,53,0.14); line-height: 1; margin-bottom: 0.5rem; }
.step-title { font-weight: 600; font-size: 1.05rem; margin-bottom: 0.5rem; }
.step-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* AUDIENCE (pour qui) */
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5px; background: rgba(200,241,53,0.07); margin-top: 4rem; border: 1px solid rgba(200,241,53,0.09); border-radius: 20px; overflow: hidden; }
.aud-card { background: var(--dark2); padding: 2.4rem 2.2rem; transition: background 0.3s; }
.aud-card:hover { background: var(--dark3); }
.aud-num { font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; letter-spacing: 0.22em; color: var(--lime-dark); }
.aud-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.04em; margin: 0.8rem 0 0.6rem; }
.aud-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* COMPARAISON AVANT / AVEC */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 4rem; }
.compare-card { border-radius: 20px; padding: 2.4rem; border: 1px solid rgba(0,0,0,0.07); }
.compare-card.before { background: var(--dark2); }
.compare-card.after { background: rgba(200,241,53,0.05); border-color: rgba(200,241,53,0.25); }
.compare-head { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.04em; margin-bottom: 1.4rem; }
.compare-card.after .compare-head { color: var(--lime-dark); }
.compare-list { list-style: none; }
.compare-list li { font-size: 0.92rem; padding: 0.5rem 0; display: flex; align-items: center; gap: 10px; color: var(--muted); }
.compare-card.before .compare-list li::before { content: '✕'; color: var(--accent); font-weight: 700; font-size: 0.8rem; flex-shrink: 0; }
.compare-card.after .compare-list li { color: var(--text); }
.compare-card.after .compare-list li::before { content: '✓'; color: var(--lime-dark); font-weight: 700; font-size: 0.8rem; flex-shrink: 0; }

/* OFFRE / TARIF SIMPLE */
.offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 4rem; max-width: 760px; }
.offer-card { background: var(--dark2); border-radius: 20px; padding: 2.5rem 2rem; border: 1px solid rgba(0,0,0,0.08); }
.offer-card.featured { background: var(--lime); }
.offer-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.1em; }
.offer-card.featured .offer-name { color: #141610; }
.offer-price { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; line-height: 1.1; margin: 0.8rem 0 0.2rem; }
.offer-card.featured .offer-price { color: #141610; }
.offer-period { font-size: 0.8rem; color: var(--muted); }
.offer-card.featured .offer-period { color: rgba(13,15,10,0.6); }
.offer-features { list-style: none; margin: 1.5rem 0; }
.offer-features li { font-size: 0.88rem; color: var(--muted); padding: 0.4rem 0; display: flex; gap: 8px; }
.offer-features li::before { content: '✓'; color: var(--lime-dark); font-weight: 700; font-size: 0.75rem; }
.offer-card.featured .offer-features li { color: rgba(13,15,10,0.75); }
.offer-card.featured .offer-features li::before { color: #141610; }

/* PARTNERSHIP / BÉNÉFICES / FORMULAIRES */
.partnership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 4rem; align-items: start; }
.coach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 4rem; align-items: start; }
.benefit-item { display: flex; gap: 1rem; margin-bottom: 1.8rem; align-items: flex-start; }
.benefit-icon { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; background: rgba(200,241,53,0.1); border: 1px solid rgba(200,241,53,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.benefit-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.3rem; }
.benefit-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.partner-form-box { background: var(--dark2); border-radius: 20px; padding: 2.5rem; border: 1px solid rgba(200,241,53,0.2); position: sticky; top: 100px; }
.partner-form-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.partner-form-sub { font-size: 0.87rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.6; }
.pf-perks { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.pf-perk { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--muted); }
.pf-perk::before { content: '✓'; color: var(--lime-dark); font-weight: 700; font-size: 0.8rem; flex-shrink: 0; }
.pf-open-btn { width: 100%; background: var(--lime); border: none; border-radius: 10px; padding: 16px; font-size: 0.95rem; font-weight: 700; color: #141610; cursor: pointer; font-family: inherit; letter-spacing: 0.08em; text-transform: uppercase; transition: background 0.2s; }
.pf-open-btn:hover { background: #d4f54a; }
.pf-form-wrap { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease; opacity: 0; }
.pf-form-wrap.open { max-height: 1100px; opacity: 1; }
.pf-input { width: 100%; background: var(--dark3); border: 1.5px solid rgba(0,0,0,0.1); border-radius: 10px; padding: 13px 16px; font-size: 0.88rem; color: var(--text); outline: none; font-family: inherit; margin-bottom: 0.8rem; box-sizing: border-box; transition: border-color 0.2s; }
.pf-input:focus { border-color: rgba(200,241,53,0.4); }
.pf-input::placeholder { color: #8A9078; }
.pf-select { width: 100%; background: var(--dark3); border: 1.5px solid rgba(0,0,0,0.1); border-radius: 10px; padding: 13px 16px; font-size: 0.88rem; color: var(--muted); outline: none; font-family: inherit; margin-bottom: 0.8rem; box-sizing: border-box; cursor: pointer; transition: border-color 0.2s; }
.pf-select:focus { border-color: rgba(200,241,53,0.4); }
.pf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.pf-row .pf-input { margin-bottom: 0; }
.pf-btn { width: 100%; background: var(--lime); border: none; border-radius: 10px; padding: 15px; font-size: 0.9rem; font-weight: 700; color: #141610; cursor: pointer; font-family: inherit; letter-spacing: 0.08em; text-transform: uppercase; transition: background 0.2s; margin-top: 0.8rem; }
.pf-btn:hover { background: #d4f54a; }
.pf-btn:disabled { opacity: 0.6; cursor: default; }
.pf-note { font-size: 0.72rem; color: var(--muted); text-align: center; margin-top: 1rem; line-height: 1.5; }
.pf-ok { display: none; text-align: center; color: var(--lime-dark); font-weight: 600; font-size: 0.95rem; padding: 2rem 0; }
.coach-status-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(200,241,53,0.1); border: 1px solid rgba(200,241,53,0.25); border-radius: 20px; padding: 4px 14px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; color: var(--lime-dark); margin-bottom: 1.5rem; }
.coach-status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); animation: pulse 2s infinite; }
.cf-textarea { width: 100%; background: var(--dark3); border: 1.5px solid rgba(0,0,0,0.1); border-radius: 10px; padding: 13px 16px; font-size: 0.88rem; color: var(--text); outline: none; font-family: inherit; margin-bottom: 0.8rem; box-sizing: border-box; transition: border-color 0.2s; resize: vertical; min-height: 90px; line-height: 1.5; }
.cf-textarea:focus { border-color: rgba(200,241,53,0.4); }
.cf-textarea::placeholder { color: #8A9078; }
.cf-hint { font-size: 0.72rem; color: var(--muted); margin-bottom: 0.8rem; margin-top: -0.4rem; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* BANDEAU LOGOS (marquee) */
.marquee-section { overflow: hidden; padding: 1.1rem 0; border-top: 1px solid rgba(0,0,0,0.08); border-bottom: 1px solid rgba(0,0,0,0.08); background: var(--dark2); position: relative; }
.marquee-section::before, .marquee-section::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
.marquee-section::before { left: 0; background: linear-gradient(to right, #F4EFE3, transparent); }
.marquee-section::after { right: 0; background: linear-gradient(to left, #F4EFE3, transparent); }
.marquee-track { display: flex; align-items: center; width: max-content; animation: marquee-ltr 40s linear infinite; }
.marquee-section:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-ltr { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mq-item { display: flex; align-items: center; padding: 0 2.4rem; flex-shrink: 0; }
.mq-logo { height: 26px; width: auto; max-width: 110px; object-fit: contain; filter: brightness(0); opacity: 0.65; transition: opacity 0.25s; display: block; }
.marquee-section:hover .mq-logo { opacity: 0.9; }
.mq-fallback { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em; color: #596045; white-space: nowrap; }
.mq-vsep { width: 1px; height: 22px; background: rgba(0,0,0,0.08); flex-shrink: 0; }

/* CTA FINAL */
.cta-final { padding: 8rem 4rem; text-align: center; position: relative; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(200,241,53,0.07) 0%, transparent 65%); pointer-events: none; }
.cta-final h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 6vw, 6rem); line-height: 0.92; letter-spacing: 0.03em; position: relative; z-index: 1; }
.cta-final h2 span { color: var(--lime-dark); }
.cta-final p { font-size: 1.1rem; color: var(--muted); margin: 1.5rem auto; max-width: 500px; font-weight: 300; line-height: 1.75; position: relative; z-index: 1; }
.cta-final .cta-final-btns { position: relative; z-index: 1; margin-top: 1rem; }

/* FOOTER (colonnes) */
footer { padding: 4rem 4rem 2.5rem; background: var(--dark2); border-top: 1px solid rgba(200,241,53,0.08); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; }
.footer-brand { max-width: 320px; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--lime-dark); letter-spacing: 0.12em; margin-bottom: 1rem; }
.footer-baseline { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-cta { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; color: var(--lime-dark); text-decoration: none; border: 1px solid rgba(200,241,53,0.35); border-radius: 8px; padding: 0.6rem 1.1rem; transition: background 0.2s, border-color 0.2s; }
.footer-cta:hover { background: rgba(200,241,53,0.08); border-color: rgba(200,241,53,0.7); }
.footer-col-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text); margin-bottom: 1.1rem; }
.footer-col a { display: block; font-size: 0.85rem; color: var(--muted); text-decoration: none; padding: 0.35rem 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--lime-dark); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 1.8rem; border-top: 1px solid rgba(0,0,0,0.06); display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-copy { font-size: 0.78rem; color: var(--muted); }
.footer-socials { display: flex; gap: 1.3rem; }
.footer-socials a { font-size: 0.8rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-socials a:hover { color: var(--lime-dark); }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  nav ul { display: none; }
  .subhero { padding: 8rem 1.5rem 3.5rem; }
  .section { padding: 4rem 1.5rem; }
  .stats-bar3 { padding: 2rem 1.5rem; }
  .fblock { grid-template-columns: 1fr; gap: 2rem; }
  .fblock:nth-child(even) .fblock-media { order: 0; }
  .fblock-media { min-height: 260px; padding: 2rem 1.5rem; }
  .how-grid, .how-grid.steps3, .audience-grid, .compare, .offer-grid, .partnership-grid, .coach-grid { grid-template-columns: 1fr; gap: 2rem; }
  .partner-form-box { position: static; }
  .pf-row { grid-template-columns: 1fr; }
  .stats-bar3 { grid-template-columns: 1fr 1fr; }
  .cta-final { padding: 5rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; max-width: none; }
  .footer-bottom { justify-content: center; text-align: center; }
}
