:root {
  --bg: #0B1628;
  --surface: #F4F0E8;
  --surface-2: #E8E2D6;
  --ink: #1A1A1A;
  --ink-soft: #555;
  --accent: #C8A951;
  --accent-2: #3A6B4F;
  --line: rgba(200,169,81,0.22);
  --line-strong: rgba(200,169,81,0.45);
  --header-h: 72px;
  --radius: 10px;
  interpolate-size: allow-keywords;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html.no-js .reveal { opacity: 1; transform: none; }

body {
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.7;
  color: var(--ink);
  background: var(--surface);
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--accent-2); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', 'Palatino Linotype', Palatino, Georgia, serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: clamp(16px,4vw,32px);
  padding-right: clamp(16px,4vw,32px);
}

/* ───── Skip link ───── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: var(--bg);
  padding: 8px 18px; border-radius: 0 0 6px 6px;
  font-weight: 600; z-index: 10000;
  transition: top 180ms;
}
.skip-link:focus { top: 0; }

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(11, 22, 40, 0.92);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  padding: 0;
}
.site-header.scrolled {
  background: rgba(11,22,40,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
}
.header-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(16px,4vw,32px);
  height: var(--header-h);
  transition: height 240ms ease;
}
.scrolled .header-inner { height: 58px; }

.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-style: italic;
  font-size: 1.7rem; color: var(--accent);
  letter-spacing: 0.04em;
  text-decoration: none;
  flex-shrink: 0;
}
.logo:hover { color: #dfc06a; }

.nav-desktop {
  display: none;
  align-items: center; gap: 28px;
}
@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.nav-desktop a {
  color: var(--surface);
  font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.02em; text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px; background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a:hover::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop a.is-active::after { width: 100%; }

.nav-desktop .nav-cta {
  background: var(--accent); color: var(--bg);
  padding: 8px 20px; border-radius: 6px;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 240ms, color 240ms, transform 200ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: #dfc06a; color: var(--bg);
  transform: translateY(-2px);
}

/* ───── Nav toggle (hamburger / X) ───── */
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 6px; width: 48px; height: 48px;
  background: rgba(200,169,81,0.22); border: 2px solid rgba(200,169,81,0.7);
  border-radius: 8px; cursor: pointer;
  z-index: 1100; position: relative; padding: 8px;
  transition: background 200ms, border-color 200ms;
}
.nav-toggle:hover, .nav-toggle:focus-visible {
  background: rgba(200,169,81,0.35);
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(200,169,81,0.25);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-toggle span {
  display: block; width: 24px; height: 3px;
  background: var(--accent); border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ═══════════════════════════════════════════
   DRAWER (outside header)
   ═══════════════════════════════════════════ */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0; pointer-events: none;
  transition: opacity 240ms;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: #0d1a30;
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column;
  padding: calc(var(--header-h) + 32px) 32px 32px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }

.drawer a {
  color: var(--surface); font-size: 1.1rem; font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(200,169,81,0.12);
  text-decoration: none;
  transition: color 200ms, padding-left 200ms;
}
.drawer a:hover { color: var(--accent); padding-left: 8px; }
.drawer a.is-active { color: var(--accent); }

.drawer .drawer-cta {
  display: inline-block; margin-top: 24px;
  background: var(--accent); color: var(--bg);
  padding: 14px 28px; border-radius: 8px;
  text-align: center; font-weight: 600;
  border-bottom: none;
  transition: background 200ms, color 200ms;
}
.drawer .drawer-cta:hover {
  background: #dfc06a; color: var(--bg); padding-left: 28px;
}

@media (min-width: 1024px) {
  .drawer, .drawer-backdrop { display: none !important; }
}

/* ═══════════════════════════════════════════
   MAIN offset
   ═══════════════════════════════════════════ */
main { padding-top: var(--header-h); }
main section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

.page-content a { word-break: break-word; overflow-wrap: anywhere; }

/* ═══════════════════════════════════════════
   HERO — type-only-massive
   ═══════════════════════════════════════════ */
.hero {
  background: var(--bg);
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: clamp(80px,12vh,140px) 0;
}

.hero-pitch {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.09; color: var(--accent);
  pointer-events: none;
}
.hero-pitch svg { width: 90%; max-width: 800px; height: auto; }

.tactic-field {
  position: absolute; right: 3%; top: 50%; transform: translateY(-50%);
  width: 320px; height: 440px; opacity: 0.18;
  pointer-events: none;
}
@media (max-width: 1024px) { .tactic-field { display: none; } }

.tactic-field .player {
  position: absolute; width: 12px; height: 12px;
  background: var(--accent); border-radius: 50%;
}
.tactic-field .pass-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.tactic-field .pass-svg line {
  stroke: var(--accent); stroke-width: 1;
  stroke-dasharray: 6 4; opacity: 0.6;
}

/* Player position animations */
.player.p-gk  { left: 50%; top: 90%; animation: p-gk 12s ease-in-out infinite; }
.player.p-lb  { left: 12%; top: 70%; animation: p-lb 12s ease-in-out infinite; }
.player.p-cb1 { left: 35%; top: 74%; animation: p-cb1 12s ease-in-out infinite; }
.player.p-cb2 { left: 62%; top: 74%; animation: p-cb2 12s ease-in-out infinite; }
.player.p-rb  { left: 85%; top: 70%; animation: p-rb 12s ease-in-out infinite; }
.player.p-lm  { left: 18%; top: 48%; animation: p-lm 12s ease-in-out infinite; }
.player.p-cm  { left: 48%; top: 52%; animation: p-cm 12s ease-in-out infinite; }
.player.p-rm  { left: 78%; top: 48%; animation: p-rm 12s ease-in-out infinite; }
.player.p-lw  { left: 15%; top: 25%; animation: p-lw 12s ease-in-out infinite; }
.player.p-st  { left: 48%; top: 18%; animation: p-st 12s ease-in-out infinite; }
.player.p-rw  { left: 82%; top: 25%; animation: p-rw 12s ease-in-out infinite; }

@keyframes p-gk  { 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(4px,-8px); } }
@keyframes p-lb  { 0%,100%{ transform: translate(0,0); } 40%{ transform: translate(20px,-40px); } 70%{ transform: translate(10px,-20px); } }
@keyframes p-cb1 { 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(8px,-12px); } }
@keyframes p-cb2 { 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(-6px,-10px); } }
@keyframes p-rb  { 0%,100%{ transform: translate(0,0); } 40%{ transform: translate(-18px,-38px); } 70%{ transform: translate(-8px,-18px); } }
@keyframes p-lm  { 0%,100%{ transform: translate(0,0); } 35%{ transform: translate(30px,-20px); } 65%{ transform: translate(15px,-35px); } }
@keyframes p-cm  { 0%,100%{ transform: translate(0,0); } 30%{ transform: translate(-10px,-25px); } 60%{ transform: translate(12px,-18px); } }
@keyframes p-rm  { 0%,100%{ transform: translate(0,0); } 35%{ transform: translate(-25px,-22px); } 65%{ transform: translate(-10px,-30px); } }
@keyframes p-lw  { 0%,100%{ transform: translate(0,0); } 45%{ transform: translate(24px,-30px); } }
@keyframes p-st  { 0%,100%{ transform: translate(0,0); } 30%{ transform: translate(0,30px); } 60%{ transform: translate(-15px,-10px); } }
@keyframes p-rw  { 0%,100%{ transform: translate(0,0); } 45%{ transform: translate(-22px,-28px); } }

