:root {
  --bg: #F8F5F0;
  --surface: #FFFFFF;
  --surface-2: #F0EDE7;
  --ink: #1E1810;
  --ink-soft: #5A4F42;
  --accent: #C44A1A;
  --accent-2: #1B6D5A;
  --line: rgba(30,24,16,0.12);
  --line-strong: rgba(30,24,16,0.24);
  --header-h: 72px;
  --container: 1320px;
  --radius: 10px;
  --radius-lg: 16px;
  interpolate-size: allow-keywords;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); letter-spacing: -0.012em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p { max-width: 68ch; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  z-index: 10000;
  transition: top 200ms;
}
.skip-link:focus { top: 8px; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.section-title { margin-bottom: 20px; }
.section-sub {
  color: var(--ink-soft);
  font-size: 1.0625rem;
  max-width: 58ch;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ======================================== */
/* HEADER                                    */
/* ======================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(248, 245, 240, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}
.site-header.scrolled {
  background: rgba(248,245,240,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
  height: 62px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-accent { color: var(--accent); }

/* ======================================== */
/* NAV DESKTOP                               */
/* ======================================== */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none !important; }
}
.nav-desktop a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a:not(.nav-cta).is-active::after { transform: scaleX(1); }
.nav-desktop a:not(.nav-cta):hover,
.nav-desktop a:not(.nav-cta).is-active { color: var(--accent); }
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta {
  padding: 10px 22px;
  background: var(--ink);
  color: var(--surface);
  border-radius: 8px;
  transition: background 240ms, color 240ms, transform 180ms, box-shadow 240ms;
}
.nav-desktop .nav-cta:hover {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -6px rgba(196,74,26,0.3);
}

