:root {
  interpolate-size: allow-keywords;
  --bg: #FAFBFD;
  --surface: #FFFFFF;
  --surface-2: #F3F4F8;
  --ink: #2D3142;
  --ink-soft: #6B7084;
  --accent: #7B68EE;
  --accent-2: #EE6C7E;
  --line: rgba(45,49,66,0.12);
  --line-strong: rgba(45,49,66,0.22);
  --header-h: 72px;
  --max-w: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --font-heading: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: ui-monospace, 'Cascadia Code', 'Fira Code', monospace;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  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: var(--accent); text-decoration: none; transition: color 240ms; }
a:hover { color: var(--accent-2); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -0.012em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: #fff;
  padding: 8px 18px; border-radius: var(--radius-sm);
  z-index: 9999; font-weight: 700;
  transition: top 200ms;
}
.skip-link:focus { top: 12px; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(250,251,253,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  height: var(--header-h);
}
.scroll-progress {
  position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0;
  background: var(--accent);
  transition: none;
  z-index: 2;
}
.site-header.scrolled .scroll-progress { background: var(--accent); }

.site-header.scrolled {
  background: rgba(250,251,253,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
  padding: 0 clamp(16px, 4vw, 32px);
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  z-index: 1100;
}
.logo svg { width: 36px; height: 36px; flex-shrink: 0; }
.logo span { white-space: nowrap; }

.nav-desktop {
  display: flex; align-items: center; gap: 32px;
}
.nav-desktop a {
  position: relative;
  font-size: 0.9rem; font-weight: 500;
  color: var(--ink); text-decoration: none;
  padding: 4px 0;
  transition: color 240ms;
}
.nav-desktop a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 320ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }

.nav-desktop .nav-cta {
  background: var(--ink); color: var(--surface);
  padding: 10px 22px; border-radius: 50px;
  font-weight: 700; font-size: 0.88rem;
  transition: background 240ms, color 240ms, transform 240ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--accent); color: var(--surface); transform: translateY(-2px); }
.nav-desktop .nav-cta.is-active { color: var(--surface); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  z-index: 1100;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  position: relative;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--ink);
  position: absolute; left: 10px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }

.nav-toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-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;
}
.mobile-drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.mobile-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) 32px 32px;
  display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }

.drawer-close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  background: none; border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.4rem; line-height: 1;
  color: var(--ink); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms;
}
.drawer-close:hover { background: var(--surface-2); color: var(--accent); }

.mobile-drawer a {
  display: block;
  font-size: 1.1rem; font-weight: 500;
  color: var(--ink); text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color 240ms, padding-left 240ms;
}
.mobile-drawer a:hover, .mobile-drawer a.is-active { color: var(--accent); padding-left: 8px; }
.mobile-drawer .nav-cta-mobile {
  margin-top: 16px;
  background: var(--accent); color: #fff;
  text-align: center; padding: 14px 24px;
  border-radius: 50px; border-bottom: none;
  font-weight: 700;
}
.mobile-drawer .nav-cta-mobile:hover { background: var(--accent-2); color: #fff; }

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
}

/* ===== MAIN ===== */
main { padding-top: var(--header-h); }

/* ===== SECTIONS ===== */
.section {
  padding: clamp(48px, 8vw, 100px) 0;
}
.section--alt { background: var(--surface-2); }
.section--dark { background: var(--ink); color: var(--surface); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--surface); }
.section--dark .ink-soft { color: rgba(255,255,255,0.65); }

.eyebrow {
  font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-intro { max-width: 640px; margin-bottom: 48px; }
.section-intro p { color: var(--ink-soft); font-size: 1.05rem; }

/* ===== HERO / PLANLAYICI ===== */
.hero {
  padding: clamp(40px, 6vw, 80px) 0 clamp(48px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}

.hero-text .eyebrow { margin-bottom: 16px; }
.hero-text h1 { margin-bottom: 18px; }
.hero-text h1 .accent { color: var(--accent); }
.hero-text .sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--ink-soft); margin-bottom: 24px;
  max-width: 440px;
}

.trust-strip {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 20px;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 500;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 50px;
}
.trust-badge svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }

/* Dance silhouette area */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 420px;
}

.dance-silhouette {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.08;
  transition: opacity 600ms;
}
.dance-silhouette svg {
  width: 100%; height: 100%;
  max-width: 500px; max-height: 500px;
}
.dance-silhouette.active { opacity: 0.12; }

.hero-illustration {
  position: relative; z-index: 2;
  width: 100%; max-width: 480px;
}
.hero-illustration img {
  width: 100%; height: auto;
  border-radius: var(--radius);
}

