:root {
  --bg: #0B1D3A;
  --surface: #1E2D4A;
  --surface-2: #283D5A;
  --ink: #F5F0E8;
  --ink-soft: rgba(245,240,232,0.55);
  --accent: #C9A84C;
  --accent-2: #E8DCC8;
  --line: rgba(201,168,76,0.22);
  --line-strong: rgba(201,168,76,0.45);

  --ff-heading: 'Playfair Display', 'Palatino Linotype', Palatino, Georgia, serif;
  --ff-body: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  --tracking: -0.015em;

  --header-h: 72px;
  --container: 1080px;
  --pad: clamp(1.5rem, 4vw, 3rem);

  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; } }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--ff-body);
  font-weight: 400;
  letter-spacing: var(--tracking);
  line-height: 1.72;
  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 cubic-bezier(.4,0,.2,1); word-break: break-word; overflow-wrap: anywhere; }
a:hover { color: var(--accent-2); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
ul, ol { list-style: none; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 8px 18px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  border-radius: 0 0 6px 6px;
  transition: top 200ms;
}
.skip-link:focus { top: 0; }

h1, h2, h3, h4 {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-style: italic;
  line-height: 1.12;
  color: var(--ink);
}
h1 { font-size: clamp(3rem, 8vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); letter-spacing: -0.015em; }
h3 { font-family: var(--ff-body); font-style: normal; font-weight: 600; font-size: clamp(1.2rem, 2.5vw, 1.6rem); letter-spacing: 0; }
h4 { font-family: var(--ff-body); font-style: normal; font-weight: 600; font-size: 1.05rem; letter-spacing: 0; }

.eyebrow {
  font-family: var(--ff-body);
  font-style: normal;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.drop-cap::first-letter {
  float: left;
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: 4.2em;
  line-height: 0.78;
  margin: 0.06em 0.14em 0 0;
  color: var(--accent);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.gold-rule {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 20%, var(--accent) 80%, transparent 100%);
  margin: clamp(2rem, 5vw, 3.5rem) 0;
}

.accent-shimmer {
  background: linear-gradient(120deg, var(--accent) 0%, #e8d48a 30%, var(--accent) 50%, #e8d48a 70%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shimmer 10s ease-in-out infinite;
}
@keyframes gold-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(11, 29, 58, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}
.site-header.scrolled {
  background: rgba(11,29,58,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.28);
  height: 60px;
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 32px);
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.logo:hover { color: var(--ink); }
.logo__mark {
  font-size: 1.7rem;
  color: var(--accent);
  line-height: 1;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(18px, 2.5vw, 32px);
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  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: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after { transform: scaleX(1); }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop a.is-active::after { transform: scaleX(1); }

.nav-desktop .nav-cta {
  background: var(--accent);
  color: var(--bg);
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms cubic-bezier(.4,0,.2,1), transform 180ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent-2);
  color: var(--bg);
  transform: translateY(-2px);
}
.nav-desktop .nav-cta.is-active {
  background: var(--accent);
  color: var(--bg);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 6px;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
  transform-origin: center;
  box-shadow: 0 0 4px rgba(245,240,232,0.3);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  z-index: 1050;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 32px 32px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer ul { display: flex; flex-direction: column; gap: 4px; }
.drawer li a {
  display: block;
  padding: 14px 0;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color 240ms, padding-left 280ms cubic-bezier(.2,.7,.2,1);
}
.drawer li a:hover { color: var(--accent); padding-left: 8px; }
.drawer li a.is-active { color: var(--accent); }
.drawer .nav-cta {
  display: inline-block;
  margin-top: 16px;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  text-align: center;
  border-bottom: none;
  transition: background 240ms, color 240ms;
}
.drawer .nav-cta:hover { background: var(--accent-2); color: var(--bg); padding-left: 28px; }

main { padding-top: var(--header-h); }

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 8vw, 6rem);
}
.hero__strings {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(52deg, transparent, transparent 23px, rgba(201,168,76,0.05) 23px, rgba(201,168,76,0.05) 24px),
    repeating-linear-gradient(-52deg, transparent, transparent 23px, rgba(201,168,76,0.05) 23px, rgba(201,168,76,0.05) 24px);
  pointer-events: none;
  will-change: transform;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { margin-bottom: 1rem; max-width: 14ch; }
.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 52ch;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-2);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 20px;
}
.hero__badge svg { width: 14px; height: 14px; flex-shrink: 0; }

.hero__avail {
  margin-top: 2.5rem;
  padding: 14px 20px;
  background: rgba(201,168,76,0.08);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  font-size: 0.88rem;
  color: var(--accent-2);
  max-width: 48ch;
}
.hero__avail strong { color: var(--accent); font-weight: 700; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 180ms;
  text-decoration: none;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-2);
  color: var(--bg);
  transform: translateY(-2px);
}
.btn-primary svg {
  width: 16px; height: 16px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
  text-decoration: none;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.sec-felsefe { background: var(--bg); }
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .editorial-grid { grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); }
}
.editorial-grid p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.78;
}
.editorial-grid p:first-of-type { color: var(--ink); }