@media (prefers-reduced-motion: reduce) {
  .tactic-field .player { animation: none !important; }
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 720px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
  position: relative; padding-left: 36px;
}
.eyebrow::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 24px; height: 1px; background: var(--accent);
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 4.5rem);
  color: var(--accent);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1.05rem,1.6vw,1.2rem);
  color: rgba(244,240,232,0.75);
  max-width: 520px; line-height: 1.75;
  margin-bottom: 36px;
}

/* ───── Buttons ───── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--bg);
  padding: 14px 32px; border-radius: 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.02em;
  border: none; cursor: pointer;
  transition: background 220ms, color 220ms, transform 200ms, box-shadow 220ms;
  text-decoration: none;
  position: relative; overflow: hidden;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: #dfc06a; color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,81,0.28);
}
.btn-primary::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 20px; height: 20px;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%,-50%) scale(0);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.btn-primary:active::after { transform: translate(-50%,-50%) scale(6); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  padding: 12px 28px; border-radius: 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  border: 1.5px solid var(--line-strong);
  cursor: pointer;
  transition: background 220ms, color 220ms, border-color 220ms, transform 200ms;
  text-decoration: none;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface-2); color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ───── Trust strip ───── */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 32px;
}
.trust-strip span {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(244,240,232,0.5);
  padding: 6px 14px;
  border: 1px solid rgba(200,169,81,0.18);
  border-radius: 100px;
}

/* ═══════════════════════════════════════════
   STATS BAND
   ═══════════════════════════════════════════ */