/* Decorative dance dots */
.hero-decor {
  position: absolute; top: 20%; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle 2px at center, var(--accent) 50%, transparent 51%);
  background-size: 24px 24px;
  opacity: 0.15;
  animation: decorFloat 12s ease-in-out infinite;
}

@keyframes decorFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-8px, 12px) rotate(2deg); }
  50% { transform: translate(4px, -8px) rotate(-1deg); }
  75% { transform: translate(-4px, 6px) rotate(1.5deg); }
}

/* ===== CONFIGURATOR ===== */
.configurator {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: 0 4px 32px rgba(123,104,238,0.08);
  position: relative;
  z-index: 3;
}

.config-steps {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.config-step-indicator {
  display: flex; align-items: center; gap: 0;
  flex: 1;
}
.config-step-indicator:last-child .step-line { display: none; }

.step-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.78rem; font-weight: 500;
  color: var(--ink-soft);
  transition: all 320ms cubic-bezier(.2,.7,.2,1);
  flex-shrink: 0;
  background: var(--bg);
}
.config-step-indicator.active .step-circle,
.config-step-indicator.completed .step-circle {
  background: var(--accent); color: #fff;
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(123,104,238,0.3);
}
.config-step-indicator.completed .step-circle { background: var(--accent-2); border-color: var(--accent-2); }

.step-line {
  flex: 1; height: 2px;
  background: var(--line);
  margin: 0 6px;
  position: relative;
  overflow: hidden;
}
.step-line::after {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--accent);
  transition: width 500ms cubic-bezier(.2,.7,.2,1);
}
.config-step-indicator.completed .step-line::after { width: 100%; }

.step-label {
  display: none;
  font-size: 0.72rem; color: var(--ink-soft);
  margin-top: 4px;
}

.config-panel {
  display: none;
  animation: panelIn 400ms cubic-bezier(.2,.7,.2,1) forwards;
}
.config-panel.active { display: block; }

@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.config-panel h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.config-panel .panel-desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

/* Dance type selection */
.dance-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.dance-option {
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  transition: all 280ms cubic-bezier(.2,.7,.2,1);
  display: flex; align-items: center; gap: 12px;
}
.dance-option:hover { border-color: var(--accent); transform: translateY(-2px); }
.dance-option.selected {
  border-color: var(--accent);
  background: rgba(123,104,238,0.06);
  box-shadow: 0 2px 12px rgba(123,104,238,0.12);
}
.dance-option .dance-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  color: var(--accent);
}
.dance-option .dance-name {
  font-weight: 700; font-size: 0.92rem;
  display: block;
}
.dance-option .dance-sub {
  font-size: 0.76rem; color: var(--ink-soft);
}

/* Level/Duration selects */
.config-select-group {
  display: flex; flex-direction: column; gap: 12px;
}
.config-radio-row {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.config-radio {
  flex: 1; min-width: 120px;
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  text-align: center;
  transition: all 280ms cubic-bezier(.2,.7,.2,1);
  font-weight: 500; font-size: 0.92rem;
}
.config-radio:hover { border-color: var(--accent); transform: translateY(-2px); }
.config-radio.selected {
  border-color: var(--accent);
  background: rgba(123,104,238,0.06);
}
.config-radio small {
  display: block; font-size: 0.76rem;
  color: var(--ink-soft); font-weight: 400;
  margin-top: 4px;
}

/* Date picker in config */
.config-date {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 240ms;
}
.config-date:focus { outline: none; border-color: var(--accent); }

/* Summary panel */
.config-summary {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-label { color: var(--ink-soft); }
.summary-value { font-weight: 700; }

.summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0 0;
  margin-top: 8px;
  border-top: 2px solid var(--accent);
}
.summary-total .label { font-weight: 700; font-size: 1rem; }
.summary-total .price {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--accent);
}
.summary-total .price small {
  font-size: 0.7rem;
  color: var(--ink-soft);
  font-family: var(--font-body);
}

.config-nav {
  display: flex; gap: 10px; margin-top: 20px;
}
.config-nav .btn { flex: 1; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 240ms, color 240ms, transform 240ms, box-shadow 240ms, border-color 240ms;
  text-decoration: none;
  line-height: 1.3;
}

.btn-primary { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent); color: var(--surface);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123,104,238,0.3);
}

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink);
  border-color: var(--ink);
}

.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover, .btn-accent:focus-visible {
  background: var(--accent-2); color: #fff;
  border-color: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238,108,126,0.3);
}