/* ======================================== */
/* NAV TOGGLE (HAMBURGER)                    */
/* ======================================== */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  background: rgba(30,24,16,0.10);
  border: 2px solid rgba(30,24,16,0.25);
  border-radius: 10px;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  padding: 0;
  transition: background 200ms, border-color 200ms;
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(196,74,26,0.12);
  border-color: var(--accent);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 200ms, width 200ms;
  transform-origin: center;
}
.nav-toggle span:nth-child(2) { width: 16px; }
.nav-toggle:hover span:nth-child(2) { width: 22px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 22px; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ======================================== */
/* DRAWER                                    */
/* ======================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms, visibility 240ms;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.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 32px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer nav { display: flex; flex-direction: column; gap: 4px; }
.drawer nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  border-left: 3px solid transparent;
  transition: background 200ms, border-color 200ms, color 200ms;
}
.drawer nav a:hover { background: var(--surface-2); color: var(--ink); }
.drawer nav a.is-active {
  border-left-color: var(--accent);
  color: var(--accent);
  background: rgba(196,74,26,0.06);
}
.drawer .drawer-cta {
  margin-top: 16px;
  display: block;
  text-align: center;
  padding: 14px 24px;
  background: var(--ink);
  color: var(--surface);
  border-radius: 8px;
  font-weight: 700;
  transition: background 240ms, color 240ms;
}
.drawer .drawer-cta:hover { background: var(--accent); color: var(--surface); }

/* ======================================== */
/* MAIN                                      */
/* ======================================== */
main { padding-top: var(--header-h); }

/* ======================================== */
/* BUTTONS                                   */
/* ======================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--ink);
  color: var(--surface);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 180ms, box-shadow 240ms;
  text-decoration: none;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(196,74,26,0.35);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  border: 2px solid var(--line-strong);
  border-radius: 8px;
  cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
  text-decoration: none;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-accent2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent-2);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 240ms, color 240ms, transform 180ms, box-shadow 240ms;
  text-decoration: none;
}
.btn-accent2:hover, .btn-accent2:focus-visible {
  background: #15574a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(27,109,90,0.35);
}

/* ======================================== */
/* HERO (#vitrin)                            */
/* ======================================== */
.hero {
  padding: clamp(2rem, 6vw, 5rem) 0 clamp(3rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(196,74,26,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--accent);
}
.hero h1 { margin-bottom: 24px; line-height: 1.08; }
.hero h1 .word {
  display: inline-block;
}
.hero.hero-animated h1 .word {
  animation: word-in 500ms cubic-bezier(.22,.68,0,1.1) both;
}
.hero-sub {
  font-size: clamp(1.0625rem, 1.8vw, 1.1875rem);
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 48ch;
  line-height: 1.7;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
}
.hero-trust-badge svg { width: 16px; height: 16px; color: var(--accent-2); flex-shrink: 0; }

.hero-photo {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  will-change: transform;
}
.hero-photo::before,
.hero-photo::after {
  content: '';
  position: absolute;
  width: 36px; height: 36px;
  z-index: 2;
  pointer-events: none;
}
.hero-photo::before {
  top: -2px; left: -2px;
  border-top: 3px solid var(--accent);
  border-left: 3px solid var(--accent);
}
.hero-photo::after {
  bottom: -2px; right: -2px;
  border-bottom: 3px solid var(--accent);
  border-right: 3px solid var(--accent);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 38px, rgba(196,74,26,0.05) 38px, rgba(196,74,26,0.05) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 38px, rgba(196,74,26,0.05) 38px, rgba(196,74,26,0.05) 40px);
}
.hero-photo-placeholder svg { width: 72px; height: 72px; color: var(--accent); opacity: 0.2; }

@keyframes word-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ======================================== */
/* STATS STRIP                               */
/* ======================================== */
.stats-strip {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  background: var(--ink);
  color: var(--surface);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 16px 8px; }
.stat-number {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

/* ======================================== */
/* PROGRAMS (#programlar)                    */
/* ======================================== */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.program-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  border-bottom: 4px solid var(--accent);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1);
}
.program-card::before,
.program-card::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  transition: width 240ms, height 240ms;
}
.program-card::before {
  top: 0; left: 0;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  border-radius: var(--radius) 0 0 0;
}
.program-card::after {
  top: 0; right: 0;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  border-radius: 0 var(--radius) 0 0;
}
.program-card:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 48px -12px rgba(196,74,26,0.18);
}
.program-card:hover::before,
.program-card:hover::after { width: 28px; height: 28px; }
.program-card:hover .futsal-ball-icon {
  opacity: 0.6;
  animation: ball-spin 1.2s cubic-bezier(.2,.7,.2,1) infinite;
}
.program-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(196,74,26,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
}
.program-card-icon svg { width: 24px; height: 24px; }
.program-card h3 { margin-bottom: 8px; font-size: 1.25rem; }
.program-sessions { font-size: 0.875rem; color: var(--ink-soft); margin-bottom: 16px; }
.program-price {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.program-price-note {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.program-includes { margin-bottom: 8px; }
.program-includes li {
  font-size: 0.875rem;
  padding: 4px 0 4px 22px;
  position: relative;
  color: var(--ink-soft);
}
.program-includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 6px;
  border-left: 2px solid var(--accent-2);
  border-bottom: 2px solid var(--accent-2);
  transform: rotate(-45deg);
}
.program-excludes li::before {
  content: '×';
  position: absolute;
  left: 3px; top: 3px;
  width: auto; height: auto;
  border: none;
  transform: none;
  color: rgba(196,74,26,0.5);
  font-size: 0.9rem;
  font-weight: 700;
}
.futsal-ball-icon {
  position: absolute;
  top: 14px; right: 14px;
  width: 22px; height: 22px;
  color: var(--accent);
  opacity: 0;
  transition: opacity 240ms;
}
.program-cta { margin-top: 20px; }
.program-cta .btn-primary,
.program-cta .btn-ghost {
  width: 100%;
  padding: 12px 20px;
  font-size: 0.875rem;
}
.program-single-note {
  text-align: center;
  margin-top: 32px;
  padding: 20px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  font-size: 0.9375rem;
  color: var(--ink-soft);
}
.program-single-note strong {
  color: var(--accent);
  font-family: 'DM Sans', sans-serif;
}

@keyframes ball-spin { to { transform: rotate(360deg); } }

/* ======================================== */
/* PROCESS (#surec)                          */
/* ======================================== */
.process-section { background: var(--surface-2); }
.process-timeline {
  position: relative;
  padding-left: 52px;
  max-width: 720px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 16px; top: 0; bottom: 0;
  width: 2px;
  background: var(--line-strong);
}
.process-step {
  position: relative;
  padding: 24px 0;
}
.process-step:not(:last-child) { border-bottom: 1px solid var(--line); }
.process-step-number {
  position: absolute;
  left: -52px; top: 24px;
  width: 34px; height: 34px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
}
.process-step-icon {
  position: absolute;
  left: -52px; top: 24px;
  width: 34px; height: 34px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step-icon svg { width: 18px; height: 18px; }
.process-step-time {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.process-step h4 { margin-bottom: 6px; }
.process-step p { font-size: 0.9375rem; color: var(--ink-soft); }

/* ======================================== */
/* SCHEDULE (#takvim)                        */
/* ======================================== */
.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; }

.schedule-table {
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.schedule-table th {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid var(--line-strong);
  background: var(--surface-2);
}
.schedule-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table .day-cell {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  white-space: nowrap;
}
.schedule-table .time-cell {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.schedule-table .program-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 640px) {
  .schedule-table .program-badge { white-space: normal; line-height: 1.3; }
}
.badge-baslangic { background: rgba(27,109,90,0.1); color: var(--accent-2); }
.badge-orta { background: rgba(196,74,26,0.1); color: var(--accent); }
.badge-ileri { background: rgba(30,24,16,0.08); color: var(--ink); }
.badge-fitness { background: rgba(27,109,90,0.06); color: var(--accent-2); }
.badge-lig { background: rgba(196,74,26,0.15); color: #9a3a14; }
.badge-kapali { background: rgba(30,24,16,0.04); color: var(--ink-soft); }

.day-pzt td, .day-car td { background: rgba(196,74,26,0.03); }
.day-sal td, .day-per td { background: rgba(27,109,90,0.03); }
.day-cum td { background: rgba(30,24,16,0.02); }
.day-cmt td { background: rgba(196,74,26,0.05); }
.day-paz td { background: rgba(30,24,16,0.02); }

/* ======================================== */
/* COACHES (#antrenorler)                    */
/* ======================================== */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.coach-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms;
  position: relative;
}
.coach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px -12px rgba(27,109,90,0.18);
}
.coach-card:hover .coach-whistle { animation: whistle-swing 800ms cubic-bezier(.4,0,.2,1); }
.coach-photo {
  aspect-ratio: 4/5;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}
.coach-photo img { width: 100%; height: 100%; object-fit: cover; }
.coach-photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coach-photo-placeholder svg { width: 56px; height: 56px; color: var(--ink-soft); opacity: 0.15; }
.coach-whistle {
  position: absolute;
  top: 12px; right: 12px;
  width: 24px; height: 24px;
  color: var(--accent);
  opacity: 0.7;
  transform-origin: top center;
}
.coach-info { padding: 20px 24px 24px; }
.coach-name { font-size: 1.125rem; margin-bottom: 4px; }
.coach-role { font-size: 0.875rem; color: var(--ink-soft); margin-bottom: 12px; }
.coach-bio { font-size: 0.875rem; color: var(--ink-soft); margin-bottom: 14px; line-height: 1.6; }
.coach-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.coach-tag {
  padding: 4px 10px;
  background: rgba(27,109,90,0.08);
  color: var(--accent-2);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
}

@keyframes whistle-swing {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(15deg); }
  40% { transform: rotate(-10deg); }
  60% { transform: rotate(8deg); }
  80% { transform: rotate(-4deg); }
}

/* ======================================== */
/* TESTIMONIALS (#referanslar)               */
/* ======================================== */
.testimonials-section { background: var(--surface-2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  border-left: 4px solid var(--accent-2);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(27,109,90,0.12);
}
.testimonial-card:first-child { grid-row: span 2; display: flex; flex-direction: column; justify-content: center; }
.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  padding-left: 20px;
}
.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: -4px; top: -8px;
  font-family: 'DM Sans', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}
