/* Arena Voleybol — light, professional sports UI */
:root {
  --bg: #f4f6f9;
  --bg-elevated: #ffffff;
  --text: #1c2333;
  --text-secondary: #4a5568;
  --muted: #64748b;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --accent: #0f766e;
  --accent-hover: #0d9488;
  --accent-soft: rgba(15, 118, 110, 0.08);
  --navy: #0f2942;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(15, 41, 66, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 41, 66, 0.08);
  --font-sans: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Barlow Condensed", "Source Sans 3", system-ui, sans-serif;
  --text-base: 0.9375rem;
  --leading: 1.6;
  --bottom-app-h: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--navy);
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding-left: max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));
}

.section {
  padding: 48px 0;
}

.muted {
  color: var(--muted);
}

.note {
  margin: 16px 0 0;
  font-size: 0.875rem;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: var(--radius);
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  left: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--navy);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-block {
  width: 100%;
}

.text-link {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--navy);
}

.brand-sub {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bars {
  width: 18px;
  height: 2px;
  background: var(--navy);
  position: relative;
  border-radius: 1px;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.site-nav {
  display: none;
}

.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
}

.site-nav a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.site-nav.is-open {
  display: block;
  position: absolute;
  left: 20px;
  right: 20px;
  top: 64px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: var(--shadow-md);
}

.header-cta {
  display: none;
}

.header-cta .btn {
  font-size: 0.8125rem;
  padding: 9px 14px;
}

/* Eski tek satır sticky CTA kaldırıldı — yerine bottom-app-nav */

/* Mobil alt uygulama çubuğu (sadece dar ekran) */
.bottom-app-nav {
  display: none;
}

@media (max-width: 899px) {
  :root {
    --bottom-app-h: 72px;
  }

  body {
    padding-bottom: calc(var(--bottom-app-h) + env(safe-area-inset-bottom, 12px));
  }

  .container {
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
  }

  .bottom-app-nav {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    align-items: stretch;
    justify-content: space-around;
    gap: 0;
    min-height: var(--bottom-app-h);
    padding-top: 4px;
    padding-bottom: env(safe-area-inset-bottom, 12px);
    /* backdrop-filter kaldırıldı — mobilde alt içeriği bulanık gösteriyordu */
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-top: 2px solid rgba(15, 118, 110, 0.22);
    box-shadow: 0 -8px 24px rgba(15, 41, 66, 0.1);
  }

  .bottom-app-nav::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, #2dd4bf 50%, var(--accent) 100%);
    opacity: 0.95;
    pointer-events: none;
  }

  @media (prefers-reduced-motion: no-preference) {
    .bottom-app-nav {
      animation: bottom-app-nav-enter 0.35s ease-out both;
    }
  }

  .bottom-app-nav__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 6px 12px;
    min-width: 0;
    position: relative;
    z-index: 1;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: var(--navy);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s ease, color 0.15s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .bottom-app-nav__item:active {
    background: rgba(15, 118, 110, 0.12);
  }

  .bottom-app-nav__icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid rgba(15, 118, 110, 0.12);
    box-shadow: none;
  }

  .bottom-app-nav__item:first-child .bottom-app-nav__icon {
    background: rgba(37, 211, 102, 0.18);
    color: #0d9488;
    border-color: rgba(37, 211, 102, 0.28);
  }

  .bottom-app-nav__item--wa-direct .bottom-app-nav__icon {
    background: rgba(37, 211, 102, 0.18);
    color: #128c7e;
    border-color: rgba(37, 211, 102, 0.28);
  }

  .bottom-app-nav__icon svg {
    display: block;
    flex-shrink: 0;
  }

  .bottom-app-nav__label {
    text-align: center;
    line-height: 1.15;
    max-width: 100%;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: anywhere;
    font-size: 0.6875rem;
    letter-spacing: 0.04em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .bottom-app-nav__item:first-child .bottom-app-nav__label,
  .bottom-app-nav__item--wa-direct .bottom-app-nav__label {
    color: #0f766e;
  }

  .section {
    padding: 52px 0;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 36px;
    text-align: center;
  }

  .hero-inner {
    gap: 18px;
  }

  .hero-lead-full {
    display: none;
  }

  .hero-lead-short {
    display: inline;
  }

  .hero-lead {
    margin-bottom: 14px;
    font-size: 0.875rem;
    line-height: 1.55;
    max-width: 34ch;
  }

  .hero-kicker {
    margin-bottom: 8px;
    font-size: 0.625rem;
    letter-spacing: 0.1em;
  }

  .hero-title {
    margin-bottom: 10px;
    font-size: clamp(1.5rem, 6.5vw, 1.85rem);
    max-width: 20ch;
  }

  .hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-kicker {
    justify-content: center;
  }

  .hero-title {
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-lead {
    max-width: 36ch;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
  }

  .hero-cta .btn {
    padding: 9px 14px;
    font-size: 0.8125rem;
  }

  .hero-court {
    padding: 10px 12px 0;
  }

  .hero-court-inner {
    height: 88px;
    border-radius: 8px;
  }

  .hero-volleyball {
    top: 10px;
    width: 36px;
    height: 36px;
    margin-left: -18px;
  }

  .hero-volleyball svg {
    width: 36px;
    height: 36px;
  }

  .hero-panel-head {
    padding: 10px 12px;
  }

  .hero-panel-label {
    font-size: 0.875rem;
  }

  .hero-panel-badge {
    font-size: 0.625rem;
    padding: 3px 6px;
  }

  .hero-stat {
    padding: 10px 8px;
  }

  .hero-stat dt {
    font-size: 0.625rem;
  }

  .hero-stat dd {
    font-size: 0.8125rem;
  }

  .hero-note {
    padding: 10px 12px 12px;
    font-size: 0.75rem;
    line-height: 1.45;
  }

  .hero-stats {
    padding: 0 8px;
  }

  .hero-stat dd {
    font-size: 0.875rem;
  }

  .hero-panel {
    box-shadow: var(--shadow-sm);
  }

  .location-card,
  .cta-card {
    border-radius: var(--radius-lg);
  }

  .location-copy {
    text-align: center;
  }

  .location-copy .card-list {
    margin-left: auto;
    margin-right: auto;
  }

  .location-copy .btn {
    margin-left: auto;
    margin-right: auto;
  }

  .section-head {
    text-align: center;
  }

  .section-head.split {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section-actions {
    justify-content: center;
  }

  .site-footer .footer-wrap {
    padding-top: 32px;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
    padding-left: max(28px, env(safe-area-inset-left));
    padding-right: max(28px, env(safe-area-inset-right));
  }

  .site-footer .footer-main {
    gap: 22px;
    padding-bottom: 20px;
  }

  .site-footer .footer-about-text {
    font-size: 0.8125rem;
    line-height: 1.55;
  }

  .site-footer .footer-nav {
    padding: 16px 16px 14px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
  }

  .site-footer .footer-nav-list {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer .footer-nav-list a {
    display: block;
    padding: 5px 0;
    font-size: 0.8125rem;
    font-weight: 500;
  }

  .site-footer .footer-contact {
    padding: 16px 16px 14px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
  }

  .site-footer .footer-contact-list {
    gap: 2px;
  }

  .site-footer .footer-contact-link {
    margin: 0;
    padding: 8px 0;
    gap: 12px;
    font-size: 0.8125rem;
    font-weight: 500;
  }

  .site-footer .footer-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }

  .site-footer .footer-contact-icon svg {
    width: 16px;
    height: 16px;
  }

  .site-footer .footer-bar {
    padding-top: 18px;
    row-gap: 12px;
  }

  .site-footer .footer-copy {
    flex: 1 1 12rem;
    min-width: 0;
    line-height: 1.45;
  }

  .cta-copy {
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .cta-mini {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Hero — light, editorial sports (header’dan ayrılmış nefes payı) */
.hero {
  padding: 48px 0 44px;
  margin-top: 4px;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 88px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-title {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  line-height: 1.12;
  max-width: 18ch;
  color: var(--navy);
}

.hero-lead {
  margin: 0 0 20px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  max-width: 42ch;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

/* 404 */
.error-page {
  padding: 40px 0 56px;
  min-height: 46vh;
}

.error-page-inner {
  max-width: 36rem;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(3rem, 14vw, 4.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.error-title {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  color: var(--navy);
}

.error-lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

@media (max-width: 899px) {
  .error-page-inner {
    text-align: center;
  }

  .error-actions {
    justify-content: center;
  }
}

/* Hero panel */
.hero-aside {
  margin: 0;
}

.hero-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: #fafbfc;
}

.hero-panel-label {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
}

.hero-panel-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 8px;
  border-radius: 6px;
}

.hero-court {
  padding: 16px 16px 0;
}

.hero-court-inner {
  position: relative;
  height: 120px;
  border-radius: 10px;
  background: linear-gradient(145deg, #e8f4f3 0%, #f0fdfa 50%, #e0f2f1 100%);
  border: 1px solid #c5e8e4;
  overflow: hidden;
}

.hero-court-line--net {
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 2px;
  margin-left: -1px;
  background: linear-gradient(
    180deg,
    rgba(15, 118, 110, 0.2) 0%,
    rgba(255, 255, 255, 0.85) 48%,
    rgba(255, 255, 255, 0.85) 52%,
    rgba(15, 118, 110, 0.2) 100%
  );
  border-radius: 1px;
  opacity: 0.88;
}

.hero-volleyball {
  position: absolute;
  left: 50%;
  top: 14px;
  margin-left: -22px;
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 6px 10px rgba(15, 41, 66, 0.1));
  pointer-events: none;
}

.hero-volleyball svg {
  display: block;
  width: 100%;
  height: auto;
}

.hero-court-zone {
  position: absolute;
  top: 12px;
  bottom: 12px;
  width: calc(50% - 10px);
  border: 1px dashed rgba(15, 118, 110, 0.35);
  border-radius: 6px;
}

.hero-court-zone--a {
  left: 10px;
}

.hero-court-zone--b {
  right: 10px;
}

@keyframes bottom-app-nav-enter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0 16px;
  border-top: 1px solid var(--border);
}

.hero-stat {
  padding: 14px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat dt {
  margin: 0 0 4px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-stat dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.hero-note {
  margin: 0;
  padding: 14px 16px 16px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
  border-top: 1px solid var(--border);
  background: #fafbfc;
}

.hero-note strong {
  color: var(--navy);
}

/* Section heads */
.section-head {
  margin-bottom: 20px;
}

.section-head h2 {
  margin: 0 0 6px;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.2;
}

.section-head.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.section-actions {
  display: flex;
  gap: 10px;
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.step {
  display: flex;
  gap: 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.step-no {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  flex-shrink: 0;
}

.step h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.step p {
  margin: 0 0 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.step-payment-note {
  margin: 10px 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.step-payment-note strong {
  color: var(--navy);
}

#ornek-mesaj {
  scroll-margin-top: 88px;
}

@media (min-width: 900px) {
  #ornek-mesaj {
    scroll-margin-top: 96px;
  }
}

/* Katılım — örnek WhatsApp mesajı */
.wa-message-example {
  margin: 0 auto 20px;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 118, 110, 0.22);
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.06) 0%, var(--bg-elevated) 48%);
  box-shadow: var(--shadow-sm);
  max-width: 40rem;
}

.wa-message-example__label {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.wa-message-example__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--navy);
  font-style: italic;
}

.wa-message-example__hint {
  margin: 12px 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
}

/* Örnek mesaj — adım içinde kompakt */
.wa-message-example--inline {
  margin: 10px 0 0;
  padding: 10px 12px;
  max-width: none;
  border-radius: var(--radius);
}

.wa-message-example--inline .wa-message-example__label {
  margin: 0 0 6px;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
}

.wa-message-example--inline .wa-message-example__text {
  font-size: 0.875rem;
  line-height: 1.5;
}

.wa-message-example--inline .wa-message-example__hint {
  margin: 8px 0 0;
  font-size: 0.75rem;
  line-height: 1.4;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
}

.card p {
  margin: 0 0 12px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.card-list {
  margin: 0 0 16px;
  padding: 0 0 0 18px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.card-list li {
  margin: 6px 0;
}

/* Lokasyon: merkez hizalı kartta disk listesi kayıyordu — tik + flex */
.location-copy .card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
}

.location-copy .card-list li {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}

.location-copy .card-list li::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-top: 0.45em;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-soft);
}

/* Slots */
.slot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}

.slot-time {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--navy);
}

.slot-meta {
  font-size: 0.8125rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.price-card {
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-soft);
}

.price-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}

.price-amount {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 10px 0 0;
  color: var(--navy);
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.feature {
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.feature h3 {
  margin: 0 0 6px;
  font-size: 0.9375rem;
}

.feature p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Location */
.location-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.location-copy h3 {
  margin: 0 0 6px;
  font-size: 1.125rem;
}

.location-map {
  min-height: 220px;
}

.map-embed {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #e8eef4;
  box-shadow: var(--shadow-sm);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

@media (min-width: 900px) {
  .map-embed iframe {
    height: 320px;
  }
}

/* TikTok + Instagram — kompakt grid (profil hissi) */
.social-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.social-block {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}

.social-block h3 {
  margin: 0;
  font-size: 1.0625rem;
}

.social-block-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.social-fallback {
  margin: 0 0 12px;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.social-fallback code {
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 6px;
  background: #f1f5f9;
  border: 1px solid var(--border);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
}

.social-grid--single {
  grid-template-columns: 1fr;
  max-width: 140px;
}

.social-grid-cell {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.social-grid-cell:hover {
  transform: scale(1.03);
  z-index: 1;
  box-shadow: 0 6px 16px rgba(15, 41, 66, 0.12);
  border-color: rgba(15, 118, 110, 0.35);
}

.social-grid-cell:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.social-grid-cell__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #f8fafc, #e2e8f0);
}

.social-grid-cell--ig .social-grid-cell__bg {
  background: linear-gradient(145deg, #fdf4ff 0%, #fce7f3 40%, #fef3c7 100%);
}

.social-grid-cell--tt .social-grid-cell__bg {
  background: linear-gradient(145deg, #ecfdf5 0%, #ccfbf1 45%, #e0f2fe 100%);
}

.social-grid-cell__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-grid-cell__img--fail {
  display: none !important;
}

.social-grid-cell__ig,
.social-grid-cell__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  pointer-events: none;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.45));
}

.social-grid-cell--tt .social-grid-cell__play {
  color: rgba(255, 255, 255, 0.95);
}

.social-grid-cell--ig .social-grid-cell__ig {
  color: rgba(255, 255, 255, 0.92);
}

.social-grid-cell__label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  color: var(--navy);
  pointer-events: none;
}

/* FAQ — açılır kapanır animasyon */
.faq {
  display: grid;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(15, 118, 110, 0.35);
  box-shadow: 0 4px 14px rgba(15, 41, 66, 0.06);
}

.faq-item summary {
  cursor: pointer;
  position: relative;
  padding: 14px 42px 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -6px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item[open] summary::after {
  transform: rotate(225deg);
  margin-top: -2px;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item[open] .faq-body {
  max-height: 480px;
}

.faq-body-inner {
  padding: 0 16px 14px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
  .faq-body {
    transition: none;
  }

  .faq-item summary::after {
    transition: none;
  }
}

/* Rules */
.rules {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.rule {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.rule h3 {
  margin: 0 0 6px;
  font-size: 0.9375rem;
}

.rule p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* CTA block */
.section-cta {
  padding: 40px 0 56px;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.cta-copy {
  padding: 24px 20px;
}

.cta-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.cta-copy p {
  margin: 0 0 16px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cta-mini {
  margin-top: 14px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.cta-mini a {
  color: var(--accent);
  text-decoration: none;
}

.cta-mini a:hover {
  text-decoration: underline;
}

/* CTA sağ panel — salon üstü görünümü, tek odak */
.cta-visual {
  display: block;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: #f8fafc;
  min-height: 200px;
}

.cta-visual-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.06) 0%, transparent 45%),
    linear-gradient(225deg, rgba(15, 41, 66, 0.04) 0%, transparent 40%),
    repeating-linear-gradient(
      -12deg,
      transparent 0,
      transparent 14px,
      rgba(15, 118, 110, 0.04) 14px,
      rgba(15, 118, 110, 0.04) 15px
    );
  pointer-events: none;
}

.cta-visual-frame {
  position: relative;
  z-index: 1;
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-court {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  border-radius: 12px;
  filter: drop-shadow(0 6px 16px rgba(15, 41, 66, 0.08));
}

.cta-visual-tagline {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-align: center;
  opacity: 0.9;
}

/* Footer */
.site-footer {
  margin-top: 8px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #fafbfc 0%, #fff 32%);
}

.footer-wrap {
  padding: 40px 0 24px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.footer-about {
  max-width: 34rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 12px;
}

.footer-brand .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  font-size: 1rem;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
}

.footer-brand-sub {
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 500;
}

.footer-about-text {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.footer-nav-title {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
}

.footer-nav-list a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-nav-list a:hover {
  color: var(--accent);
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  margin: 0;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.footer-contact-link:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.footer-contact-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  flex-shrink: 0;
}

.footer-contact-icon--wa {
  background: rgba(37, 211, 102, 0.15);
  color: #128c7e;
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--muted);
}

.footer-to-top {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}

.footer-to-top:hover {
  text-decoration: underline;
}

.footer-credit {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.6875rem;
  color: var(--muted);
  line-height: 1.45;
}

.footer-credit-link {
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
}

.footer-credit-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Desktop */
@media (min-width: 900px) {
  .section {
    padding: 56px 0;
  }

  .header-cta {
    display: block;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: block;
    position: static;
  }

  .site-nav ul {
    flex-direction: row;
    gap: 2px;
  }

  .site-nav a {
    padding: 8px 10px;
    font-size: 0.8125rem;
  }

  .site-nav.is-open {
    display: block;
    position: static;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .hero {
    padding: 64px 0 56px;
    margin-top: 0;
    scroll-margin-top: 96px;
    text-align: left;
  }

  .hero-main {
    align-items: flex-start;
  }

  .hero-kicker {
    justify-content: flex-start;
  }

  .hero-title,
  .hero-lead {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-cta {
    justify-content: flex-start;
  }

  /* Uzun/kısa metin varyantları: kısa sadece masaüstünde gizlenir (aksi halde mobilde alttaki kural eziyordu) */
  .hero-lead-short {
    display: none;
  }

  .section-head {
    text-align: left;
  }

  .section-head.split {
    flex-direction: row;
    align-items: flex-end;
    text-align: left;
  }

  .section-actions {
    justify-content: flex-end;
  }

  .location-copy {
    text-align: left;
  }

  .location-copy .btn {
    margin-left: 0;
  }

  .footer-main {
    grid-template-columns: minmax(220px, 1.1fr) minmax(200px, 0.9fr) minmax(220px, 1fr);
    gap: 32px;
    align-items: start;
  }

  .footer-nav-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 40px;
    align-items: stretch;
  }

  .hero-title {
    max-width: 16ch;
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .slot-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .location-card {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .social-split {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .rules {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-card {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .cta-visual {
    border-top: 0;
    border-left: 1px solid var(--border);
    min-height: 100%;
    min-height: 220px;
  }

  .cta-copy {
    text-align: left;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .cta-mini {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