.stats-band {
  background: var(--accent-2);
  padding: clamp(32px,6vw,56px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-style: italic;
  font-size: clamp(2rem,4vw,3rem);
  color: var(--accent);
  line-height: 1.1;
}
.stat-label {
  display: block; margin-top: 6px;
  font-size: 0.82rem; font-weight: 600;
  color: rgba(244,240,232,0.8);
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   SECTIONS — general
   ═══════════════════════════════════════════ */
section { padding: clamp(56px,10vw,96px) 0; }

.section-eyebrow {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.section-title {
  font-size: clamp(2rem,4.5vw,3.2rem);
  margin-bottom: 20px;
}
.gold-divider {
  width: 72px; height: 1px;
  background: var(--accent);
  margin-bottom: 40px;
}
.section-dark { background: var(--bg); color: var(--surface); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--surface); }
.section-dark .section-eyebrow { color: var(--accent); }

/* ───── Grass texture (subtle) ───── */
.grass-bg {
  background-image:
    repeating-linear-gradient(87deg, transparent, transparent 3px, rgba(58,107,79,0.018) 3px, rgba(58,107,79,0.018) 4px),
    repeating-linear-gradient(93deg, transparent, transparent 4px, rgba(58,107,79,0.012) 4px, rgba(58,107,79,0.012) 5px);
}

/* ═══════════════════════════════════════════
   #manifesto — editorial drop-cap
   ═══════════════════════════════════════════ */
.editorial-block {
  max-width: 680px;
  font-size: clamp(1rem,1.3vw,1.1rem);
  line-height: 1.85;
  color: var(--ink-soft);
}
.editorial-block p { margin-bottom: 1.4em; }

.drop-cap::first-letter {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-style: italic;
  float: left;
  font-size: 4.2em;
  line-height: 0.82;
  padding-right: 14px; padding-top: 4px;
  color: var(--accent);
}

.pull-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 700;
  font-size: clamp(1.4rem,3vw,2rem);
  color: var(--accent);
  border-left: 3px solid var(--accent);
  padding: 20px 0 20px 28px;
  margin: 48px 0 24px;
  max-width: 600px;
}
.pull-quote cite {
  display: block; margin-top: 14px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem; font-weight: 400;
  font-style: normal;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════
   #kadro — coach profiles
   ═══════════════════════════════════════════ */
.kadro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 40px;
}
@media (max-width: 768px) {
  .kadro-grid { grid-template-columns: 1fr; max-width: 400px; }
}

.coach-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.coach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(200,169,81,0.12);
}
.coach-photo {
  width: 100%; aspect-ratio: 3/4;
  background: #d1cdc4;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); font-size: 0.8rem;
  font-style: italic;
  filter: grayscale(1);
}
.coach-info { padding: 20px; }
.coach-info h3 {
  font-size: 1.2rem; margin-bottom: 4px;
  color: var(--ink);
}
.coach-info .coach-role {
  font-size: 0.78rem; font-weight: 600;
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 10px;
}
.coach-info p {
  font-size: 0.88rem; color: var(--ink-soft);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   #piramit — vertical infographic
   ═══════════════════════════════════════════ */
.piramit-list {
  position: relative;
  max-width: 600px; margin: 48px auto 0;
  padding-left: 48px;
}
.piramit-list::before {
  content: ''; position: absolute;
  left: 18px; top: 0; bottom: 0;
  width: 2px; background: var(--line-strong);
}
.piramit-item {
  position: relative;
  padding: 0 0 48px 28px;
}
.piramit-item:last-child { padding-bottom: 0; }

.piramit-icon {
  position: absolute; left: -30px; top: 2px;
  width: 38px; height: 38px;
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  z-index: 2;
}
.piramit-icon svg { width: 18px; height: 18px; }

.piramit-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-style: italic;
  font-size: 0.85rem; color: var(--accent);
  margin-bottom: 4px;
}
.piramit-item h3 {
  font-size: 1.25rem; margin-bottom: 8px;
}
.piramit-item p {
  font-size: 0.92rem; color: var(--ink-soft);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   #surec — process steps
   ═══════════════════════════════════════════ */
.surec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 40px;
}
@media (max-width: 768px) { .surec-grid { grid-template-columns: 1fr; } }

.surec-card {
  background: var(--bg);
  border: 1px solid rgba(200,169,81,0.15);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.surec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.15);
}
.surec-step {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-style: italic;
  font-size: 2.4rem; color: var(--accent);
  opacity: 0.3; line-height: 1;
  margin-bottom: 12px;
}
.surec-card h3 {
  font-size: 1.1rem; color: var(--surface);
  margin-bottom: 8px;
}
.surec-card .surec-time {
  font-size: 0.75rem; font-weight: 600;
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 8px;
}
.surec-card p {
  font-size: 0.88rem; color: rgba(244,240,232,0.65);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   #fiyatlar — pricing tiers
   ═══════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 40px;
}
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; } }

.pricing-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex; flex-direction: column;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms, border-color 300ms;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(200,169,81,0.1);
  border-color: var(--accent);
}
.pricing-card.featured {
  border-color: var(--accent);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Popüler'; position: absolute; top: -12px; left: 24px;
  background: var(--accent); color: var(--bg);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 14px; border-radius: 100px;
}
.pricing-name {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.pricing-price {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-style: italic;
  font-size: 2.2rem; color: var(--ink);
  line-height: 1.1; margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.pricing-price small {
  font-size: 0.85rem; font-weight: 400;
  font-style: normal; font-family: 'Source Sans 3', sans-serif;
  color: var(--ink-soft);
}
.pricing-desc {
  font-size: 0.88rem; color: var(--ink-soft);
  margin-bottom: 20px; line-height: 1.5;
}
.pricing-includes, .pricing-excludes { list-style: none; margin-bottom: 16px; }
.pricing-includes li, .pricing-excludes li {
  font-size: 0.85rem; padding: 5px 0 5px 22px;
  position: relative; color: var(--ink-soft);
}
.pricing-includes li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 12px; height: 7px;
  border-left: 2px solid var(--accent-2);
  border-bottom: 2px solid var(--accent-2);
  transform: rotate(-45deg);
}
.pricing-excludes li::before {
  content: ''; position: absolute; left: 2px; top: 11px;
  width: 10px; height: 1.5px;
  background: #c55;
}
.pricing-cta { margin-top: auto; padding-top: 16px; }
.pricing-note {
  font-size: 0.78rem; color: var(--ink-soft);
  font-style: italic; margin-top: 28px; text-align: center;
}

/* ═══════════════════════════════════════════
   #sesler — testimonials
   ═══════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px; margin-top: 40px;
}
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--bg);
  border: 1px solid rgba(200,169,81,0.15);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem; font-weight: 700;
  color: var(--accent); opacity: 0.25;
  position: absolute; top: 12px; left: 20px;
  line-height: 1;
}
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 700;
  font-size: clamp(1rem,1.5vw,1.15rem);
  color: var(--surface);
  line-height: 1.7;
  margin-bottom: 18px;
}
.testimonial-author {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  color: var(--accent);
}
.testimonial-meta {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem; color: rgba(244,240,232,0.5);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════
   #sss — FAQ accordion (pure CSS)
   ═══════════════════════════════════════════ */
.faq-list { max-width: 700px; margin: 40px auto 0; }

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem; font-weight: 600;
  color: var(--ink);
  list-style: none;
  transition: color 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.4rem; font-weight: 300;
  color: var(--accent);
  flex-shrink: 0; margin-left: 16px;
  transition: transform 300ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] summary::after {
  content: '\2212';
  transform: rotate(180deg);
}
.faq-item summary:hover { color: var(--accent); }