.btn-outline-accent { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline-accent:hover, .btn-outline-accent:focus-visible {
  background: var(--accent); color: #fff;
  transform: translateY(-2px);
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Focus ring */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===== 3 ADIMDA (#nasil) ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  counter-reset: step-counter;
}

.step-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  text-align: center;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms cubic-bezier(.2,.7,.2,1);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(123,104,238,0.12);
}

.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 1.1rem; font-weight: 500;
  margin: 0 auto 18px;
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute; top: 50%; right: -100%;
  width: 80%; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  pointer-events: none;
}
.step-card:last-child .step-num::after { display: none; }

.step-icon {
  width: 44px; height: 44px;
  color: var(--accent);
  margin: 0 auto 14px;
}

.step-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step-card p { font-size: 0.9rem; color: var(--ink-soft); }

/* ===== DANS TÜRLERİ TABS ===== */
.tabs-nav {
  display: flex; gap: 4px;
  border-bottom: 2px solid var(--line);
  margin-bottom: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tab-btn {
  background: none; border: none;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color 240ms;
}
.tab-btn::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.active { color: var(--accent); }
.tab-btn.active::after { transform: scaleX(1); }

.tab-panel { display: none; animation: panelIn 400ms forwards; }
.tab-panel.active { display: block; }

.tab-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}

.tab-text h3 { margin-bottom: 12px; }
.tab-text p { color: var(--ink-soft); margin-bottom: 16px; font-size: 0.95rem; }
.tab-features {
  list-style: none; padding: 0;
}
.tab-features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem; color: var(--ink-soft);
}
.tab-features li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.tab-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  aspect-ratio: 4/3;
}
.tab-visual img { width: 100%; height: 100%; object-fit: cover; }