.testimonial-author {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 2px;
}
.testimonial-meta {
  font-size: 0.8125rem;
  color: var(--ink-soft);
}

/* ======================================== */
/* FAQ (#sss)                                */
/* ======================================== */
.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;
  gap: 16px;
  padding: 20px 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  cursor: pointer;
  list-style: none;
  transition: color 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item .faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] .faq-chevron { transform: rotate(45deg); }
.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.9375rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ======================================== */
/* NOTES                                     */
/* ======================================== */
.notes-list { max-width: 680px; }
.note-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}
.note-item time {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--accent);
  white-space: nowrap;
  padding-top: 2px;
}
.note-item p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

/* ======================================== */
/* REGISTRATION (#kayit)                     */
/* ======================================== */
.registration-section {
  background: var(--ink);
  color: var(--surface);
  position: relative;
  overflow: hidden;
}
.registration-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.registration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.registration-content .section-eyebrow { color: rgba(255,255,255,0.5); }
.registration-content h2 { color: var(--surface); margin-bottom: 20px; }
.registration-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.0625rem;
  margin-bottom: 24px;
  line-height: 1.7;
}
.registration-features { margin-bottom: 24px; }
.registration-features li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
}
.registration-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 12px; height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ======================================== */
/* FORMS                                     */
/* ======================================== */
.form-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--line);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--surface);
  transition: border-color 240ms;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  outline: none;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { cursor: pointer; }

.kvkk-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.kvkk-field label {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
}
.field input[type="checkbox"],
.kvkk-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);
  flex-shrink: 0;
  cursor: pointer;
}
.form-submit {
  width: 100%;
  padding: 14px 32px;
}
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.registration-section .btn-primary {
  background: var(--accent);
  color: #fff;
}
.registration-section .btn-primary:hover,
.registration-section .btn-primary:focus-visible {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 28px -6px rgba(255,255,255,0.3);
}