.faq-item .faq-body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] .faq-body {
  height: auto;
  padding-block-end: 20px;
}
.faq-body p {
  font-size: 0.92rem; color: var(--ink-soft);
  line-height: 1.75;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item .faq-body { transition: none; }
}

/* ═══════════════════════════════════════════
   #kayit — registration form
   ═══════════════════════════════════════════ */
.kayit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .kayit-layout { grid-template-columns: 1fr; }
}
.kayit-copy h3 {
  font-size: 1.5rem; margin-bottom: 14px;
}
.kayit-copy p {
  font-size: 0.95rem; color: var(--ink-soft);
  line-height: 1.7; margin-bottom: 18px;
}
.availability {
  display: inline-block;
  font-size: 0.82rem; font-weight: 600;
  color: var(--accent-2);
  padding: 8px 18px;
  border: 1px solid rgba(58,107,79,0.3);
  border-radius: 6px;
  margin-top: 8px;
}

/* ───── Form fields ───── */
.form-register { display: flex; flex-direction: column; gap: 16px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 4px; }
.field label {
  font-size: 0.82rem; font-weight: 600;
  color: var(--ink); letter-spacing: 0.02em;
}
.field input, .field select, .field textarea {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  padding: 11px 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  transition: border-color 200ms, box-shadow 200ms;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,169,81,0.12);
  outline: none;
}
.field textarea { min-height: 100px; resize: vertical; }

.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.kvkk-row {
  display: flex; align-items: flex-start; gap: 10px;
}
.kvkk-row label {
  font-size: 0.82rem; color: var(--ink-soft);
  line-height: 1.5;
}

.honeypot-field {
  position: absolute; left: -9999px; opacity: 0;
}

.form-submit {
  width: 100%;
}
@media (min-width: 640px) { .form-submit { width: auto; } }

/* ═══════════════════════════════════════════
   NEWS / Son Gelişmeler
   ═══════════════════════════════════════════ */
.news-list {
  margin-top: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.news-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px; align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.news-date {
  font-size: 0.78rem; font-weight: 600;
  color: var(--accent); white-space: nowrap;
  padding-top: 2px;
}
.news-text {
  font-size: 0.92rem; color: var(--ink-soft);
  line-height: 1.5;
}
.section-dark .news-text {
  color: rgba(244,240,232,0.75);
}
.section-dark .news-item {
  border-bottom-color: rgba(200,169,81,0.25);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
  background: var(--bg);
  padding: clamp(48px,8vw,80px) 0 0;
  color: rgba(244,240,232,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; max-width: 280px; }

.site-footer h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-style: normal; font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul a {
  font-size: 0.88rem; color: rgba(244,240,232,0.6);
  text-decoration: none;
  transition: color 200ms;
}
.site-footer ul a:hover { color: var(--accent); }

.footer-contact-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px; align-items: start;
  margin-bottom: 10px;
  font-size: 0.88rem;
}
.footer-contact-item svg {
  width: 18px; height: 18px;
  color: var(--accent);
  margin-top: 2px; flex-shrink: 0;
}
.footer-contact-item a {
  color: rgba(244,240,232,0.6);
  word-break: break-all;
}
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  margin-top: 40px; padding: 20px 0 100px;
  border-top: 1px solid rgba(200,169,81,0.12);
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 10px;
  font-size: 0.78rem; color: rgba(244,240,232,0.4);
}
@media (min-width: 640px) {
  .footer-bottom { padding-bottom: 20px; }
}
.footer-bottom a { color: rgba(244,240,232,0.4); }
.footer-bottom a:hover { color: var(--accent); }