.sec-takvim { background: var(--surface); }
.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%;
  font-variant-numeric: tabular-nums;
}
table th {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: left;
  padding: 14px 18px;
  border-bottom: 2px solid var(--line-strong);
  white-space: nowrap;
}
table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink);
}
table tr:last-child td { border-bottom: none; }
table tr:hover td { background: rgba(201,168,76,0.04); }
table .day-name { font-weight: 600; color: var(--accent-2); white-space: nowrap; min-width: 100px; }
table .closed { color: var(--ink-soft); font-style: italic; }

.sec-rakamlar {
  background: var(--accent);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat__num {
  font-family: var(--ff-heading);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--bg);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(11,29,58,0.7);
  margin-top: 6px;
}

.sec-nasil { background: var(--bg); }
.timeline {
  position: relative;
  margin-top: 2.5rem;
  padding-left: 48px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 18px;
  width: 2px;
  background: var(--line-strong);
}
.timeline__step {
  position: relative;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.timeline__step:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute;
  left: -48px;
  top: 4px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--accent);
  z-index: 1;
}
.timeline__time {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.timeline__step h3 { margin-bottom: 6px; }
.timeline__step p { color: var(--ink-soft); font-size: 0.95rem; max-width: 54ch; }

.sec-ucretler { background: var(--surface); }
.pricing-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .pricing-list { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms cubic-bezier(.2,.7,.2,1), border-color 360ms;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -12px rgba(201,168,76,0.18);
  border-color: var(--accent);
}
.price-card.featured {
  border-color: var(--accent);
  position: relative;
}
.price-card.featured::before {
  content: 'En Popüler';
  position: absolute;
  top: -12px; left: 24px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 3px;
}
.price-card__name {
  font-family: var(--ff-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.price-card__price {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--accent);
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.price-card__price small {
  font-size: 0.55em;
  font-weight: 400;
  color: var(--ink-soft);
}
.price-card__desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.price-card__includes { margin-bottom: 1.5rem; flex: 1; }
.price-card__includes li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.5;
}
.price-card__includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.price-card__excludes li { color: var(--ink-soft); }
.price-card__excludes li::before { background: var(--ink-soft); opacity: 0.4; }
.price-card .btn-primary { width: 100%; justify-content: center; margin-top: auto; }
.pricing-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 1.5rem;
  font-style: italic;
}

.sec-referanslar { background: var(--bg); }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: 1fr 1fr; } }
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 32px);
  position: relative;
  transition: border-color 360ms, box-shadow 360ms;
}
.testimonial-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 28px -8px rgba(201,168,76,0.12);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--ff-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 12px; left: 20px;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.72;
  margin-bottom: 1.2rem;
  padding-top: 1.5rem;
}
.testimonial-card cite {
  display: block;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--accent-2);
  font-weight: 600;
}
.testimonial-card cite span { display: block; font-weight: 400; color: var(--ink-soft); font-size: 0.78rem; margin-top: 2px; }
.testimonial-card:first-child {
  grid-column: 1 / -1;
}
@media (min-width: 768px) {
  .testimonial-card:first-child { grid-column: 1 / -1; }
}