/* Dark form variant (inside registration section) */
.registration-section .form-card {
  color: var(--ink);
}

/* ======================================== */
/* FOOTER                                    */
/* ======================================== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  padding-bottom: 0;
}
.site-footer .footer-bottom {
  padding-bottom: max(20px, env(safe-area-inset-bottom));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}
.footer-brand { max-width: 300px; }
.footer-brand .logo { color: var(--surface); margin-bottom: 14px; font-size: 1.25rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 200ms, color 200ms;
}
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-social a svg { width: 18px; height: 18px; }

.footer-col h4 {
  color: var(--surface);
  font-size: 0.9375rem;
  margin-bottom: 16px;
  letter-spacing: 0;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 200ms;
}
.footer-col a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}
.footer-contact-item a {
  color: rgba(255,255,255,0.6);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: color 200ms;
}
.footer-bottom a:hover { color: var(--accent); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* ======================================== */
/* 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);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: 0 16px 48px -8px rgba(0,0,0,0.15);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.6;
}
.cookie-banner p a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-actions button {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: background 200ms, color 200ms;
}
.cookie-actions .cookie-accept {
  background: var(--ink);
  color: var(--surface);
  border: none;
}
.cookie-actions .cookie-accept:hover { background: var(--accent); color: var(--surface); }
.cookie-actions .cookie-reject {
  background: var(--ink);
  color: var(--surface);
  border: none;
}
.cookie-actions .cookie-reject:hover {
  background: var(--accent);
  color: var(--surface);
}
.cookie-actions .cookie-settings {
  background: transparent;
  color: var(--ink-soft);
  border: 2px solid var(--line);
}
.cookie-actions .cookie-settings:hover { background: var(--surface-2); color: var(--ink); }

@media (max-width: 639px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 20px 20px max(20px, env(safe-area-inset-bottom));
  }
}
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; }
}

/* ======================================== */
/* REVEAL ANIMATIONS                         */
/* ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms cubic-bezier(.22,.68,0,1.05), transform 650ms cubic-bezier(.22,.68,0,1.05);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[style*="--i"] {
  transition-delay: calc(var(--i, 0) * 90ms);
}

html.no-js .reveal { opacity: 1; transform: none; }

/* ======================================== */
/* FUTSAL-SPECIFIC ANIMATIONS                */
/* ======================================== */
@keyframes court-corner-glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes court-line-draw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes ball-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes net-sway {
  0%, 100% { background-position: 0 0; }
  50% { background-position: 4px 2px; }
}

.section-title.is-in::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-top: 14px;
  border-radius: 2px;
  transform-origin: left;
  animation: court-line-draw 600ms cubic-bezier(.22,.68,0,1.05) both;
}
.page-hero h1::after,
.page-hero .section-title::after,
.registration-section h2::after,
.registration-content h2::after,
.policy-content h2::after,
.policy-content h3::after { display: none; }

.hero-photo {
  transition: transform 600ms cubic-bezier(.22,.68,0,1.05), box-shadow 400ms;
}
.hero-photo:hover {
  box-shadow: 0 24px 64px -16px rgba(196,74,26,0.2);
}

.stats-strip .stat-number {
  transition: transform 300ms cubic-bezier(.22,.68,0,1.05);
}
.stat-item:hover .stat-number {
  transform: scale(1.08);
  animation: ball-pulse 1.2s ease-in-out infinite;
}

.program-card {
  transition: transform 300ms cubic-bezier(.22,.68,0,1.05), box-shadow 300ms cubic-bezier(.22,.68,0,1.05);
}
.program-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 56px -12px rgba(196,74,26,0.2);
}
.program-card:hover .program-card-icon {
  background: var(--accent);
  color: #fff;
  transition: background 300ms, color 300ms;
}
.program-card-icon {
  transition: background 300ms, color 300ms;
}

.process-step-icon {
  transition: transform 300ms cubic-bezier(.22,.68,0,1.05), box-shadow 300ms;
}
.process-step:hover .process-step-icon {
  transform: scale(1.15);
  box-shadow: 0 4px 16px -4px rgba(196,74,26,0.3);
}

.coach-card {
  transition: transform 350ms cubic-bezier(.22,.68,0,1.05), box-shadow 350ms;
}
.coach-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px -12px rgba(27,109,90,0.2);
}
.coach-card:hover .coach-photo img {
  transform: scale(1.04);
}
.coach-photo img {
  transition: transform 500ms cubic-bezier(.22,.68,0,1.05);
}