/* ═══════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 22px 24px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-style: normal; font-size: 0.95rem; font-weight: 700;
  color: var(--ink); margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 0.82rem; color: var(--ink-soft);
  line-height: 1.6; margin-bottom: 16px;
}
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-btns {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cookie-btns button {
  flex: 1; min-width: 100px; min-height: 44px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  border-radius: 6px; border: none;
  cursor: pointer;
  transition: background 200ms, color 200ms, transform 180ms;
}
.cookie-btns button:hover { transform: translateY(-1px); }

.cookie-btns .cookie-accept {
  background: var(--accent); color: var(--bg);
}
.cookie-btns .cookie-accept:hover { background: #dfc06a; color: var(--bg); }
.cookie-btns .cookie-reject {
  background: var(--surface-2); color: var(--ink);
  border: 1.5px solid var(--ink-soft);
  font-weight: 700;
}
.cookie-btns .cookie-reject:hover { background: #ddd8cc; color: var(--ink); border-color: var(--ink); }
.cookie-btns .cookie-settings {
  background: transparent; color: var(--ink-soft);
  border: 1px solid var(--line-strong);
}
.cookie-btns .cookie-settings:hover { background: var(--surface-2); color: var(--ink); }

/* ═══════════════════════════════════════════
   TABLE SCROLL wrapper
   ═══════════════════════════════════════════ */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line, rgba(0,0,0,0.12));
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table {
  width: 100%; border-collapse: collapse;
  font-size: 0.88rem;
}
th, td {
  padding: 10px 14px; text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  font-weight: 600; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(200,169,81,0.06);
}
td { color: var(--ink-soft); }

/* ═══════════════════════════════════════════
   CONTACT page cards
   ═══════════════════════════════════════════ */
.contact-hero {
  background: var(--bg); color: var(--surface);
  min-height: 240px; display: flex; align-items: center;
  padding: clamp(60px,10vw,100px) 0;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin-top: 40px;
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: 12px; padding: 22px;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(200,169,81,0.08);
}
.contact-card-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(200,169,81,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 14px;
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-style: normal; font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--accent); margin-bottom: 6px;
}
.contact-card .contact-value {
  font-size: 1rem; font-weight: 600;
  color: var(--ink);
  word-break: break-all; overflow-wrap: anywhere;
}
.contact-card .contact-value a {
  color: var(--ink); text-decoration: none;
}
.contact-card .contact-value a:hover { color: var(--accent); }
.contact-card .contact-sub {
  font-size: 0.78rem; color: var(--ink-soft);
  margin-top: 4px;
}

/* Hours mini-grid */
.hours-grid {
  display: grid; grid-template-columns: auto 1fr;
  gap: 4px 14px; font-variant-numeric: tabular-nums;
  font-size: 0.88rem;
}
.hours-grid .day { font-weight: 600; color: var(--ink); }
.hours-grid .time { color: var(--ink-soft); }

/* ═══════════════════════════════════════════
   INNER PAGES — policy/about/etc
   ═══════════════════════════════════════════ */
.page-hero {
  background: var(--bg); color: var(--surface);
  padding: clamp(60px,10vw,100px) 0;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent); margin-bottom: 10px;
}
.page-hero p {
  color: rgba(244,240,232,0.65);
  font-size: 1rem; max-width: 560px;
}
.page-content {
  padding: clamp(40px,6vw,72px) 0;
}
.page-content h2 {
  font-size: 1.5rem; margin: 36px 0 14px;
  color: var(--ink);
}
.page-content h3 {
  font-size: 1.15rem; margin: 24px 0 10px;
  color: var(--ink);
}
.page-content p {
  font-size: 0.95rem; color: var(--ink-soft);
  line-height: 1.8; margin-bottom: 14px;
  max-width: 720px;
}
.page-content ul, .page-content ol {
  padding-left: 20px; margin-bottom: 14px;
}
.page-content li {
  font-size: 0.95rem; color: var(--ink-soft);
  line-height: 1.7; margin-bottom: 6px;
}

/* Thank-you page */
.thankyou-section {
  text-align: center;
  padding: clamp(80px,14vw,160px) 0;
}
.thankyou-section h1 {
  font-size: clamp(2rem, 4vw, 3rem); color: var(--accent);
  margin-bottom: 16px;
}
.thankyou-section p {
  font-size: 1.05rem; color: var(--ink-soft);
  margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto;
}

/* 404 page */
.four04 {
  text-align: center;
  padding: clamp(80px,14vw,160px) 0;
}
.four04 .big-404 {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-style: italic;
  font-size: clamp(6rem,15vw,12rem);
  color: var(--accent); opacity: 0.2;
  line-height: 1;
}
.four04 h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--ink);
  margin: 10px 0 14px;
}
.four04 p {
  font-size: 1rem; color: var(--ink-soft);
  margin-bottom: 28px;
}

/* ═══════════════════════════════════════════
   HAKKIMIZDA — about page team
   ═══════════════════════════════════════════ */
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px; margin-top: 36px;
}
.team-member {
  border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(200,169,81,0.08);
}
.team-photo {
  aspect-ratio: 4/5; background: #d1cdc4;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--ink-soft); font-style: italic;
  filter: grayscale(1);
}
.team-info {
  padding: 20px;
}
.team-info h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-info .team-role {
  font-size: 0.78rem; font-weight: 600;
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 10px;
}
.team-info p {
  font-size: 0.88rem; color: var(--ink-soft); line-height: 1.65;
}