.sec-sss { background: var(--surface); }
.faq-list { margin-top: 2rem; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  list-style: none;
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] summary::after { content: '\2212'; transform: rotate(180deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item > .answer {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .answer {
  height: auto;
  padding-block-end: 20px;
}
.faq-item .answer p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.72;
  max-width: 64ch;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

.sec-notlar { background: var(--bg); }
.notlar-list { margin-top: 1.5rem; }
.notlar-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.notlar-item:last-child { border-bottom: none; }
.notlar-date {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  padding-top: 3px;
}
.notlar-text { font-size: 0.95rem; color: var(--ink-soft); }

.sec-cta-band {
  background: linear-gradient(135deg, var(--accent) 0%, #b8943a 100%);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  text-align: center;
}
.sec-cta-band h2 { color: var(--bg); margin-bottom: 1rem; }
.sec-cta-band p { color: rgba(11,29,58,0.7); margin-bottom: 2rem; max-width: 48ch; margin-left: auto; margin-right: auto; }
.sec-cta-band .btn-primary { background: var(--bg); color: var(--accent); }
.sec-cta-band .btn-primary:hover { background: var(--surface); color: var(--accent); transform: translateY(-2px); }

.site-footer {
  background: var(--surface);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  border-top: 1px solid var(--line);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer__col h4 {
  font-family: var(--ff-body);
  font-style: normal;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer__col p, .footer__col a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.footer__col a:hover { color: var(--accent); }
.footer__col ul li { margin-bottom: 8px; }
.footer__col ul li a { font-size: 0.9rem; color: var(--ink-soft); }
.footer__logo {
  font-family: var(--ff-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  display: block;
  margin-bottom: 12px;
}
.footer__bottom {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: 18px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.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: 10px;
  padding: 20px 24px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.4);
}
@media (min-width: 768px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h3 {
  font-family: var(--ff-body);
  font-style: normal;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-banner__actions button {
  flex: 1;
  min-height: 44px;
  min-width: 90px;
  padding: 10px 16px;
  border-radius: 4px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 240ms, color 240ms;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
}
.cookie-banner__actions button[data-consent="accept"] {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.cookie-banner__actions button[data-consent="accept"]:hover {
  background: var(--accent-2);
  color: var(--bg);
}
.cookie-banner__actions button:hover {
  background: var(--surface-2);
  color: var(--ink);
}

.contact-hero { background: var(--surface); min-height: 240px; display: flex; align-items: center; padding: clamp(3rem, 8vw, 5rem) 0; }
.contact-hero h1 { margin-bottom: 0.5rem; }
.contact-hero .hero__sub { margin-bottom: 0; }

.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 2.5rem;
}
.channel-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(18px, 3vw, 24px);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms, border-color 360ms;
}
.channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -8px rgba(201,168,76,0.14);
  border-color: var(--accent);
}
.channel-card__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background 240ms;
}
.channel-card:hover .channel-card__icon { background: rgba(201,168,76,0.2); }
.channel-card__icon svg { width: 22px; height: 22px; color: var(--accent); }
.channel-card h4 { margin-bottom: 4px; }
.channel-card a { font-size: 0.95rem; word-break: break-all; }
.channel-card .sub-note { font-size: 0.78rem; color: var(--ink-soft); margin-top: 4px; }

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
  margin-top: 1rem;
}
.hours-day {
  padding: 10px 14px;
  background: var(--surface);
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
  font-size: 0.88rem;
}
.hours-day strong { color: var(--accent-2); display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }
.hours-day.today { border: 1px solid var(--accent); }

.form-section { margin-top: 3rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-grid .field--full { grid-column: 1 / -1; }

.field { position: relative; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  outline: none;
}
.field textarea { min-height: 120px; 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);
}
.kvkk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
}
.kvkk a { text-decoration: underline; }

.honeypot { position: absolute; left: -9999px; opacity: 0; }

.form-submit {
  margin-top: 8px;
}
@media (max-width: 639px) { .form-submit .btn-primary { width: 100%; justify-content: center; } }

.page-hero {
  background: var(--surface);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
}
.page-hero h1 { margin-bottom: 0.5rem; }
.page-hero .hero__sub { margin-bottom: 0; }

.about-team {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .about-team { grid-template-columns: repeat(3, 1fr); } }
.team-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 28px);
  transition: border-color 360ms, box-shadow 360ms, transform 360ms cubic-bezier(.2,.7,.2,1);
}
.team-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 32px -8px rgba(201,168,76,0.12);
  transform: translateY(-4px);
}
.team-card__photo {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--accent);
}
.team-card h3 { margin-bottom: 4px; }
.team-card__role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.65; }

