/* ============================================================
   Meridyen Futbol Akademisi — Styles
   Editorial-magazine aesthetic, dark theme, neon green accent
   ============================================================ */

/* --- Variables & Reset --- */
:root {
  --bg: #0A1628;
  --surface: #152238;
  --surface-2: #1C2D4A;
  --ink: #E4E9F0;
  --ink-soft: #8A95A8;
  --accent: #2EF576;
  --accent-2: #F0C838;
  --line: rgba(228,233,240,0.12);
  --line-strong: rgba(228,233,240,0.25);
  --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;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html.no-js .reveal { opacity: 1; transform: none; }

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); }
ul, ol { list-style: none; }

/* --- Typography --- */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 800;
  font-style: italic;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.012em;
}
h1 { font-size: clamp(3.2rem, 9vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 1.2em; }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1.2rem;
}

/* --- Layout --- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}
main { padding-top: var(--header-h); }
main section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }
section { padding: clamp(3rem, 8vw, 6rem) 0; }

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100px;
  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 200ms;
}
.skip-link:focus { top: 0; color: var(--bg); }

/* --- Focus Ring --- */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --- Header (sticky-with-morph) --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
  display: flex;
  align-items: center;
}
.site-header.scrolled {
  background: rgba(10,22,40,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
  height: 60px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
  white-space: nowrap;
  text-decoration: none;
  transition: color 240ms;
}
.logo:hover { color: var(--accent); }
.logo span { color: var(--accent); }

/* --- Desktop Nav --- */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--ink);
}
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after {
  transform: scaleX(1);
}
.nav-desktop .nav-cta {
  background: var(--accent);
  color: var(--bg);
  padding: 8px 22px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 240ms, color 240ms, transform 180ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-desktop .nav-cta:focus-visible {
  background: var(--accent-2);
  color: var(--bg);
  transform: translateY(-2px);
}

/* --- Nav Toggle (Hamburger) --- */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px; height: 48px;
  background: rgba(228,233,240,0.06);
  border: 1.5px solid rgba(228,233,240,0.15);
  border-radius: 8px;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  padding: 0;
  transition: background 200ms, border-color 200ms;
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(228,233,240,0.12);
  border-color: var(--accent);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
}
.nav-toggle span:nth-child(1) { transform: translateY(-7px); }
.nav-toggle span:nth-child(3) { transform: translateY(7px); }
.nav-toggle[aria-expanded="true"] {
  background: rgba(228,233,240,0.12);
  border-color: var(--accent);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

/* --- Mobile 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: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }

.drawer a {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink-soft);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: block;
  transition: color 240ms, padding-left 240ms;
}
.drawer a:hover,
.drawer a.is-active { color: var(--accent); padding-left: 8px; }
.drawer .nav-cta {
  background: var(--accent);
  color: var(--bg);
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  border-bottom: none;
  margin-top: 16px;
  font-weight: 700;
}
.drawer .nav-cta:hover { background: var(--accent-2); color: var(--bg); padding-left: 0; }

/* --- Hero: Type-Only-Massive --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6rem, 14vh, 10rem) 0 clamp(3rem, 6vh, 5rem);
  position: relative;
  overflow: hidden;
}
.hero-title {
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.95;
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 2;
}
.hero-title .accent { color: var(--accent); white-space: nowrap; }
.hero-title .line { display: block; }

.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: char-in 350ms cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes char-in {
  to { opacity: 1; transform: translateY(0); }
}
.hero-title .char-space { width: 0.3em; }
.hero-title .char-ready { opacity: 1 !important; transform: none !important; animation: none !important; }

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 2.4rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: border-color 240ms, color 240ms, transform 200ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.trust-badge:hover { border-color: var(--accent); color: var(--ink); transform: translateY(-2px); box-shadow: 0 6px 16px -4px rgba(46,245,118,0.12); }
.trust-badge svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* SVG Pitch Decorations */
.pitch-decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
}
.pitch-decor path, .pitch-decor circle, .pitch-decor line, .pitch-decor rect {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-dasharray: var(--dash-total, 1000);
  stroke-dashoffset: var(--dash-offset, 1000);
  transition: stroke-dashoffset 80ms linear;
}
.pitch-decor-visible path, .pitch-decor-visible circle,
.pitch-decor-visible line, .pitch-decor-visible rect {
  stroke-dashoffset: 0;
}