/* ═══════════════════════════════════════════
   CANCELLATION tier table
   ═══════════════════════════════════════════ */
.cancel-tier {
  display: grid; grid-template-columns: auto 1fr;
  gap: 8px 18px; margin: 14px 0;
  font-size: 0.92rem;
}
.cancel-tier .tier-period { font-weight: 600; color: var(--ink); }
.cancel-tier .tier-rule { color: var(--ink-soft); }

/* ═══════════════════════════════════════════
   FOOTBALL-SPECIFIC ANIMATIONS
   ═══════════════════════════════════════════ */

/* 1. Ball spin on CTA hover */
.btn-ball-icon {
  display: inline-block; width: 18px; height: 18px;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}
.btn-primary:hover .btn-ball-icon { transform: rotate(360deg); }

/* 2. Pitch corner arc decoration */
.pitch-corner {
  position: absolute; width: 80px; height: 80px;
  border: 1.5px solid var(--accent); opacity: 0.12;
  pointer-events: none;
}
.pitch-corner--tl { top: 0; left: 0; border-right: none; border-bottom: none; border-radius: 0 0 40px 0; }
.pitch-corner--tr { top: 0; right: 0; border-left: none; border-bottom: none; border-radius: 0 0 0 40px; }
.pitch-corner--bl { bottom: 0; left: 0; border-right: none; border-top: none; border-radius: 0 40px 0 0; }
.pitch-corner--br { bottom: 0; right: 0; border-left: none; border-top: none; border-radius: 40px 0 0 0; }

/* 3. Goal-net pattern background */
.goalnet-bg {
  background-image:
    linear-gradient(45deg, rgba(200,169,81,0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(200,169,81,0.03) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(200,169,81,0.03) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(200,169,81,0.03) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
}

/* 4. Pitch line draw animation */
.pitch-line-draw {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 1.8s cubic-bezier(.2,.7,.2,1);
}
.is-in .pitch-line-draw { stroke-dashoffset: 0; }

/* 5. Whistle/formation shimmer on headings */
@keyframes accent-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.shimmer-text {
  color: var(--accent);
  background: linear-gradient(90deg, var(--accent) 0%, #e6d48a 50%, var(--accent) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: accent-shimmer 8s ease-in-out infinite;
}
@supports not (background-clip: text) {
  .shimmer-text { -webkit-text-fill-color: var(--accent); color: var(--accent); }
}
@media (prefers-reduced-motion: reduce) {
  .shimmer-text { animation: none; -webkit-text-fill-color: var(--accent); }
}

/* ═══════════════════════════════════════════
   REVEAL ANIMATION
   ═══════════════════════════════════════════ */
@keyframes auto-reveal {
  to { opacity: 1; transform: none; }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1),
              transform 600ms cubic-bezier(.2,.7,.2,1);
  animation: auto-reveal 600ms cubic-bezier(.2,.7,.2,1) calc(var(--i, 0) * 80ms + 800ms) both;
}
.reveal.is-in {
  opacity: 1; transform: none;
  animation: none;
}

/* Stagger via --i custom property */
.reveal[style*="--i"] {
  transition-delay: calc(var(--i,0) * 80ms);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
}

/* ═══════════════════════════════════════════
   SITEMAP page
   ═══════════════════════════════════════════ */
.sitemap-list { list-style: none; padding: 0; }
.sitemap-list li { margin-bottom: 12px; }
.sitemap-list a {
  font-size: 1rem; font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 200ms;
}
.sitemap-list a::before {
  content: ''; width: 16px; height: 1px;
  background: var(--accent);
}
.sitemap-list a:hover { color: var(--accent); }

/* ═══════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════ */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle,
  .skip-link, .tactic-field { display: none !important; }
  main { padding-top: 0 !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ═══════════════════════════════════════════
   MOBILE COOKIE BANNER — safe area & sizing
   ═══════════════════════════════════════════ */
@media (max-width: 639px) {
  .cookie-banner {
    bottom: 12px; left: 12px; right: 12px;
    padding: 18px 18px calc(18px + env(safe-area-inset-bottom, 0px));
    max-width: none;
  }
  .cookie-btns {
    flex-direction: column;
  }
  .cookie-btns button {
    flex: none; width: 100%; min-height: 48px;
    font-size: 0.88rem;
  }
}

/* ═══════════════════════════════════════════
   ENHANCED CARD HOVER — golden pitch glow
   ═══════════════════════════════════════════ */
.coach-card:hover,
.team-member:hover {
  box-shadow: 0 16px 40px rgba(200,169,81,0.14), 0 0 0 1px rgba(200,169,81,0.18);
}
.surec-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,.15), 0 0 0 1px rgba(200,169,81,0.12);
}
.testimonial-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,.12), 0 0 0 1px rgba(200,169,81,0.1);
}
.pricing-card:hover {
  box-shadow: 0 16px 40px rgba(200,169,81,0.12), 0 0 0 1px var(--accent);
}
.contact-card:hover {
  box-shadow: 0 12px 32px rgba(200,169,81,0.1), 0 0 0 1px rgba(200,169,81,0.2);
}