.testimonial-card {
  transition: transform 300ms cubic-bezier(.22,.68,0,1.05), box-shadow 300ms, border-color 300ms;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px -8px rgba(27,109,90,0.15);
  border-left-color: var(--accent);
}

.faq-item summary {
  transition: color 200ms, padding-left 300ms cubic-bezier(.22,.68,0,1.05);
}
.faq-item summary:hover {
  color: var(--accent);
  padding-left: 8px;
}

.channel-card {
  transition: transform 300ms cubic-bezier(.22,.68,0,1.05), box-shadow 300ms, border-color 300ms;
}
.channel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -8px rgba(196,74,26,0.12);
  border-color: var(--accent);
}
.channel-card:hover .channel-icon {
  background: var(--accent);
  color: #fff;
}
.channel-icon {
  transition: background 300ms, color 300ms;
}

.about-value-card {
  transition: transform 300ms cubic-bezier(.22,.68,0,1.05), box-shadow 300ms;
}
.about-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px -8px rgba(27,109,90,0.15);
}
.about-value-card:hover .about-value-icon {
  background: var(--accent-2);
  color: #fff;
}
.about-value-icon {
  transition: background 300ms, color 300ms;
}

.note-item {
  transition: background 200ms;
  border-radius: 6px;
  padding: 16px 8px;
}
.note-item:hover {
  background: rgba(196,74,26,0.03);
}

.hours-day {
  transition: transform 200ms cubic-bezier(.22,.68,0,1.05), border-color 200ms, box-shadow 200ms;
}
.hours-day:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 6px 20px -6px rgba(196,74,26,0.12);
}

.footer-social a {
  transition: background 250ms cubic-bezier(.22,.68,0,1.05), color 250ms, transform 250ms;
}
.footer-social a:hover {
  transform: translateY(-3px) scale(1.08);
}

.btn-primary {
  transition: background 280ms cubic-bezier(.22,.68,0,1.05), color 280ms, transform 220ms cubic-bezier(.22,.68,0,1.05), box-shadow 280ms;
}
.btn-ghost {
  transition: background 280ms cubic-bezier(.22,.68,0,1.05), color 280ms, border-color 280ms, transform 220ms cubic-bezier(.22,.68,0,1.05);
}

.testimonials-section {
  position: relative;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 38px, rgba(27,109,90,0.03) 38px, rgba(27,109,90,0.03) 40px);
  pointer-events: none;
  animation: net-sway 6s ease-in-out infinite;
}

/* ======================================== */
/* PAGE-SPECIFIC: CONTACT                    */
/* ======================================== */
.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  text-align: center;
}
.page-hero .section-eyebrow { margin-bottom: 12px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { margin: 0 auto; text-align: center; }

.contact-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.channel-card {
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 12px;
  background: var(--surface);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms;
}
.channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.12);
}
.channel-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(196,74,26,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--accent);
}
.channel-icon svg { width: 22px; height: 22px; }
.channel-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 6px;
}
.channel-value {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.channel-value a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.channel-value a:hover { color: var(--ink); }
.channel-sub {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
}
.hours-day {
  padding: 12px 16px;
  background: var(--surface);
  border-radius: 8px;
  font-variant-numeric: tabular-nums;
  border: 1px solid var(--line);
  transition: border-color 200ms;
}
.hours-day.is-today {
  border-color: var(--accent);
  background: rgba(196,74,26,0.04);
}
.hours-day-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  margin-bottom: 4px;
}
.hours-day-time { font-size: 0.875rem; color: var(--ink-soft); }

.contact-form-section { background: var(--surface-2); }

/* ======================================== */
/* PAGE-SPECIFIC: ABOUT                      */
/* ======================================== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.about-story-text p {
  margin-bottom: 16px;
  color: var(--ink-soft);
  line-height: 1.8;
}
.about-photo {
  aspect-ratio: 4/3;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about-photo::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px;
  width: 40px; height: 40px;
  border-top: 3px solid var(--accent);
  border-left: 3px solid var(--accent);
  z-index: 1;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-value-card {
  padding: 28px 24px;
  background: var(--surface);
  border-radius: var(--radius);
  border-bottom: 3px solid var(--accent-2);
}
.about-value-card h4 { margin-bottom: 10px; }
.about-value-card p { font-size: 0.9375rem; color: var(--ink-soft); }
.about-value-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(27,109,90,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent-2);
}
.about-value-icon svg { width: 22px; height: 22px; }

/* ======================================== */
/* PAGE-SPECIFIC: POLICY                     */
/* ======================================== */
.policy-content {
  max-width: 780px;
  margin: 0 auto;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.policy-content h2 { margin-top: 40px; margin-bottom: 16px; }
.policy-content h3 { margin-top: 28px; margin-bottom: 12px; }
.policy-content p { margin-bottom: 16px; color: var(--ink-soft); line-height: 1.8; }
.policy-content ul, .policy-content ol { margin-bottom: 16px; padding-left: 24px; list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-content li { margin-bottom: 8px; color: var(--ink-soft); line-height: 1.7; }
.policy-content strong { color: var(--ink); }
.policy-date { font-size: 0.875rem; color: var(--ink-soft); margin-bottom: 32px; }

/* ======================================== */
/* PAGE-SPECIFIC: THANK YOU                  */
/* ======================================== */
.thankyou-section {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(4rem, 10vw, 8rem) 0;
}
.thankyou-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(27,109,90,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--accent-2);
}
.thankyou-icon svg { width: 32px; height: 32px; }
.thankyou-section h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 16px; }
.thankyou-section p { margin: 0 auto 32px; color: var(--ink-soft); }

