:root {
  --bg: #1A1A2E;
  --surface: #2D2D44;
  --surface-2: #3A3A55;
  --ink: #EAEAEA;
  --ink-soft: #B8B8CC;
  --accent: #FF8C42;
  --accent-2: #FFD166;
  --line: rgba(234,234,234,0.12);
  --line-strong: rgba(234,234,234,0.25);
  --header-h: 72px;
  --container: 1240px;
  --radius: 10px;
  interpolate-size: allow-keywords;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Bitter', Georgia, serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  letter-spacing: 0;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

html, body { margin: 0; overflow-x: hidden; max-width: 100vw; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--accent-2); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: var(--bg);
  padding: 8px 16px;
  border-radius: 4px;
  z-index: 10000;
  font-weight: 700;
}
.skip-link:focus { top: 8px; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(26, 26, 46, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.site-header.scrolled {
  background: rgba(26, 26, 46, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}
.logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.logo span { color: var(--accent); }

/* Nav desktop */
.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a {
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover,
.nav-desktop a.is-active { color: var(--ink); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }

.nav-desktop .nav-cta {
  background: var(--accent);
  color: var(--bg);
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent-2);
  color: var(--bg);
  transform: translateY(-2px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 44px; height: 44px;
  background: none; border: none;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
  position: absolute;
  left: 10px;
}
.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[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); top: 21px; }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); top: 21px; }

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
}

/* ===== DRAWER ===== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: 100px 32px 40px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color 200ms, padding-left 200ms;
}
.drawer a:hover,
.drawer a.is-active { color: var(--accent); padding-left: 8px; }
.drawer .drawer-cta {
  display: inline-block;
  margin-top: 24px;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
  width: 100%;
}
.drawer .drawer-cta:hover { background: var(--accent-2); color: var(--bg); }

/* ===== MAIN ===== */
main { padding-top: var(--header-h); }
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ===== HERO ===== */
.hero {
  padding: clamp(60px, 10vw, 120px) 0 clamp(40px, 8vw, 80px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-left { position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent-word { color: var(--accent); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 36px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1), transform 180ms, color 240ms;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-2);
  color: var(--bg);
  transform: translateY(-2px);
}
.btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 14px 28px;
  border-radius: 6px;
  border: 1px solid var(--line-strong);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 240ms, border-color 240ms, color 240ms, transform 180ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-ghost:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.trust-badge svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }

/* Hero right gradient block */
.hero-right {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 400px;
}
.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 60%, #FF6B35 100%);
  border-radius: var(--radius);
  animation: breathe 8s ease-in-out infinite;
  z-index: 1;
  opacity: 0.78;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.72; }
  50% { transform: scale(1.02); opacity: 0.85; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-gradient { animation: none; }
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: clamp(32px, 5vw, 48px);
  height: 100%;
  align-content: center;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--bg);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(26,26,46,0.75);
  font-family: 'Sora', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { min-height: 260px; }
}

/* ===== SECTIONS COMMON ===== */
section {
  padding: clamp(60px, 10vw, 100px) 0;
}
.section-eyebrow {
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-desc {
  color: var(--ink-soft);
  max-width: 600px;
  margin-bottom: 48px;
  font-size: 1.05rem;
}

/* ===== TAKVIM (Timeline) ===== */
.takvim { background: var(--surface); border-radius: 0; }
.timeline-wrap {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 24px;
}
.timeline {
  display: flex;
  gap: 0;
  min-width: 900px;
  position: relative;
  padding: 40px 0 20px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 24px; right: 24px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 8px, transparent 8px, transparent 16px);
}
.timeline-day {
  flex: 1;
  min-width: 120px;
  text-align: center;
  position: relative;
  padding: 0 8px;
}
.timeline-marker {
  width: 16px; height: 16px;
  background: var(--accent);
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--surface), 0 0 0 6px var(--accent);
  animation: markerPulse 2s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 200ms);
}
@keyframes markerPulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--surface), 0 0 0 6px var(--accent); }
  50% { box-shadow: 0 0 0 4px var(--surface), 0 0 12px 6px rgba(255,140,66,0.35); }
}
@media (prefers-reduced-motion: reduce) {
  .timeline-marker { animation: none; }
}
.timeline-day-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.timeline-slots {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.timeline-slot {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 0.75rem;
  color: var(--ink-soft);
  transition: border-color 240ms, transform 180ms;
}
.timeline-slot:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.timeline-slot strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 2px;
}