/* Hero pitch decor positioning */
.hero .pitch-decor-circle {
  right: -10%;
  top: 15%;
  width: clamp(260px, 40vw, 520px);
  height: clamp(260px, 40vw, 520px);
}
.hero .pitch-decor-arc {
  left: -5%;
  bottom: 10%;
  width: clamp(180px, 28vw, 360px);
  height: clamp(120px, 18vw, 240px);
}

/* Corner flag decoration */
.corner-flag {
  display: inline-block;
  animation: flag-wave 3s ease-in-out infinite;
  transform-origin: bottom center;
}
@keyframes flag-wave {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(4deg); }
}
@media (prefers-reduced-motion: reduce) {
  .corner-flag { animation: none; }
}

/* --- CTA 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-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: background 240ms, color 240ms, transform 180ms, box-shadow 360ms;
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(46,245,118,0.2); }
  50% { box-shadow: 0 0 40px rgba(46,245,118,0.45); }
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-2);
  color: var(--bg);
  transform: translateY(-2px);
  animation: none;
  box-shadow: 0 8px 28px -8px rgba(46,245,118,0.35);
}
.btn-primary svg { width: 18px; height: 18px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: 1.5px solid var(--line-strong);
  cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary { animation: none; }
}

/* --- Drop Cap --- */
.drop-cap::first-letter {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-style: italic;
  float: left;
  font-size: 4.2em;
  line-height: 0.8;
  padding-right: 12px;
  padding-top: 6px;
  color: var(--accent);
}

/* --- Section: Manifesto --- */
.manifesto {
  padding-bottom: clamp(2rem, 5vw, 4rem);
}
.manifesto-text {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  max-width: 680px;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* Stats counter strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 28px);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: clamp(2rem, 5vw, 4rem) 0;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 640px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
}

/* --- Section: Felsefe (Philosophy) --- */
.felsefe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 768px) {
  .felsefe-grid { grid-template-columns: 1fr; }
}
.felsefe-principles { list-style: none; }
.felsefe-principles li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}
.felsefe-principles li:last-child { border-bottom: none; }
.felsefe-icon {
  width: 36px; height: 36px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.felsefe-principles h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--ink);
}
.felsefe-principles p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.quote-block {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  padding: clamp(24px, 4vw, 40px);
  border-radius: 0 var(--radius) var(--radius) 0;
  position: relative;
}
.quote-block::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--accent);
  opacity: 0.15;
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}
.quote-block blockquote {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 16px;
}
.quote-block cite {
  font-family: 'Source Sans 3', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* --- Section: Kadro (Coaches) --- */
.kadro-grid {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
}
.coach-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(24px, 4vw, 40px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 280ms cubic-bezier(.2,.7,.2,1), transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
  align-items: start;
}
.coach-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -12px rgba(46,245,118,0.1);
}
@media (max-width: 640px) {
  .coach-card { grid-template-columns: 1fr; }
}
.coach-info { display: flex; flex-direction: column; gap: 8px; }
.coach-name {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--ink);
}
.coach-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.coach-license {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(46,245,118,0.08);
  border: 1px solid rgba(46,245,118,0.2);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  width: fit-content;
}
.coach-bio {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-top: 8px;
}
.coach-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.5;
  color: var(--ink);
  border-left: 2px solid var(--accent-2);
  padding-left: 20px;
  align-self: center;
}

/* --- Section: Surec (Process) --- */
.process-timeline {
  position: relative;
  padding-left: 48px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
}
.process-step {
  position: relative;
  padding-bottom: clamp(28px, 4vw, 44px);
}
.process-step:last-child { padding-bottom: 0; }
.process-step::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
}
.process-step .step-time {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.process-step h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.process-step p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* --- Section: Takvim (Schedule) --- */
.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);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 580px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.9rem;
}
thead { background: var(--surface-2); }
th {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 14px 12px;
  text-align: center;
  white-space: nowrap;
}
td {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  vertical-align: middle;
}
td:first-child {
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  white-space: nowrap;
}
tr:hover td { background: rgba(46,245,118,0.03); }
td .age-tag {
  background: rgba(46,245,118,0.1);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  display: inline-block;
}
td .ozel-tag {
  background: rgba(240,200,56,0.12);
  color: var(--accent-2);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  display: inline-block;
}