.legal-content {
  padding: clamp(2rem, 5vw, 4rem) 0;
}
.legal-content h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--accent-2);
}
.legal-content p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.78;
  margin-bottom: 1rem;
  max-width: 72ch;
}
.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.2rem;
}
.legal-content ul li {
  position: relative;
  padding-left: 16px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.72;
  margin-bottom: 6px;
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.thank-you-page {
  min-height: calc(100vh - var(--header-h) - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.thank-you-page h1 { margin-bottom: 1rem; font-size: clamp(2rem, 5vw, 3.5rem); }
.thank-you-page p { color: var(--ink-soft); margin-bottom: 2rem; max-width: 48ch; margin-left: auto; margin-right: auto; }

.error-page {
  min-height: calc(100vh - var(--header-h) - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.error-page__code {
  font-family: var(--ff-heading);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(6rem, 15vw, 12rem);
  color: var(--accent);
  line-height: 1;
  opacity: 0.3;
}
.error-page h1 { font-size: clamp(1.5rem, 4vw, 2.5rem); margin: 1rem 0; }
.error-page p { color: var(--ink-soft); margin-bottom: 2rem; }

.sitemap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .sitemap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sitemap-grid { grid-template-columns: repeat(3, 1fr); } }
.sitemap-grid h3 { margin-bottom: 12px; color: var(--accent); }
.sitemap-grid ul li { margin-bottom: 8px; }
.sitemap-grid ul li a { font-size: 0.95rem; color: var(--ink-soft); }
.sitemap-grid ul li a:hover { color: var(--accent); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[style*="--i"] {
  transition-delay: calc(var(--i, 0) * 80ms);
}
html.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

@keyframes court-line-draw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.court-line {
  display: block;
  height: 2px;
  background: var(--accent);
  transform-origin: left center;
}
.court-line.is-in { animation: court-line-draw 1.2s cubic-bezier(.4,0,.2,1) forwards; }

@keyframes string-pulse {
  0%, 100% { opacity: 0.04; }
  50% { opacity: 0.09; }
}
.hero__strings::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(201,168,76,0.06), transparent);
  animation: string-pulse 8s ease-in-out infinite;
}

@keyframes ball-arc {
  0% { transform: translate(0, 0) scale(1); opacity: 1; }
  50% { transform: translate(10px, -12px) scale(0.85); opacity: 0.7; }
  100% { transform: translate(20px, 0) scale(1); opacity: 0; }
}
.btn-primary:active::after {
  content: '';
  position: absolute;
  right: -8px; top: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: ball-arc 400ms ease-out forwards;
}
.btn-primary { position: relative; overflow: visible; }

@keyframes serve-reveal {
  from { opacity: 0; transform: translateY(20px) rotate(-1.5deg); }
  to { opacity: 1; transform: none; }
}
.serve-reveal.is-in { animation: serve-reveal 700ms cubic-bezier(.2,.7,.2,1) forwards; }

@keyframes net-shimmer {
  0% { background-position: 0 0; }
  100% { background-position: 48px 48px; }
}

@media (max-width: 1024px) {
  .nav-desktop { display: none !important; }
  .nav-toggle { display: flex; }
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .about-team { grid-template-columns: 1fr; }
  .testimonial-card:first-child { grid-column: 1; }
  .pricing-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  section { padding: clamp(2.5rem, 6vw, 4rem) 0; }
  h1 { font-size: clamp(2.2rem, 7vw, 3.5rem); }
  .hero { min-height: auto; padding: clamp(3rem, 8vw, 5rem) 0 clamp(2.5rem, 6vw, 4rem); }
  .hero__badges { gap: 8px; }
  .hero__badge { font-size: 0.72rem; padding: 5px 10px; }
  .channel-grid { grid-template-columns: 1fr; }
  .channel-card { padding: 16px 18px; }
  .channel-card__icon { width: 40px; height: 40px; }
  .channel-card__icon svg { width: 18px; height: 18px; }
  .hours-grid { grid-template-columns: repeat(2, 1fr); }
  .drop-cap::first-letter { font-size: 3em; }
  .timeline { padding-left: 40px; }
  .timeline::before { left: 14px; }
  .timeline__dot { left: -40px; width: 30px; height: 30px; font-size: 0.72rem; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .hero__avail { font-size: 0.82rem; padding: 12px 16px; }
  .hours-grid { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  h1 { font-size: 2rem; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.5rem); }
  .stat__num { font-size: 2rem; }
  .price-card { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__strings::after { animation: none; }
  .accent-shimmer {
    animation: none;
    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}

/* --- Hero: make above-fold content visible immediately --- */
.hero > .container > .eyebrow,
.hero > .container > h1,
.hero > .container > .hero__sub,
.hero > .container > .btn-primary,
.hero > .container > .hero__badges,
.hero > .container > .hero__avail {
  opacity: 1 !important;
  transform: none !important;
}

/* --- Hamburger: larger touch target & more visible --- */
.nav-toggle {
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: 6px;
  transition: background 200ms;
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(201,168,76,0.15);
}
.nav-toggle span {
  box-shadow: 0 1px 3px rgba(0,0,0,0.4), 0 0 6px rgba(245,240,232,0.2);
}

/* --- Card hover: court-glow micro-effect --- */
.price-card::after,
.testimonial-card::after,
.channel-card::after,
.team-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,168,76,0.08), transparent 70%);
  transition: opacity 400ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.testimonial-card,
.channel-card,
.team-card { position: relative; overflow: hidden; }
.price-card { position: relative; }
.price-card:hover::after,
.testimonial-card:hover::after,
.channel-card:hover::after,
.team-card:hover::after { opacity: 1; }

/* --- Button hover: tennis ball bounce ripple --- */
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 300ms;
  pointer-events: none;
}
.btn-primary:hover::before { opacity: 1; }

/* --- Gold rule: draw-in animation --- */
.gold-rule {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.gold-rule.is-in,
.is-in ~ .gold-rule,
.is-in + .gold-rule,
section:target .gold-rule {
  transform: scaleX(1);
}

/* --- Timeline dots: pulse on reveal --- */
@keyframes dot-ping {
  0% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(201,168,76,0); }
  100% { box-shadow: 0 0 0 10px rgba(201,168,76,0); }
}
.timeline__step.is-in .timeline__dot {
  animation: dot-ping 1.2s cubic-bezier(.2,.7,.2,1);
  animation-delay: calc(var(--i, 0) * 120ms);
}

/* --- Stats section: number glow --- */
.stat__num {
  text-shadow: 0 2px 16px rgba(11,29,58,0.3);
}
.sec-rakamlar .stat.is-in .stat__num {
  animation: stat-pop 600ms cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: calc(var(--i, 0) * 100ms);
}
@keyframes stat-pop {
  0% { transform: scale(0.8); opacity: 0; }
  60% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

/* --- Testimonial quote mark: fade-in slide --- */
.testimonial-card.is-in::before {
  animation: quote-slide 800ms cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes quote-slide {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 0.3; transform: none; }
}

/* --- FAQ item: smoother open/close --- */
.faq-item summary {
  transition: color 240ms, padding-left 280ms cubic-bezier(.2,.7,.2,1);
}
.faq-item summary:hover {
  padding-left: 6px;
}
.faq-item[open] summary {
  color: var(--accent);
}

/* --- Pricing featured card: subtle shimmer border --- */
@keyframes border-shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.price-card.featured {
  border-image: linear-gradient(135deg, var(--accent), #e8d48a, var(--accent)) 1;
  border-width: 1px;
}

/* --- CTA band: tennis net pattern overlay --- */
.sec-cta-band {
  position: relative;
  overflow: hidden;
}
.sec-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 19px, rgba(11,29,58,0.06) 19px, rgba(11,29,58,0.06) 20px),
    repeating-linear-gradient(90deg, transparent, transparent 19px, rgba(11,29,58,0.06) 19px, rgba(11,29,58,0.06) 20px);
  pointer-events: none;
}

/* --- Footer link hover: underline slide-in --- */
.footer__col ul li a {
  position: relative;
  display: inline-block;
}
.footer__col ul li a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}
.footer__col ul li a:hover::after { transform: scaleX(1); }

/* --- Cookie banner: prevent footer overlap, larger safe area --- */

/* --- Cookie banner: Reddet visually lighter than Kabul Et --- */
.cookie-banner__actions button[data-consent="reject"] {
  border-color: var(--line);
  color: var(--ink-soft);
  font-weight: 400;
}
.cookie-banner__actions button[data-consent="reject"]:hover {
  color: var(--ink);
  border-color: var(--line-strong);
}

/* --- Reveal stagger: smoother entrance with slight rotate --- */
.reveal {
  transition: opacity 700ms cubic-bezier(.16,1,.3,1), transform 700ms cubic-bezier(.16,1,.3,1);
}
.reveal[style*="--i"] {
  transition-delay: calc(var(--i, 0) * 100ms);
}

/* --- Nav links: smoother stagger on desktop --- */
.nav-desktop a {
  opacity: 0;
  animation: nav-fade 500ms cubic-bezier(.16,1,.3,1) forwards;
}
.nav-desktop a:nth-child(1) { animation-delay: 80ms; }
.nav-desktop a:nth-child(2) { animation-delay: 140ms; }
.nav-desktop a:nth-child(3) { animation-delay: 200ms; }
.nav-desktop a:nth-child(4) { animation-delay: 260ms; }
.nav-desktop a:nth-child(5) { animation-delay: 320ms; }
.nav-desktop a:nth-child(6) { animation-delay: 380ms; }
@keyframes nav-fade {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* --- Hero: court line accent under heading --- */
.hero h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: var(--accent);
  margin-top: 0.6rem;
  transform-origin: left;
  animation: court-line-draw 1.4s cubic-bezier(.16,1,.3,1) 400ms both;
}

/* --- Channel card icon: bounce on hover --- */
@keyframes icon-bounce {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-4px); }
  60% { transform: translateY(-2px); }
}
.channel-card:hover .channel-card__icon {
  animation: icon-bounce 500ms cubic-bezier(.2,.7,.2,1);
}