/* ======================================== */
/* PAGE-SPECIFIC: 404                        */
/* ======================================== */
.error-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(4rem, 10vw, 8rem) 0;
}
.error-code {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 16px;
}
.error-section h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 16px; }
.error-section p { margin: 0 auto 32px; color: var(--ink-soft); }

/* ======================================== */
/* PAGE-SPECIFIC: SITEMAP                    */
/* ======================================== */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.sitemap-group h3 { margin-bottom: 14px; font-size: 1.125rem; }
.sitemap-group ul { list-style: none; }
.sitemap-group li { margin-bottom: 8px; }
.sitemap-group a {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  transition: color 200ms;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sitemap-group a:hover { color: var(--accent); }
.sitemap-group a::before {
  content: '→';
  font-size: 0.75rem;
  color: var(--accent);
}

/* ======================================== */
/* RESPONSIVE                                */
/* ======================================== */
@media (max-width: 1280px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

@media (max-width: 1024px) {
  :root { --header-h: 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-photo { max-width: 400px; aspect-ratio: 4/3; }
  .coaches-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .registration-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card:first-child { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: 1fr; max-width: 480px; }
  .coaches-grid { grid-template-columns: 1fr; max-width: 400px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .hero-photo { max-width: 100%; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-ghost { width: 100%; justify-content: center; }
  .hero-trust { justify-content: center; }
  .about-values-grid { grid-template-columns: 1fr; }
  .contact-channels { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: repeat(2, 1fr); }
  .note-item { grid-template-columns: 1fr; gap: 4px; }
  .cookie-actions { flex-direction: row; }
  .cookie-actions button { flex: 1; min-width: 0; padding: 10px 8px; font-size: 0.75rem; }
}

@media (max-width: 430px) {
  h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
  .program-card { padding: 22px 18px 20px; }
  .program-card-icon { width: 40px; height: 40px; margin-bottom: 14px; }
  .program-card-icon svg { width: 20px; height: 20px; }
  .stat-number { font-size: clamp(1.75rem, 8vw, 2.25rem); }
  .coach-info { padding: 16px 18px 20px; }
  .coach-tag { font-size: 0.6875rem; padding: 3px 8px; }
}

@media (max-width: 390px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .section { padding: clamp(2.5rem, 8vw, 4rem) 0; }
  .hero-trust-badge { font-size: 0.75rem; padding: 5px 10px; }
  .testimonial-card { padding: 20px; }
  .hours-grid { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  body { font-size: 15px; }
  .program-price { font-size: 1.25rem; }
}

/* ======================================== */
/* FUTSAL COURT-THEMED MICRO EFFECTS         */
/* ======================================== */
@keyframes court-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,74,26,0.15); }
  50% { box-shadow: 0 0 0 8px rgba(196,74,26,0); }
}

@keyframes goal-flash {
  0% { opacity: 0; transform: scale(0.92); }
  60% { opacity: 1; transform: scale(1.02); }
  100% { opacity: 1; transform: scale(1); }
}

.process-step-icon {
  animation: court-pulse 3s ease-in-out infinite;
  animation-play-state: paused;
}
.process-step:hover .process-step-icon {
  animation-play-state: running;
}

.hero-trust-badge {
  transition: transform 250ms cubic-bezier(.22,.68,0,1.05), box-shadow 250ms, background 250ms;
}
.hero-trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px -4px rgba(27,109,90,0.15);
  background: rgba(27,109,90,0.06);
}

.registration-section .btn-primary {
  position: relative;
  overflow: hidden;
}
.registration-section .btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: none;
}
.registration-section .btn-primary:hover::after {
  animation: btn-shine 600ms cubic-bezier(.22,.68,0,1.05) forwards;
}
@keyframes btn-shine {
  to { transform: translateX(100%); }
}

.program-card::before,
.program-card::after {
  transition: width 300ms cubic-bezier(.22,.68,0,1.05), height 300ms cubic-bezier(.22,.68,0,1.05), opacity 300ms;
}
.program-card:hover::before,
.program-card:hover::after {
  opacity: 0.8;
}

.coach-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(30,24,16,0.12), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 400ms;
}
.coach-card:hover .coach-photo::after {
  opacity: 1;
}