/* ===== KAMPLAR ===== */
.kamp-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
}
.kamp-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 32px);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms;
}
.kamp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(255,140,66,0.18);
}
.kamp-date-block {
  text-align: center;
  background: var(--bg);
  padding: 16px;
  border-radius: 8px;
  min-width: 80px;
}
.kamp-date-month {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.kamp-date-day {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
}
.kamp-info h3 { margin-bottom: 6px; font-size: 1.2rem; }
.kamp-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.kamp-meta span { display: inline-flex; align-items: center; gap: 4px; }
.kamp-meta svg { width: 14px; height: 14px; color: var(--accent); }
.kamp-price {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--accent-2);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .kamp-card { grid-template-columns: 1fr; gap: 16px; }
  .kamp-date-block { justify-self: start; }
  .kamp-price { justify-self: start; }
}

/* ===== ATOLYELER ===== */
.atolye-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.atolye-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms, border-color 240ms;
  position: relative;
  overflow: hidden;
}
.atolye-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.atolye-card:hover::before { transform: scaleX(1); }
.atolye-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(255,140,66,0.15);
  border-color: var(--accent);
}
.atolye-icon {
  width: 48px; height: 48px;
  background: rgba(255,140,66,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.atolye-icon svg { width: 24px; height: 24px; color: var(--accent); }
.atolye-card h3 { margin-bottom: 8px; }
.atolye-card p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 12px; }
.atolye-tag {
  display: inline-block;
  background: var(--bg);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
}

@media (max-width: 640px) {
  .atolye-grid { grid-template-columns: 1fr; }
}

/* ===== FIYAT ===== */
.fiyat { background: var(--surface); }
.fiyat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.fiyat-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
  position: relative;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms;
}
.fiyat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -12px rgba(255,140,66,0.18);
}
.fiyat-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.fiyat-card.featured::before {
  content: 'Popüler';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.fiyat-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.fiyat-price {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--accent);
  margin-bottom: 4px;
}
.fiyat-price span { font-size: 0.5em; font-weight: 600; color: var(--ink-soft); }
.fiyat-period {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.fiyat-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}
.fiyat-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.fiyat-features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}
.fiyat-features .excluded { opacity: 0.5; text-decoration: line-through; }
.fiyat-features .excluded::before { background: var(--ink-soft); }
.fiyat-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 32px;
  font-style: italic;
}

@media (max-width: 768px) {
  .fiyat-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ===== KAYIT (Form) ===== */
.kayit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.kayit-info h2 { margin-bottom: 16px; }
.kayit-info p { color: var(--ink-soft); margin-bottom: 24px; }
.kayit-steps {
  list-style: none;
  counter-reset: step;
}
.kayit-steps li {
  counter-increment: step;
  padding: 12px 0;
  padding-left: 40px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.kayit-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 12px;
  width: 26px; height: 26px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--ink);
  font-family: 'Bitter', Georgia, serif;
  font-size: 0.92rem;
  transition: border-color 200ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,140,66,0.15);
}
.field textarea { min-height: 100px; resize: vertical; }
.field select { cursor: pointer; }

.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.field-checkbox label {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .kayit-grid { grid-template-columns: 1fr; }
}