/* --- Team card photo: ring pulse on hover --- */
.team-card:hover .team-card__photo {
  box-shadow: 0 0 0 4px rgba(201,168,76,0.25);
  transition: box-shadow 400ms cubic-bezier(.2,.7,.2,1);
}

/* --- Smoother drawer slide --- */
.drawer {
  transition: transform 380ms cubic-bezier(.16,1,.3,1);
}
.drawer-backdrop {
  transition: opacity 300ms cubic-bezier(.16,1,.3,1);
}

/* --- Header: smoother scroll transition --- */
.site-header {
  transition: background 300ms cubic-bezier(.16,1,.3,1), box-shadow 300ms, height 300ms cubic-bezier(.16,1,.3,1);
}

/* --- Ensure gold-rule works with IntersectionObserver --- */
.gold-rule {
  will-change: transform;
}

/* --- Hero availability badge: subtle entrance --- */
.hero__avail {
  animation: avail-slide 800ms cubic-bezier(.16,1,.3,1) 600ms both;
}
@keyframes avail-slide {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: none; }
}

/* --- Prefers reduced motion: disable all custom additions --- */
@media (prefers-reduced-motion: reduce) {
  .nav-desktop a { opacity: 1; animation: none; }
  .hero h1::after { animation: none; transform: scaleX(1); }
  .hero__avail { animation: none; }
  .gold-rule { transform: scaleX(1); transition: none; }
  .timeline__step.is-in .timeline__dot { animation: none; }
  .sec-rakamlar .stat.is-in .stat__num { animation: none; opacity: 1; transform: none; }
  .testimonial-card.is-in::before { animation: none; opacity: 0.3; }
  .channel-card:hover .channel-card__icon { animation: none; }
}