.faq-item[open] {
  background: rgba(196,74,26,0.02);
  border-radius: 8px;
  margin: 0 -12px;
  padding: 0 12px;
}

.note-item time {
  transition: color 200ms;
}
.note-item:hover time {
  color: var(--ink);
}

.footer-col a {
  position: relative;
}
.footer-col a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.22,.68,0,1.05);
}
.footer-col a:hover::after {
  width: 100%;
}

.channel-card {
  position: relative;
  overflow: hidden;
}
.channel-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  border-radius: 0 2px 2px 0;
  transition: height 300ms cubic-bezier(.22,.68,0,1.05);
}
.channel-card:hover::before {
  height: 100%;
}

.about-value-card {
  position: relative;
  overflow: hidden;
}
.about-value-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0;
  height: 3px;
  background: var(--accent-2);
  transition: width 300ms cubic-bezier(.22,.68,0,1.05), left 300ms cubic-bezier(.22,.68,0,1.05);
}
.about-value-card:hover::before {
  width: 100%;
  left: 0;
}

.schedule-table tr {
  transition: background 200ms;
}
.schedule-table tbody tr:hover td {
  background: rgba(196,74,26,0.06) !important;
}

.stats-strip {
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 38px, rgba(255,255,255,0.02) 38px, rgba(255,255,255,0.02) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 38px, rgba(255,255,255,0.02) 38px, rgba(255,255,255,0.02) 40px);
  pointer-events: none;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
}
.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle at 100% 0%, rgba(196,74,26,0.04) 0%, transparent 70%);
  pointer-events: none;
  transition: width 300ms, height 300ms;
}
.testimonial-card:hover::after {
  width: 100px;
  height: 100px;
}

.hours-day {
  position: relative;
  overflow: hidden;
}
.hours-day::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms cubic-bezier(.22,.68,0,1.05);
}
.hours-day:hover::after,
.hours-day.is-today::after {
  transform: scaleX(1);
}