/* ===== PROCESS (Nasıl Çalışıyoruz) ===== */
.process-timeline {
  position: relative;
  max-width: 700px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 20px; top: 0; bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--accent) 0, var(--accent) 8px, transparent 8px, transparent 16px);
}
.process-step {
  position: relative;
  padding-left: 56px;
  padding-bottom: 36px;
}
.process-step:last-child { padding-bottom: 0; }
.process-dot {
  position: absolute;
  left: 12px; top: 4px;
  width: 18px; height: 18px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--bg);
}
.process-step h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.process-step .step-time {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.process-step p { color: var(--ink-soft); font-size: 0.88rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  opacity: 0.4;
  position: absolute;
  top: 16px; left: 20px;
}
.testimonial-text {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 16px;
  padding-top: 20px;
}
.testimonial-author {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ink);
}
.testimonial-meta {
  font-size: 0.75rem;
  color: var(--ink-soft);
}

@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq-list { max-width: 740px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  list-style: none;
  transition: color 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item > .faq-body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 20px;
}
.faq-body p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 72px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { color: var(--ink-soft); font-size: 0.88rem; max-width: 280px; }
.footer-col h4 {
  font-size: 0.85rem;
  margin-bottom: 14px;
  color: var(--ink);
}
.footer-col a {
  display: block;
  color: var(--ink-soft);
  font-size: 0.85rem;
  padding: 4px 0;
  transition: color 200ms, padding-left 200ms;
}
.footer-col a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.footer-bottom a { color: var(--ink-soft); }
.footer-bottom a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.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; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  box-shadow: 0 16px 48px -8px rgba(0,0,0,.4);
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner h4 {
  font-size: 0.92rem;
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.5;
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-actions button {
  padding: 10px 18px;
  border-radius: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  transition: background 200ms, color 200ms, transform 180ms;
  min-height: 44px;
}
.cookie-actions .cookie-accept {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.cookie-actions .cookie-accept:hover { background: var(--accent-2); color: var(--bg); transform: translateY(-1px); }
.cookie-actions .cookie-reject {
  background: transparent;
  color: var(--ink);
}
.cookie-actions .cookie-reject:hover { background: var(--surface-2); color: var(--ink); transform: translateY(-1px); }
.cookie-actions .cookie-settings {
  background: transparent;
  color: var(--ink-soft);
}
.cookie-actions .cookie-settings:hover { background: var(--surface-2); color: var(--ink); transform: translateY(-1px); }

/* ===== COUNTER-UP ===== */
.counter-up {
  font-variant-numeric: tabular-nums;
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  padding: clamp(40px, 6vw, 72px) 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 8px; }
.page-header p { color: var(--ink-soft); }

.page-content {
  padding: clamp(40px, 6vw, 72px) 0;
}
.page-content h2 { margin-top: 32px; margin-bottom: 16px; }
.page-content h3 { margin-top: 24px; margin-bottom: 12px; }
.page-content p { color: var(--ink-soft); margin-bottom: 16px; max-width: 720px; }
.page-content ul, .page-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--ink-soft);
}
.page-content li { margin-bottom: 8px; }

/* ===== CONTACT ===== */
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 600px;
}
.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 10px;
  border-radius: 8px;
  transition: background 240ms cubic-bezier(.4,0,.2,1);
}
.contact-row:hover { background: var(--surface-2); }
.contact-row:hover .contact-icon { color: var(--accent); transform: scale(1.08); }
.contact-row:hover .contact-text { transform: translateX(4px); }
.contact-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-text {
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
}
.contact-text strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.contact-text span,
.contact-text a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  word-break: break-all;
}

.iletisim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 768px) {
  .iletisim-grid { grid-template-columns: 1fr; }
}

/* ===== 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 {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}
th {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  background: var(--surface);
}
td { color: var(--ink-soft); }

/* ===== THANK YOU ===== */
.thankyou-section {
  text-align: center;
  padding: clamp(80px, 14vw, 160px) 0;
}
.thankyou-section h1 { margin-bottom: 16px; color: var(--accent); }
.thankyou-section p { color: var(--ink-soft); margin-bottom: 32px; font-size: 1.1rem; }