@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle, .skip-link { display: none !important; }
  main { padding-top: 0; }
  body { background: #fff; color: #111; }
  a { color: #111; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}

/* form-reveal-opacity-fix */
main form.reveal, .form-section form.reveal, .contact-form.reveal, form[id*='iletisim'].reveal, form[class*='contact'].reveal { opacity: 1 !important; transform: none !important; translate: none !important; }
main form, .form-section form, .contact-form, form[id*='iletisim'], form[class*='contact'] { opacity: 1 !important; }

/* consent-checkbox-inline-fix */
main form label.checkbox, main form .form-checkbox, main form .consent, main form .kvkk, .contact-form label.checkbox, .contact-form .checkbox-group { display: flex !important; flex-direction: row !important; align-items: flex-start !important; gap: 10px !important; font-size: 14px !important; line-height: 1.5 !important; flex-wrap: nowrap !important; }
main form label.checkbox span, main form label.checkbox a, main form .form-checkbox span, main form .form-checkbox a, .contact-form label.checkbox span, .contact-form label.checkbox a { display: inline !important; flex: 1 1 auto; }
main form label.checkbox input[type='checkbox'], main form .form-checkbox input[type='checkbox'] { flex-shrink: 0 !important; width: 18px !important; height: 18px !important; margin-top: 3px !important; }

/* iletisim-form-responsive-guard v2 */
main form, .form-section form, .contact-form, .iletisim-form, form#contact-form, form[id*="iletisim"], form[class*="iletisim"], form[class*="contact"] {
  display: block;
  max-width: 720px;
  margin: 24px auto;
  padding: clamp(20px, 4vw, 36px);
  background: var(--surface, rgba(255,255,255,0.04));
  border: 1px solid var(--line, rgba(127,127,127,0.18));
  border-radius: 16px;
  box-shadow: 0 8px 32px -12px rgba(0,0,0,0.25);
  box-sizing: border-box;
}
main form .form-grid,
main form > .grid,
.contact-form .form-grid,
form[class*="contact"] .form-grid,
form[class*="iletisim"] .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  width: 100%;
}
@media (max-width: 640px) {
  main form .form-grid,
  main form > .grid,
  .contact-form .form-grid,
  form[class*="contact"] .form-grid,
  form[class*="iletisim"] .form-grid {
    grid-template-columns: 1fr;
  }
}
main form .form-grid > .field-full,
main form .form-grid > .col-full,
main form .form-grid > [class*="full"] {
  grid-column: 1 / -1;
}
main form .field, main form label,
.contact-form .field, .contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
main form input[type="text"],
main form input[type="email"],
main form input[type="tel"],
main form input[type="number"],
main form input[type="date"],
main form input[type="url"],
main form input[type="search"],
main form input:not([type]),
main form select,
main form textarea,
.contact-form input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=hidden]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  min-height: 44px;
  font-size: 16px;
  line-height: 1.4;
  font-family: inherit;
  border: 1px solid var(--line, rgba(127,127,127,0.22));
  border-radius: 10px;
  background: var(--input-bg, rgba(0,0,0,0.04));
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
}
main form textarea, .contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
main form input:focus, main form select:focus, main form textarea:focus,
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 2px solid var(--accent, #5a8dee);
  outline-offset: 1px;
  border-color: transparent;
}
main form .checkbox, main form label.checkbox,
.contact-form .checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
main form input[type="checkbox"], main form input[type="radio"],
.contact-form input[type="checkbox"], .contact-form input[type="radio"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent, #5a8dee);
}
main form button[type="submit"],
main form input[type="submit"],
main form .btn-submit,
.contact-form button[type="submit"],
.contact-form .btn-submit {
  width: 100%;
  min-height: 48px;
  padding: 14px 28px;
  background: var(--accent, #5a8dee);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 8px;
  transition: filter 200ms ease, transform 120ms ease;
}
@media (min-width: 640px) {
  main form button[type="submit"],
  main form input[type="submit"],
  .contact-form button[type="submit"] {
    width: auto;
    min-width: 220px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
main form button[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
  filter: brightness(1.05);
}
main form button[type="submit"]:active,
.contact-form button[type="submit"]:active {
  transform: translateY(1px);
}


/* contacts-grid-v2 */
/* Contact cards in responsive grid */
.contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid,
.contact-list, main .contact-wrap, section[id*="iletisim"] > .container > div:has(> .contact-card) {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 20px !important;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 16px;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 720px) {
  .contact-grid, .contacts-grid, .iletisim-grid, .contact-cards, .contact-cards-grid {
    grid-template-columns: 1fr !important;
  }
}
.contact-card { min-height: 0; box-sizing: border-box; }

/* Checkbox row alignment — override .field-checkbox column layout */
form .field.field-checkbox,
form .field-checkbox,
form .checkbox-field,
form .form-field--checkbox,
form .form-row--checkbox,
form .kvkk-field,
form .consent-field,
.contact-form .field.field-checkbox {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  gap: 10px !important;
  width: 100%;
}
form .field.field-checkbox > input[type="checkbox"],
form .field-checkbox > input[type="checkbox"],
form .checkbox-field > input[type="checkbox"],
form .kvkk-field > input[type="checkbox"],
form .consent-field > input[type="checkbox"] {
  flex-shrink: 0 !important;
  width: 18px !important;
  height: 18px !important;
  margin: 3px 0 0 0 !important;
  accent-color: var(--accent, currentColor);
}
form .field.field-checkbox > label,
form .field-checkbox > label,
form .checkbox-field > label,
form .kvkk-field > label,
form .consent-field > label {
  flex: 1 1 auto !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  display: inline !important;
  cursor: pointer;
}
form .field.field-checkbox > label a,
form .field-checkbox > label a {
  text-decoration: underline;
}

/* field-full inside form grid spans both columns */
form .form-grid > .field-full,
form .form-grid > .field.field-full,
form .form-grid > .col-full,
form .form-grid > .full,
form .form-grid > [class*="--full"] {
  grid-column: 1 / -1;
}