/* ═══════════════════════════════════════════
   ENHANCED REVEAL — stagger + slide variants
   ═══════════════════════════════════════════ */
@keyframes auto-reveal-left {
  from { opacity: 0; transform: translateX(-32px); }
  to { opacity: 1; transform: none; }
}
@keyframes auto-reveal-right {
  from { opacity: 0; transform: translateX(32px); }
  to { opacity: 1; transform: none; }
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1),
              transform 600ms cubic-bezier(.2,.7,.2,1);
  animation: auto-reveal-left 600ms cubic-bezier(.2,.7,.2,1) calc(var(--i, 0) * 80ms + 800ms) both;
}
.reveal-left.is-in { opacity: 1; transform: none; animation: none; }
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1),
              transform 600ms cubic-bezier(.2,.7,.2,1);
  animation: auto-reveal-right 600ms cubic-bezier(.2,.7,.2,1) calc(var(--i, 0) * 80ms + 800ms) both;
}
.reveal-right.is-in { opacity: 1; transform: none; animation: none; }

.reveal-left[style*="--i"],
.reveal-right[style*="--i"] {
  transition-delay: calc(var(--i,0) * 80ms);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
}

/* ═══════════════════════════════════════════
   FOOTBALL-SPECIFIC MICRO-EFFECTS
   ═══════════════════════════════════════════ */

/* Stadium floodlight warm glow on hero CTA */
.hero .btn-primary:hover {
  box-shadow: 0 8px 24px rgba(200,169,81,0.32), 0 0 48px rgba(200,169,81,0.12);
}

/* Pitch stripe shimmer on stats band */
.stats-band {
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(255,255,255,0.03) 48px, rgba(255,255,255,0.03) 96px);
}

/* Corner flag pulse on piramit icons */
@keyframes corner-flag-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,169,81,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(200,169,81,0); }
}
.piramit-icon {
  animation: corner-flag-pulse 3s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .piramit-icon { animation: none !important; }
}

/* Net ripple on FAQ open */
.faq-item[open] summary {
  color: var(--accent);
}

/* Golden underline grow on nav links — refined timing */
.nav-desktop a::after {
  transition: width 350ms cubic-bezier(.22,1,.36,1);
}

/* Smooth card entrance */
.coach-card,
.surec-card,
.pricing-card,
.testimonial-card,
.contact-card,
.team-member {
  transition: transform 350ms cubic-bezier(.22,1,.36,1), box-shadow 350ms cubic-bezier(.22,1,.36,1), border-color 350ms;
}

/* ═══════════════════════════════════════════
   STADIUM LIGHT SWEEP on CTA buttons
   ═══════════════════════════════════════════ */
@keyframes stadium-sweep {
  0%   { transform: translateX(-120%); opacity: 0; }
  40%  { opacity: 0.25; }
  100% { transform: translateX(220%); opacity: 0; }
}
.btn-primary::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 30%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: translateX(-120%);
  pointer-events: none;
}
.btn-primary:hover::before {
  animation: stadium-sweep 550ms cubic-bezier(.22,1,.36,1) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary:hover::before { animation: none; }
}

/* Dark section card golden pitch-line accent on hover */
.section-dark .surec-card:hover,
.section-dark .testimonial-card:hover {
  border-color: rgba(200,169,81,0.35);
}

/* ═══════════════════════════════════════════
   FOOTER LINK HOVER — subtle accent sweep
   ═══════════════════════════════════════════ */
.site-footer ul a {
  position: relative;
}
.site-footer ul a::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width 280ms cubic-bezier(.22,1,.36,1);
}
.site-footer ul a:hover::after { width: 100%; }

/* ═══════════════════════════════════════════
   DRAWER LINK HOVER — accent bar on left
   ═══════════════════════════════════════════ */
.drawer a {
  position: relative;
}
.drawer a::before {
  content: ''; position: absolute; left: -8px; top: 50%;
  width: 3px; height: 0; background: var(--accent);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: height 250ms cubic-bezier(.22,1,.36,1);
}
.drawer a:hover::before,
.drawer a.is-active::before { height: 20px; }

/* ═══════════════════════════════════════════
   HERO IMAGE — ensure visibility
   ═══════════════════════════════════════════ */
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.32;
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   HERO CONTENT ENTRANCE
   ═══════════════════════════════════════════ */
@keyframes hero-fade-up {
  0%   { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: none; }
}
.hero .eyebrow      { animation: hero-fade-up 600ms cubic-bezier(.22,1,.36,1) 100ms both; }
.hero h1.shimmer-text {
  animation: hero-fade-up 700ms cubic-bezier(.22,1,.36,1) 200ms both,
             accent-shimmer 8s ease-in-out 900ms infinite;
}
.hero .hero-sub     { animation: hero-fade-up 600ms cubic-bezier(.22,1,.36,1) 350ms both; }
.hero .btn-primary  { animation: hero-fade-up 500ms cubic-bezier(.22,1,.36,1) 500ms both; }
.hero .trust-strip  { animation: hero-fade-up 500ms cubic-bezier(.22,1,.36,1) 650ms both; }