/* ===== 404 ===== */
.notfound-section {
  text-align: center;
  padding: clamp(80px, 14vw, 160px) 0;
}
.notfound-section h1 { font-size: clamp(4rem, 12vw, 8rem); color: var(--accent); margin-bottom: 16px; }
.notfound-section p { color: var(--ink-soft); margin-bottom: 32px; }

/* ===== YOGA-THEMED ANIMATIONS ===== */
@keyframes lotusUnfold {
  0% { transform: scale(0.6) rotate(-8deg); opacity: 0; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes energyFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes zenFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes chakraGlow {
  0%, 100% { box-shadow: 0 0 8px rgba(255,140,66,0.2); }
  50% { box-shadow: 0 0 24px rgba(255,140,66,0.45); }
}
@media (prefers-reduced-motion: reduce) {
  @keyframes lotusUnfold { 0%, 100% { transform: none; opacity: 1; } }
  @keyframes energyFlow { 0%, 100% { background-position: 0% 50%; } }
  @keyframes zenFloat { 0%, 100% { transform: none; } }
  @keyframes chakraGlow { 0%, 100% { box-shadow: none; } }
}

.lotus-reveal {
  animation: lotusUnfold 800ms cubic-bezier(.2,.7,.2,1) both;
  animation-delay: calc(var(--i, 0) * 120ms);
}
.zen-float { animation: zenFloat 6s ease-in-out infinite; }
.chakra-glow { animation: chakraGlow 3s ease-in-out infinite; }

.atolye-icon { animation: chakraGlow 4s ease-in-out infinite; animation-delay: calc(var(--i, 0) * 500ms); }

/* Energy line decoration */
.energy-line {
  position: absolute;
  width: 120px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: energyFlow 3s ease-in-out infinite;
  background-size: 200% 100%;
  opacity: 0.4;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  width: 0;
  z-index: 1;
  pointer-events: none;
}

/* ===== DRAWER CLOSE ===== */

/* ===== FOCUS STYLES ===== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===== PRINT ===== */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle { display: none !important; }
  main { padding-top: 0; }
  body { background: #fff; color: #111; }
}

/* ========================================================
   VISUAL FIXES & ENHANCEMENTS
   ======================================================== */

/* --- Hamburger: thicker lines + visible container on mobile --- */
.nav-toggle span { height: 3px; }

@media (max-width: 1024px) {
  .nav-toggle {
    background: rgba(234,234,234,0.1);
    border: 1.5px solid rgba(234,234,234,0.3);
    border-radius: 8px;
  }
  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    background: rgba(255,140,66,0.18);
    border-color: rgba(255,140,66,0.5);
  }
}

/* --- Cookie: stronger Reddet, min-width touch target --- */
.cookie-actions button { min-width: 44px; }
.cookie-actions .cookie-reject {
  background: var(--surface-2);
  border-color: var(--ink-soft);
  color: var(--ink);
}
.cookie-actions .cookie-reject:hover {
  background: #4a4a65;
  border-color: var(--ink);
}

/* --- Legal/content pages: section dividers --- */
.page-content > .container > h2 {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.page-content > .container > h2:first-child {
  border-top: none;
  padding-top: 0;
}

/* --- Table scroll hint on mobile --- */
@media (max-width: 640px) {
  .table-scroll::after {
    content: '\2190  Yana kayd\0131 r  \2192';
    display: block;
    text-align: center;
    font-size: 0.7rem;
    color: var(--ink-soft);
    opacity: 0.6;
    padding: 8px 0 0;
    font-family: 'Sora', sans-serif;
  }
}

/* --- Warm glow hover: buttons --- */
.btn-primary {
  transition: background 240ms cubic-bezier(.4,0,.2,1), transform 180ms, color 240ms, box-shadow 280ms cubic-bezier(.2,.7,.2,1);
}
.btn-primary:hover, .btn-primary:focus-visible {
  box-shadow: 0 6px 24px -4px rgba(255,140,66,0.45);
}
.btn-ghost {
  transition: background 240ms, border-color 240ms, color 240ms, transform 180ms, box-shadow 280ms cubic-bezier(.2,.7,.2,1);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  box-shadow: 0 4px 16px -4px rgba(255,140,66,0.2);
}
.nav-desktop .nav-cta:hover {
  box-shadow: 0 4px 16px -4px rgba(255,140,66,0.4);
}
.drawer .drawer-cta:hover {
  box-shadow: 0 6px 20px -4px rgba(255,140,66,0.4);
}

/* --- Warm glow hover: cards --- */
.testimonial-card {
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms, border-color 280ms;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,140,66,0.2);
  box-shadow: 0 12px 32px -8px rgba(255,140,66,0.15);
}

.kamp-card:hover {
  box-shadow: 0 16px 40px -12px rgba(255,140,66,0.22), 0 0 0 1px rgba(255,140,66,0.06);
}

.fiyat-card:hover {
  box-shadow: 0 20px 48px -12px rgba(255,140,66,0.22), 0 0 0 1px rgba(255,140,66,0.06);
}

.timeline-slot:hover {
  box-shadow: 0 4px 14px -3px rgba(255,140,66,0.25);
}

.contact-row {
  transition: background 240ms cubic-bezier(.4,0,.2,1), box-shadow 240ms;
}
.contact-row:hover {
  box-shadow: 0 2px 12px -4px rgba(255,140,66,0.15);
}

.form-card {
  transition: border-color 280ms, box-shadow 280ms;
}
.form-card:hover {
  border-color: rgba(255,140,66,0.2);
  box-shadow: 0 8px 24px -8px rgba(255,140,66,0.1);
}

/* --- Yoga-themed micro-animations --- */
.process-dot {
  animation: chakraGlow 3s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 400ms);
}