.dance-pattern {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.dance-pattern svg {
  width: 70%; height: 70%;
  opacity: 0.1;
}

/* ===== YORUMLAR ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  position: relative;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms cubic-bezier(.2,.7,.2,1);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(123,104,238,0.1);
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 16px; left: 24px;
  font-size: 4rem; line-height: 1;
  color: var(--accent); opacity: 0.15;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.testimonial-meta {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.testimonial-info .name { font-weight: 700; font-size: 0.9rem; }
.testimonial-info .detail { font-size: 0.78rem; color: var(--ink-soft); }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 16px;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms cubic-bezier(.2,.7,.2,1);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(123,104,238,0.12);
}
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(123,104,238,0.12);
}
.price-card.featured::before {
  content: 'Popüler';
  position: absolute; top: -12px; right: 24px;
  background: var(--accent-2);
  color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 4px 14px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.08em;
}

.price-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.price-card .price-sub { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 16px; }
.price-card .price-amount {
  font-family: var(--font-mono);
  font-size: 1.8rem; font-weight: 500;
  color: var(--accent);
  margin-bottom: 4px;
}
.price-card .price-amount small {
  font-size: 0.7rem;
  color: var(--ink-soft);
  font-family: var(--font-body);
}
.price-card .price-period {
  font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 20px;
}

.price-includes, .price-excludes {
  list-style: none; padding: 0; margin: 0 0 8px;
}
.price-includes li, .price-excludes li {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 5px 0;
  font-size: 0.85rem;
}
.price-includes li svg { color: var(--accent); flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; }
.price-excludes li { color: var(--ink-soft); }
.price-excludes li svg { color: var(--accent-2); flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; }

.price-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 12px;
}

/* ===== PROCESS ===== */
.process-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.process-timeline::before {
  content: '';
  position: absolute; left: 24px; top: 0; bottom: 0;
  width: 2px; background: var(--line);
}

.process-step {
  position: relative;
  padding-left: 64px;
  padding-bottom: clamp(28px, 4vw, 44px);
}
.process-step:last-child { padding-bottom: 0; }

.process-dot {
  position: absolute; left: 12px; top: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  z-index: 2;
}
.process-step:nth-child(even) .process-dot { background: var(--accent-2); }

.process-time {
  font-family: var(--font-mono);
  font-size: 0.72rem; font-weight: 500;
  color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.process-step h4 { font-size: 1.05rem; margin-bottom: 6px; }
.process-step p { font-size: 0.88rem; color: var(--ink-soft); }

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

details.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  background: var(--surface);
  transition: box-shadow 280ms;
}
details.faq-item:hover {
  box-shadow: 0 4px 16px rgba(123,104,238,0.06);
}

details.faq-item > summary {
  padding: 18px clamp(18px, 3vw, 28px);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary::after {
  content: '+';
  font-size: 1.3rem; font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
}
details.faq-item[open] > summary::after {
  transform: rotate(45deg);
}

details.faq-item > .faq-body {
  height: 0;
  padding: 0 clamp(18px, 3vw, 28px);
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
details.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 22px;
}

.faq-body p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

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

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}

.contact-channels {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.contact-channel-icon {
  width: 20px; height: 20px;
  color: var(--ink-soft);
  transition: color 240ms cubic-bezier(.4,0,.2,1), transform 240ms cubic-bezier(.4,0,.2,1);
  margin-top: 2px;
}
.contact-channel-row {
  display: contents;
  cursor: default;
}
.contact-channel-row:hover .contact-channel-icon {
  color: var(--accent);
  transform: scale(1.08);
}
.contact-channel-text {
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
}
.contact-channel-row:hover .contact-channel-text {
  transform: translateX(4px);
}
.channel-label {
  font-weight: 700; font-size: 0.88rem;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}
.channel-value {
  font-size: 0.88rem;
  color: var(--ink-soft);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.channel-value a { color: var(--accent); }

/* Form fields */
.form-stack {
  display: flex; flex-direction: column; gap: 16px;
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.82rem; font-weight: 700;
  color: var(--ink);
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(123,104,238,0.12);
}
.field textarea { min-height: 120px; resize: vertical; }

.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}

.kvkk {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.82rem; color: var(--ink-soft);
  flex-direction: row;
}
.kvkk label { font-weight: 400; }

.honeypot { position: absolute; left: -9999px; opacity: 0; }

/* ===== COUNTERS ===== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 32px);
  padding: clamp(32px, 5vw, 56px) 0;
}

.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  color: var(--accent);
  display: block;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: clamp(48px, 6vw, 72px) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(24px, 3vw, 48px);
  padding-bottom: clamp(32px, 5vw, 48px);
}

.footer-brand p { font-size: 0.88rem; margin-top: 14px; line-height: 1.6; max-width: 300px; }
.footer-brand .logo { color: #fff; margin-bottom: 4px; }

.footer-col h4 {
  color: #fff; font-size: 0.88rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  transition: color 240ms, padding-left 240ms;
}
.footer-col a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); margin-top: 3px; }
.footer-contact-item a { display: inline; padding: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 0.78rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); display: inline; padding: 0; }
.footer-bottom a:hover { color: var(--accent); }
.footer-legal { display: flex; gap: 18px; 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);
  padding: 20px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

.cookie-banner h3 { font-size: 0.95rem; margin-bottom: 6px; }
.cookie-banner p { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 16px; line-height: 1.6; }

.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: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  border: 2px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  transition: background 240ms, color 240ms, border-color 240ms;
}
.cookie-actions button:hover {
  border-color: var(--ink);
  background: var(--surface);
  color: var(--ink);
}
.cookie-actions button[data-consent="accept"] {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.cookie-actions button[data-consent="accept"]:hover {
  background: var(--accent-2); color: #fff; border-color: var(--accent-2);
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* Stagger */
.reveal[style*="--i:1"] { transition-delay: calc(1 * 80ms); }
.reveal[style*="--i:2"] { transition-delay: calc(2 * 80ms); }
.reveal[style*="--i:3"] { transition-delay: calc(3 * 80ms); }
.reveal[style*="--i:4"] { transition-delay: calc(4 * 80ms); }
.reveal[style*="--i:5"] { transition-delay: calc(5 * 80ms); }
.reveal[style*="--i:6"] { transition-delay: calc(6 * 80ms); }

/* ===== DANCE-SPECIFIC ANIMATIONS ===== */

/* Rhythm pulse on accent elements */
@keyframes rhythmPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(123,104,238,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(123,104,238,0); }
}
.step-num { animation: rhythmPulse 3s ease-in-out infinite; }

/* Graceful spin on dance icons */
@keyframes gracefulSpin {
  0% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(6deg) scale(1.02); }
  50% { transform: rotate(0deg) scale(1); }
  75% { transform: rotate(-6deg) scale(1.02); }
  100% { transform: rotate(0deg) scale(1); }
}
.dance-option:hover .dance-icon { animation: gracefulSpin 1.5s ease-in-out; }

/* Step-pattern footprints */
@keyframes stepFade {
  0%, 100% { opacity: 0.06; }
  50% { opacity: 0.14; }
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  background-image:
    radial-gradient(ellipse 8px 12px at 30% 70%, var(--accent) 0%, transparent 100%),
    radial-gradient(ellipse 8px 12px at 35% 60%, var(--accent) 0%, transparent 100%),
    radial-gradient(ellipse 8px 12px at 55% 45%, var(--accent-2) 0%, transparent 100%),
    radial-gradient(ellipse 8px 12px at 60% 35%, var(--accent-2) 0%, transparent 100%),
    radial-gradient(ellipse 8px 12px at 70% 25%, var(--accent) 0%, transparent 100%);
  opacity: 0.08;
  animation: stepFade 8s ease-in-out infinite;
  pointer-events: none;
}