/* ======================================== */
/* REDUCED MOTION                            */
/* ======================================== */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero.hero-animated h1 .word { opacity: 1; transform: none; animation: none; }
  .hero h1 .word { opacity: 1; transform: none; }
  .program-card:hover .futsal-ball-icon { animation: none; }
  .coach-card:hover .coach-whistle { animation: none; }
  .court-accent::before { animation: none; }
  .section-title.is-in::after { animation: none; transform: scaleX(1); }
  .stat-item:hover .stat-number { animation: none; transform: none; }
  .testimonials-section::before { animation: none; }
  .process-step-icon { animation: none; }
  .registration-section .btn-primary:hover::after { animation: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ======================================== */
/* PRINT                                     */
/* ======================================== */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle, .skip-link { display: none !important; }
  main { padding-top: 0; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .section { page-break-inside: avoid; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: 0.8em; color: #666; }
}

.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}

/* iletisim-form-responsive-guard v2 */
main form, .form-section form, .contact-form, .iletisim-form, form#contact-form, form[id*="iletisim"], form[class*="iletisim"], form[class*="contact"] {
  display: block;
  max-width: 720px;
  margin: 24px auto;
  padding: clamp(20px, 4vw, 36px);
  background: var(--surface, rgba(255,255,255,0.04));
  border: 1px solid var(--line, rgba(127,127,127,0.18));
  border-radius: 16px;
  box-shadow: 0 8px 32px -12px rgba(0,0,0,0.25);
  box-sizing: border-box;
}
main form .form-grid,
main form > .grid,
.contact-form .form-grid,
form[class*="contact"] .form-grid,
form[class*="iletisim"] .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  width: 100%;
}
@media (max-width: 640px) {
  main form .form-grid,
  main form > .grid,
  .contact-form .form-grid,
  form[class*="contact"] .form-grid,
  form[class*="iletisim"] .form-grid {
    grid-template-columns: 1fr;
  }
}
main form .form-grid > .field-full,
main form .form-grid > .col-full,
main form .form-grid > [class*="full"] {
  grid-column: 1 / -1;
}
main form .field, main form label,
.contact-form .field, .contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
main form input[type="text"],
main form input[type="email"],
main form input[type="tel"],
main form input[type="number"],
main form input[type="date"],
main form input[type="url"],
main form input[type="search"],
main form input:not([type]),
main form select,
main form textarea,
.contact-form input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=hidden]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  min-height: 44px;
  font-size: 16px;
  line-height: 1.4;
  font-family: inherit;
  border: 1px solid var(--line, rgba(127,127,127,0.22));
  border-radius: 10px;
  background: var(--input-bg, rgba(0,0,0,0.04));
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
}
main form textarea, .contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
main form input:focus, main form select:focus, main form textarea:focus,
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 2px solid var(--accent, #5a8dee);
  outline-offset: 1px;
  border-color: transparent;
}
main form .checkbox, main form label.checkbox,
.contact-form .checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
main form input[type="checkbox"], main form input[type="radio"],
.contact-form input[type="checkbox"], .contact-form input[type="radio"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent, #5a8dee);
}
main form button[type="submit"],
main form input[type="submit"],
main form .btn-submit,
.contact-form button[type="submit"],
.contact-form .btn-submit {
  width: 100%;
  min-height: 48px;
  padding: 14px 28px;
  background: var(--accent, #5a8dee);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 8px;
  transition: filter 200ms ease, transform 120ms ease;
}
@media (min-width: 640px) {
  main form button[type="submit"],
  main form input[type="submit"],
  .contact-form button[type="submit"] {
    width: auto;
    min-width: 220px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
main form button[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
  filter: brightness(1.05);
}
main form button[type="submit"]:active,
.contact-form button[type="submit"]:active {
  transform: translateY(1px);
}


/* honeypot-hide */
.form-honeypot, input[name="web_site"], input[name="honeypot"], input[name="hp_url"], input[name="trap"], input[aria-hidden="true"][tabindex="-1"] {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}

/* form-reveal-opacity-fix */
main form.reveal, .form-section form.reveal, .contact-form.reveal, form[id*='iletisim'].reveal, form[class*='contact'].reveal { opacity: 1 !important; transform: none !important; translate: none !important; }
main form, .form-section form, .contact-form, form[id*='iletisim'], form[class*='contact'] { opacity: 1 !important; }

/* consent-checkbox-inline-fix */
main form label.checkbox, main form .form-checkbox, main form .consent, main form .kvkk, .contact-form label.checkbox, .contact-form .checkbox-group { display: flex !important; flex-direction: row !important; align-items: flex-start !important; gap: 10px !important; font-size: 14px !important; line-height: 1.5 !important; flex-wrap: nowrap !important; }
main form label.checkbox span, main form label.checkbox a, main form .form-checkbox span, main form .form-checkbox a, .contact-form label.checkbox span, .contact-form label.checkbox a { display: inline !important; flex: 1 1 auto; }
main form label.checkbox input[type='checkbox'], main form .form-checkbox input[type='checkbox'] { flex-shrink: 0 !important; width: 18px !important; height: 18px !important; margin-top: 3px !important; }


/* contacts-grid-v2 */
/* Contact cards in responsive grid */
.contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid,
.contact-list, main .contact-wrap, section[id*="iletisim"] > .container > div:has(> .contact-card) {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 20px !important;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 16px;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 720px) {
  .contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid {
    grid-template-columns: 1fr !important;
  }
}
.contact-card { min-height: 0; box-sizing: border-box; }

/* Checkbox row alignment — override .field-checkbox column layout */
form .field.field-checkbox,
form .field-checkbox,
form .checkbox-field,
form .form-field--checkbox,
form .form-row--checkbox,
form .kvkk-field,
form .consent-field,
.contact-form .field.field-checkbox {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  gap: 10px !important;
  width: 100%;
}
form .field.field-checkbox > input[type="checkbox"],
form .field-checkbox > input[type="checkbox"],
form .checkbox-field > input[type="checkbox"],
form .kvkk-field > input[type="checkbox"],
form .consent-field > input[type="checkbox"] {
  flex-shrink: 0 !important;
  width: 18px !important;
  height: 18px !important;
  margin: 3px 0 0 0 !important;
  accent-color: var(--accent, currentColor);
}
form .field.field-checkbox > label,
form .field-checkbox > label,
form .checkbox-field > label,
form .kvkk-field > label,
form .consent-field > label {
  flex: 1 1 auto !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  display: inline !important;
  cursor: pointer;
}
form .field.field-checkbox > label a,
form .field-checkbox > label a {
  text-decoration: underline;
}

/* field-full inside form grid spans both columns */
form .form-grid > .field-full,
form .form-grid > .field.field-full,
form .form-grid > .col-full,
form .form-grid > .full,
form .form-grid > [class*="--full"] {
  grid-column: 1 / -1;
}