.fiyat-card.featured {
  animation: chakraGlow 4s ease-in-out infinite;
}

/* --- Section images: radius + spacing --- */
#kamplar > .container > img,
#atolyeler > .container > img {
  border-radius: var(--radius);
  margin-bottom: 32px;
  margin-top: 8px;
}

/* --- FAQ: open-state left accent --- */
.faq-item {
  border-left: 3px solid transparent;
  padding-left: 16px;
  transition: border-color 240ms cubic-bezier(.2,.7,.2,1);
}
.faq-item[open] {
  border-left-color: var(--accent);
}

/* --- Smoother reveal easing --- */
.reveal {
  transition-timing-function: cubic-bezier(.16,.73,.3,1);
}

/* --- Reduced motion: new animations --- */
@media (prefers-reduced-motion: reduce) {
  .process-dot,
  .fiyat-card.featured { animation: none; }

  .testimonial-card:hover,
  .kamp-card:hover,
  .fiyat-card:hover,
  .atolye-card:hover {
    transform: none;
  }

  .faq-item { transition: none; }
}

@media (max-width: 768px) {
  .cookie-banner {
    max-width: none;
  }
}

/* ========================================================
   ITER-4: VISUAL & UX FIXES
   ======================================================== */

/* --- 1. Hamburger: orange-tinted, prominent on mobile --- */
@media (max-width: 1024px) {
  .nav-toggle {
    background: rgba(255,140,66,0.15);
    border: 2px solid rgba(255,140,66,0.5);
    box-shadow: 0 0 8px rgba(255,140,66,0.1);
  }
  .nav-toggle span {
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  }
  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    background: rgba(255,140,66,0.3);
    border-color: var(--accent);
    box-shadow: 0 0 16px rgba(255,140,66,0.25);
  }
}