@media (prefers-reduced-motion: reduce) {
  .hero .eyebrow,
  .hero h1.shimmer-text,
  .hero .hero-sub,
  .hero .btn-primary,
  .hero .trust-strip { animation: none; opacity: 1; transform: none; -webkit-text-fill-color: var(--accent); }
}

/* ═══════════════════════════════════════════
   MOBILE LAYOUT SAFETY
   ═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(2.4rem, 10vw, 3.8rem);
  }
  .trust-strip {
    gap: 8px;
  }
  .trust-strip span {
    font-size: 0.68rem;
    padding: 5px 10px;
  }
  .surec-grid {
    gap: 16px;
  }
  .pricing-grid {
    gap: 20px;
  }
  .testimonials-grid {
    gap: 16px;
  }
}

/* ═══════════════════════════════════════════
   FOOTBALL MICRO-EFFECTS — enhanced
   ═══════════════════════════════════════════ */

/* Ball roll on ghost button hover */
.btn-ghost:hover {
  border-color: var(--accent);
}
.btn-ghost::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200,169,81,0.06), transparent);
  transform: translateX(-100%);
  transition: transform 400ms cubic-bezier(.22,1,.36,1);
  pointer-events: none;
  border-radius: inherit;
}
.btn-ghost { position: relative; overflow: hidden; }
.btn-ghost:hover::before { transform: translateX(100%); }

@media (prefers-reduced-motion: reduce) {
  .btn-ghost::before { display: none; }
}

/* Coach card — golden accent line on hover */
.coach-card::after {
  content: '';
  position: absolute; bottom: 0; left: 24px; right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform 400ms cubic-bezier(.22,1,.36,1);
}
.coach-card { position: relative; }
.coach-card:hover::after { transform: scaleX(1); }

/* Pricing featured card — subtle golden glow pulse */
@keyframes featured-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,169,81,0.15); }
  50% { box-shadow: 0 0 20px 4px rgba(200,169,81,0.08); }
}
.pricing-card.featured {
  animation: featured-glow 4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .pricing-card.featured { animation: none; }
}

/* Testimonial card — quote mark color shift on hover */
.testimonial-card::before {
  transition: opacity 300ms, color 300ms;
}
.testimonial-card:hover::before {
  opacity: 0.45;
  color: #e6d48a;
}

/* FAQ item — smooth expand with accent flash */
.faq-item[open] {
  background: rgba(200,169,81,0.02);
  border-radius: 4px;
  margin: 0 -8px;
  padding: 0 8px;
}
.faq-item {
  transition: background 300ms, padding 200ms, margin 200ms;
}

/* Stats band counter — scale pop on entry */
@keyframes stat-pop {
  0% { transform: scale(0.8); opacity: 0; }
  60% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}
.stat.is-in .stat-num {
  animation: stat-pop 500ms cubic-bezier(.22,1,.36,1) both;
}
@media (prefers-reduced-motion: reduce) {
  .stat.is-in .stat-num { animation: none; }
}

/* Surec step number — golden glow on hover */
.surec-card:hover .surec-step {
  opacity: 0.6;
  text-shadow: 0 0 12px rgba(200,169,81,0.25);
  transition: opacity 300ms, text-shadow 300ms;
}

/* Contact card icon — rotate on hover */
.contact-card-icon {
  transition: transform 400ms cubic-bezier(.22,1,.36,1), background 300ms;
}
.contact-card:hover .contact-card-icon {
  transform: scale(1.08);
  background: rgba(200,169,81,0.18);
}

/* Team member photo — desaturate lift on hover */
.team-photo {
  transition: filter 400ms cubic-bezier(.22,1,.36,1);
}
.team-member:hover .team-photo {
  filter: grayscale(0.4);
}

/* Hero pitch lines — subtle parallax glow */
@keyframes pitch-glow {
  0%, 100% { opacity: 0.07; }
  50% { opacity: 0.13; }
}
.hero-pitch {
  animation: pitch-glow 6s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero-pitch { animation: none; }
}

/* Gold divider — draw-in on reveal */
.gold-divider.is-in {
  transform-origin: left;
  animation: divider-draw 600ms cubic-bezier(.22,1,.36,1) both;
}
@keyframes divider-draw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
  .gold-divider.is-in { animation: none; }
}

/* Piramit connecting line — golden pulse */
@keyframes line-pulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.7; }
}
.piramit-list::before {
  animation: line-pulse 3s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .piramit-list::before { animation: none; }
}

/* ═══════════════════════════════════════════
   CARD HOVER TRANSFORMS — after .reveal.is-in
   to win cascade at equal specificity
   ═══════════════════════════════════════════ */
.coach-card:hover,
.team-member:hover,
.pricing-card:hover {
  transform: translateY(-6px);
}
.surec-card:hover,
.testimonial-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}

.coach-photo{overflow:hidden}
.coach-photo img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 360ms cubic-bezier(.2,.7,.2,1)}
.coach-card:hover .coach-photo img{transform:scale(1.04)}