/* Breathing glow on configurator */
@keyframes breatheGlow {
  0%, 100% { box-shadow: 0 4px 32px rgba(123,104,238,0.08); }
  50% { box-shadow: 0 4px 32px rgba(123,104,238,0.18); }
}
.configurator { animation: breatheGlow 6s ease-in-out infinite; }

/* Elegant sway for dance silhouettes */
@keyframes elegantSway {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  33% { transform: translateX(6px) rotate(1deg); }
  66% { transform: translateX(-6px) rotate(-1deg); }
}
.dance-silhouette.active svg {
  animation: elegantSway 10s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .step-num,
  .configurator,
  .hero-visual::before,
  .dance-silhouette.active svg {
    animation: none !important;
  }
  .dance-option:hover .dance-icon { animation: none !important; }
}

/* ===== TABLE SCROLL ===== */
.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: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table { border-collapse: collapse; width: 100%; }
th, td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--line);
}
th { font-weight: 700; background: var(--surface-2); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: clamp(48px, 8vw, 80px) 0 clamp(32px, 5vw, 48px);
  text-align: center;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--ink-soft); max-width: 560px; margin: 0 auto; }

/* ===== CONTENT PAGE ===== */
.content-page {
  padding: clamp(32px, 5vw, 56px) 0 clamp(48px, 8vw, 80px);
}
.content-page .container { max-width: 740px; }
.content-page h2 { margin: 32px 0 12px; font-size: 1.4rem; }
.content-page h3 { margin: 24px 0 8px; font-size: 1.15rem; }
.content-page p { margin-bottom: 16px; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.7; }
.content-page ul, .content-page ol { margin: 0 0 16px 20px; color: var(--ink-soft); font-size: 0.92rem; }
.content-page li { margin-bottom: 6px; }
.content-page a { text-decoration: underline; }

/* ===== THANK YOU ===== */
.thank-you {
  text-align: center;
  padding: clamp(80px, 15vw, 180px) 0;
}
.thank-you h1 { margin-bottom: 16px; }
.thank-you p { color: var(--ink-soft); margin-bottom: 32px; max-width: 440px; margin-left: auto; margin-right: auto; }

/* ===== 404 ===== */
.not-found {
  text-align: center;
  padding: clamp(80px, 15vw, 180px) 0;
}
.not-found .big-404 {
  font-family: var(--font-mono);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 500;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}
.not-found h1 { margin: 16px 0; }
.not-found p { color: var(--ink-soft); margin-bottom: 32px; }

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms cubic-bezier(.2,.7,.2,1);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(123,104,238,0.1);
}
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700;
  margin-bottom: 16px;
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .role { font-size: 0.82rem; color: var(--accent); font-weight: 500; margin-bottom: 12px; }
.team-card p { font-size: 0.88rem; color: var(--ink-soft); }

/* ===== CANCELLATION TABLE ===== */
.cancel-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.cancel-tier {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
}
.cancel-tier .days {
  font-family: var(--font-mono);
  font-size: 1.2rem; font-weight: 500;
  color: var(--accent);
  margin-bottom: 6px;
}
.cancel-tier .policy { font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; }
.cancel-tier .detail { font-size: 0.78rem; color: var(--ink-soft); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 300px; margin-top: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step-num::after { display: none; }
  .tab-content-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .cancel-tiers { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  :root { --header-h: 64px; }
  .hero { padding: 24px 0 40px; }
  .dance-options { grid-template-columns: 1fr; }
  .config-radio-row { flex-direction: column; }
  .config-radio { min-width: unset; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  body { font-size: 15px; }
}

@media (max-width: 430px) {
  .configurator { padding: 16px; }
  .step-circle { width: 28px; height: 28px; font-size: 0.72rem; }
}

@media (max-width: 360px) {
  .cookie-actions { flex-direction: column; }
  .cookie-actions button { min-width: unset; }
  .trust-strip { flex-direction: column; }
}

/* Print */
@media print {
  .site-header, .cookie-banner, .mobile-drawer, .mobile-drawer-backdrop, .nav-toggle { display: none !important; }
  main { padding-top: 0 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  body { color: #000; background: #fff; }
}