/* --- 2. Table: card-stacked layout on narrow screens --- */
@media (max-width: 540px) {
  .table-scroll { border: none; border-radius: 0; overflow: visible; }
  .table-scroll > table { min-width: 0; }
  .table-scroll > table thead {
    position: absolute; width: 1px; height: 1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
  }
  .table-scroll > table tbody tr {
    display: block;
    background: var(--surface);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 12px;
    border: 1px solid var(--line);
  }
  .table-scroll > table tbody td {
    display: block;
    border-bottom: none;
    padding: 5px 0;
  }
  .table-scroll > table tbody td::before {
    content: attr(data-label);
    display: block;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 2px;
  }
  .table-scroll::after { display: none; }
}

/* --- 3. Footer brand image --- */
.footer-brand img {
  border-radius: var(--radius);
  margin-top: 16px;
  max-width: 260px;
}

/* --- 4. Section title accent bar --- */
.section-title {
  padding-bottom: 14px;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  margin-top: 12px;
}
#kayit .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

/* --- 5. Warm pulse CTA in hero --- */
@keyframes warmPulse {
  0%, 100% { box-shadow: 0 4px 20px -4px rgba(255,140,66,0.4); }
  50% { box-shadow: 0 6px 28px -2px rgba(255,140,66,0.6); }
}
.hero .btn-primary {
  animation: warmPulse 3.5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero .btn-primary { animation: none; }
}

/* --- 6. Zen float hero stats (desktop) --- */
@media (min-width: 769px) and (prefers-reduced-motion: no-preference) {
  .hero-stats .stat-item:nth-child(odd) { animation: zenFloat 7s ease-in-out infinite; }
  .hero-stats .stat-item:nth-child(even) { animation: zenFloat 7s ease-in-out infinite 2s; }
}

/* --- 7. Stagger-reveal enhancement: softer entry --- */
.reveal {
  transition-duration: 700ms;
}

/* --- 8. Atolye card hover: gentle breathe --- */
.atolye-card:hover {
  border-color: rgba(255,140,66,0.3);
}
.atolye-card:hover .atolye-icon {
  animation: chakraGlow 1.5s ease-in-out infinite;
}

/* --- 9. Fiyat card featured: pulsing border glow --- */
.fiyat-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 0 20px -4px rgba(255,140,66,0.15);
}
.fiyat-card.featured:hover {
  box-shadow: 0 0 0 1px var(--accent), 0 20px 48px -12px rgba(255,140,66,0.3);
}

/* --- 10. Testimonial card: lotus-inspired left border --- */
.testimonial-card {
  border-left: 3px solid transparent;
}
.testimonial-card:hover {
  border-left-color: var(--accent);
}

/* --- 11. Legal page: improved section spacing --- */
.page-content > .container > h2 {
  padding-top: 28px;
  margin-top: 36px;
}
.page-content > .container > h2:first-child {
  margin-top: 0;
}

/* --- 12. Contact row: stronger hover indicator --- */
.contact-row:hover .contact-icon {
  color: var(--accent);
  filter: drop-shadow(0 0 6px rgba(255,140,66,0.3));
}

/* --- 13. Cookie banner: larger button targets on mobile --- */
@media (max-width: 480px) {
  .cookie-actions {
    gap: 6px;
  }
  .cookie-actions button {
    flex: 1 1 auto;
    min-height: 48px;
    font-size: 0.82rem;
    padding: 12px 14px;
  }
}

/* --- 14. Kamp card: warm gradient left border --- */
.kamp-card {
  border-left: 3px solid transparent;
}
.kamp-card:hover {
  border-left-color: var(--accent);
}

/* --- 15. Process step hover --- */
.process-step {
  transition: transform 240ms cubic-bezier(.2,.7,.2,1);
  border-radius: 8px;
  padding-top: 4px;
  padding-bottom: 36px;
}
.process-step:hover {
  transform: translateX(6px);
}
.process-step:hover .process-dot {
  box-shadow: 0 0 16px rgba(255,140,66,0.5);
}
@media (prefers-reduced-motion: reduce) {
  .process-step:hover { transform: none; }
}