/* --- Section: Fiyatlar (Pricing) --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 24px);
}
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  transition: border-color 280ms cubic-bezier(.2,.7,.2,1), transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
  position: relative;
  overflow: hidden;
}
.price-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px -12px rgba(46,245,118,0.15);
}
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
}
.price-card.featured::before {
  content: 'En Popüler';
  position: absolute;
  top: 16px; right: -28px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 36px;
  transform: rotate(45deg);
}
.price-card-name {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.price-card-amount {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.price-card-period {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.price-card h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
  margin-top: 16px;
}
.price-card ul { margin-bottom: 8px; }
.price-card li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.price-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.price-card .not-included li::before { background: var(--ink-soft); opacity: 0.3; }
.price-disclaimer {
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 20px;
  font-style: italic;
}

/* --- Section: Yorumlar (Testimonials) --- */
.testimonials-grid {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
  position: relative;
  transition: border-color 280ms, transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.testimonial-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px -12px rgba(46,245,118,0.12);
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.9rem;
}
.testimonial-meta {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* --- Section: Basvuru (Form) --- */
.form-section {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full-width { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  background: var(--bg);
  border: 1.5px solid var(--line-strong);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 240ms, box-shadow 240ms;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(46,245,118,0.12);
  outline: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select {
  appearance: auto;
  cursor: pointer;
}

.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-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 0;
}
.kvkk-field label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
}

.form-submit {
  margin-top: 8px;
}
.form-submit .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1.05rem;
}
@media (min-width: 640px) {
  .form-submit .btn-primary { width: auto; }
}

/* --- Section: FAQ --- */
.faq-list { max-width: 780px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  list-style: none;
  transition: color 240ms;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--accent); }

.faq-item .answer {
  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] .answer {
  height: auto;
  padding-block-end: 24px;
}
.faq-item .answer p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item .answer { transition: none; }
}

/* --- Section: Haberler (News) --- */
.news-list {
  display: grid;
  gap: 0;
}
.news-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.news-date {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--accent-2);
  white-space: nowrap;
  padding-top: 2px;
}
.news-text {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* --- Iptal (Cancellation) --- */
.cancel-tiers { max-width: 680px; }
.cancel-tier {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
@media (max-width: 480px) {
  .cancel-tier { grid-template-columns: 1fr; gap: 4px; }
}
.cancel-period {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
}
.cancel-desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* --- Footer --- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(2.5rem, 6vw, 4rem) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 40px);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .logo {
  font-size: 1.2rem;
  display: inline-block;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 320px;
}
.footer-heading {
  font-family: 'Source Sans 3', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding: 5px 0;
  transition: color 240ms, padding-left 240ms;
}
.footer-links a:hover { color: var(--ink); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 10px;
  transition: color 240ms;
}
.footer-contact-item:hover { color: var(--ink); }
.footer-contact-item svg {
  width: 16px; height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-item a {
  color: inherit;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  padding-bottom: 80px;
  margin-top: clamp(24px, 4vw, 36px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.footer-legal a {
  color: var(--ink-soft);
  margin-left: 16px;
}
.footer-legal 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: 20px 24px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
  box-shadow: 0 16px 48px -8px rgba(0,0,0,0.4);
}
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-title {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.cookie-text {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 16px;
}
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-btn {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  border: 1.5px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  transition: background 240ms, color 240ms, border-color 240ms;
}
.cookie-btn:hover { border-color: var(--accent); color: var(--accent); }
.cookie-btn[data-consent="accept"] {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.cookie-btn[data-consent="accept"]:hover {
  background: var(--accent-2);
  color: var(--bg);
  border-color: var(--accent-2);
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1),
              transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.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; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* Pitch line drawing on scroll */
.pitch-section-decor {
  position: relative;
  overflow: hidden;
}
.pitch-section-decor .pitch-svg {
  position: absolute;
  pointer-events: none;
  opacity: 0.05;
}
.pitch-section-decor .pitch-svg path,
.pitch-section-decor .pitch-svg circle {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: var(--total, 600);
  stroke-dashoffset: var(--total, 600);
  transition: stroke-dashoffset 60ms linear;
}

/* Ball trajectory trace */
@keyframes ball-trace {
  0% { stroke-dashoffset: 200; }
  100% { stroke-dashoffset: 0; }
}

/* Goal net ripple on card hover */
@keyframes net-ripple {
  0% { background-size: 12px 12px; }
  50% { background-size: 14px 14px; }
  100% { background-size: 12px 12px; }
}
.card-net-bg:hover {
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 12px 12px;
  animation: net-ripple 600ms ease;
}

/* Whistle pulse on CTA */
@keyframes whistle-pulse {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.06); }
  30% { transform: scale(1); }
}

/* --- Page-specific: Contact cards --- */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms, border-color 280ms;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px -12px rgba(46,245,118,0.15);
  border-color: var(--accent);
}
.contact-card-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(46,245,118,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.contact-card-icon svg { width: 22px; height: 22px; color: var(--accent); }
.contact-card-title {
  font-family: 'Source Sans 3', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.contact-card-value {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 4px;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-card-value a { color: var(--ink); }
.contact-card-value a:hover { color: var(--accent); }
.contact-card-sub {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* Hours grid */
.hours-grid {
  display: grid;
  gap: 0;
  font-variant-numeric: tabular-nums;
}
.hours-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 700; color: var(--ink); }
.hours-time { color: var(--ink-soft); }
.hours-row.today { background: rgba(46,245,118,0.05); border-radius: 4px; padding: 8px; margin: 0 -8px; }
.hours-row.today .hours-day { color: var(--accent); }

/* --- Page: Inner pages hero --- */
.page-hero {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 10vh, 7rem) 0 clamp(2rem, 4vh, 3rem);
}

/* --- Page: Policy content --- */
.policy-content {
  max-width: 780px;
}
.policy-content h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-top: 2.5em;
  margin-bottom: 0.8em;
}
.policy-content h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-top: 1.8em;
  margin-bottom: 0.6em;
}
.policy-content p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 1.2em;
}
.policy-content ul, .policy-content ol {
  margin-bottom: 1.2em;
  padding-left: 24px;
}
.policy-content li {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 6px;
  list-style: disc;
}
.policy-content ol li { list-style: decimal; }

/* --- Thank you page --- */
.thank-you-content {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: clamp(4rem, 10vh, 8rem) 0;
}
.thank-you-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}
.thank-you-content p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* --- 404 page --- */
.error-content {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: clamp(4rem, 10vh, 8rem) 0;
}
.error-content h1 {
  font-size: clamp(4rem, 12vw, 4.5rem);
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.error-content p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

/* --- Sitemap page --- */
.sitemap-list {
  list-style: none;
  max-width: 520px;
}
.sitemap-list li {
  border-bottom: 1px solid var(--line);
}
.sitemap-list a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  color: var(--ink);
  transition: color 240ms, padding-left 240ms;
}
.sitemap-list a:hover { color: var(--accent); padding-left: 8px; }

/* --- Pitch divider --- */
.pitch-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  opacity: 0.2;
}
.pitch-divider svg { max-width: 160px; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}
@media (max-width: 768px) {
  section { padding: clamp(2.5rem, 6vw, 4rem) 0; }
}
@media (max-width: 640px) {
  h1 { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .hero { min-height: auto; padding: clamp(5rem, 12vh, 7rem) 0 clamp(2rem, 4vh, 3rem); }
  .hero-title { font-size: clamp(2.6rem, 10vw, 4rem); }
  .trust-strip { gap: 8px; }
  .trust-badge { font-size: 0.75rem; padding: 6px 12px; }
  .felsefe-grid { gap: 24px; }
  .coach-card { padding: 20px; }
  .coach-quote { font-size: 1rem; padding-left: 14px; }
  .contact-cards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-strip { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-strip { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .cookie-buttons { flex-direction: column; }
  .cookie-btn { flex: none; width: 100%; }
}
@media (max-width: 360px) {
  body { font-size: 0.95rem; }
  .container { padding-left: 14px; padding-right: 14px; }
}

/* --- CSS safety net: guarantees visibility even if JS is slow --- */
@keyframes afo-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
.reveal:not(.is-in) {
  animation: afo-in 400ms cubic-bezier(.2,.7,.2,1) both;
  animation-delay: calc(var(--i, 0) * 50ms + 50ms);
}
/* Above-fold hero/page-hero overrides with faster stagger */
.hero .reveal:not(.is-in),
.page-hero .reveal:not(.is-in) {
  animation: afo-in 500ms cubic-bezier(.2,.7,.2,1) both;
  animation-delay: calc(var(--i, 0) * 70ms + 40ms);
}
.hero .reveal.is-in,
.page-hero .reveal.is-in {
  animation: none;
  transition-delay: calc(var(--i, 0) * 70ms + 20ms);
}
@media (prefers-reduced-motion: reduce) {
  .hero .reveal,
  .page-hero .reveal,
  .reveal { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* --- Cookie banner button hierarchy --- */
.cookie-btn[data-consent="reject"],
.cookie-btn[data-consent="settings"] {
  opacity: 0.82;
  font-weight: 600;
}
.cookie-btn[data-consent="reject"]:hover,
.cookie-btn[data-consent="reject"]:focus-visible,
.cookie-btn[data-consent="settings"]:hover,
.cookie-btn[data-consent="settings"]:focus-visible {
  opacity: 1;
}

/* Reset reveal stagger delay on interactive cards after entry animation */
.contact-card.is-in,
.price-card.is-in,
.testimonial-card.is-in,
.coach-card.is-in {
  transition-delay: 0s;
}

/* --- Enhanced hover micro-effects (Football-themed) --- */
.coach-card {
  position: relative;
}
.coach-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity 320ms, transform 480ms cubic-bezier(.2,.7,.2,1);
  z-index: 1;
}
.coach-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}
.stat-item {
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}
.stat-item:hover {
  transform: translateY(-3px);
}
.stat-num {
  transition: text-shadow 300ms ease;
}
.stat-item:hover .stat-num {
  text-shadow: 0 0 28px rgba(46,245,118,0.45);
}
.price-card .btn-primary,
.price-card .btn-ghost {
  margin-top: auto;
}
.price-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(ellipse at 50% 0%, rgba(46,245,118,0.06) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 360ms;
  pointer-events: none;
}
.price-card:hover::after {
  opacity: 1;
}
.testimonial-card::before {
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 280ms;
}
.testimonial-card:hover::before {
  transform: scale(1.15) translateY(-4px);
  opacity: 0.35;
}
.faq-item summary {
  transition: color 240ms, padding-left 200ms;
}
.faq-item summary:hover {
  padding-left: 6px;
}
.faq-item summary:hover::after {
  color: var(--accent-2);
}
.process-step::before {
  transition: box-shadow 280ms, transform 280ms cubic-bezier(.2,.7,.2,1);
}
.process-step:hover::before {
  box-shadow: 0 0 0 2px var(--accent), 0 0 12px rgba(46,245,118,0.35);
  transform: scale(1.3);
}
.cancel-tier {
  transition: background 200ms;
}
.cancel-tier:hover {
  background: rgba(46,245,118,0.03);
  border-radius: 6px;
}
.news-item {
  transition: background 200ms, padding-left 200ms;
}
.news-item:hover {
  background: rgba(46,245,118,0.03);
  padding-left: 8px;
}

/* --- Football-themed CTA pulse & whistle --- */
.btn-primary:hover svg,
.btn-primary:focus-visible svg {
  animation: whistle-pulse 400ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary:hover svg,
  .btn-primary:focus-visible svg { animation: none; }
  .coach-card:hover::before { transition: none; }
  .stat-item:hover { transform: none; }
  .process-step:hover::before { transform: none; box-shadow: none; }
  .trust-badge:hover { transform: none; }
  .testimonial-card:hover::before { transform: none; }
  .price-card:hover { transform: none; }
  .coach-card:hover { transform: none; }
  .contact-card:hover { transform: none; }
  .testimonial-card:hover { transform: none; }
}

/* --- Table scroll hint for mobile --- */
@media (max-width: 768px) {
  .table-scroll {
    position: relative;
  }
  .table-scroll::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 32px;
    background: linear-gradient(90deg, transparent, var(--bg));
    pointer-events: none;
    border-radius: 0 6px 6px 0;
    opacity: 0.9;
  }
}

/* --- Stagger reveal entry variants --- */
.reveal.reveal-left {
  transform: translateX(-28px);
}
.reveal.reveal-left.is-in {
  transform: none;
}
.reveal.reveal-scale {
  transform: scale(0.95);
}
.reveal.reveal-scale.is-in {
  transform: none;
}

/* --- Print --- */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle,
  .skip-link, .pitch-decor, .pitch-svg { display: none !important; }
  body { color: #000; background: #fff; }
  main { padding-top: 0; }
  a { color: #000; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

.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}
