:root {
  interpolate-size: allow-keywords;
  --bg: #0D1117;
  --surface: #161B22;
  --surface-2: #1C2129;
  --ink: #E6DFD0;
  --ink-soft: #A89F8F;
  --accent: #D4A843;
  --accent-2: #7C6930;
  --line: rgba(212,168,67,0.18);
  --line-strong: rgba(212,168,67,0.35);
  --header-h: 72px;
  --container-max: 1080px;
  --container-pad: clamp(16px,4vw,32px);
  --font-heading: 'Palatino Linotype', Palatino, Georgia, serif;
  --font-body: Georgia, 'Times New Roman', serif;
  --font-mono: 'Consolas', 'Courier New', monospace;
  --radius: 4px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html.no-js .reveal { opacity: 1; transform: none; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  letter-spacing: -0.02em;
  overflow-x: hidden;
  max-width: 100vw;
  min-height: 100vh;
}
html, body { margin: 0; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 240ms var(--ease-out); }
a:hover { color: var(--ink); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); font-style: italic; }
h2 { font-size: clamp(2rem, 5vw, 3.2rem); font-style: italic; }
h3 { font-size: clamp(1.35rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}

/* =========== SKIP LINK =========== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: var(--bg);
  padding: 8px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 10000;
  transition: top 200ms;
}
.skip-link:focus { top: 12px; }

/* =========== HEADER =========== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(13,17,23,0.85);
  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(13,17,23,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.logo:hover { color: var(--ink); }
.logo svg { width: 28px; height: 28px; margin-right: 8px; vertical-align: middle; }

/* Desktop nav */
.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(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
  transition: color 240ms var(--ease-out);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 280ms var(--ease);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }

.nav-desktop .nav-cta {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 8px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 240ms var(--ease-out), color 240ms var(--ease-out), border-color 240ms var(--ease-out);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-desktop .nav-cta:focus-visible {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  padding: 0;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms var(--ease), opacity 240ms;
}
.nav-toggle span:nth-child(1) { margin-bottom: 6px; }
.nav-toggle span:nth-child(3) { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========== 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;
}
.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);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 24px) var(--container-pad) 32px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: block;
  transition: color 240ms var(--ease-out), padding-left 240ms var(--ease-out);
}
.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: var(--radius);
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  transition: background 240ms var(--ease-out), color 240ms var(--ease-out);
}
.drawer .drawer-cta:hover { background: var(--ink); color: var(--bg); }

/* =========== MAIN =========== */
main { padding-top: var(--header-h); }

section {
  padding: clamp(60px, 10vw, 120px) 0;
  scroll-margin-top: var(--header-h);
}

/* =========== GOLD DIVIDER =========== */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto;
  max-width: 280px;
  padding: 12px 0;
}
.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
}
.gold-divider svg {
  width: 16px; height: 16px;
  fill: var(--accent);
  flex-shrink: 0;
}

/* =========== HERO =========== */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: clamp(60px,12vw,140px) var(--container-pad);
}
.hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(212,168,67,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  max-width: 20ch;
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 2;
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-letter-wrap {
  width: clamp(120px, 20vw, 200px);
  margin: 0 auto 3rem;
  position: relative;
}
.hero-letter {
  width: 100%;
  height: auto;
  overflow: visible;
}
.hero-letter .letter-stroke {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: draw-letter 3s cubic-bezier(.4,0,.2,1) 0.6s forwards;
}
.hero-letter .letter-dot {
  fill: var(--accent);
  opacity: 0;
  animation: dot-appear 500ms var(--ease) 3.2s forwards;
}
@keyframes draw-letter {
  to { stroke-dashoffset: 0; }
}
@keyframes dot-appear {
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-letter .letter-stroke {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    animation: none;
  }
  .hero-letter .letter-dot { opacity: 1; animation: none; }
}

/* Ink blob decorations */
.ink-blob {
  position: absolute;
  pointer-events: none;
  opacity: 0.04;
  z-index: 0;
}
.ink-blob--1 { top: 15%; right: -5%; width: 320px; }
.ink-blob--2 { bottom: 10%; left: -8%; width: 260px; }

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin-top: 2rem;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.trust-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

/* =========== BUTTONS =========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 32px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 240ms var(--ease-out), color 240ms var(--ease-out), transform 180ms var(--ease-out), box-shadow 240ms var(--ease-out);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -6px rgba(212,168,67,0.3);
}
.btn-primary svg { width: 16px; height: 16px; transition: transform 240ms var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 12px 28px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 240ms var(--ease-out), color 240ms var(--ease-out), border-color 240ms var(--ease-out), transform 180ms var(--ease-out);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* =========== STATS / COUNTERS =========== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 640px;
  margin: 3rem auto 0;
  text-align: center;
}
.stat-item { padding: 0 12px; }
.stat-num {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; gap: 20px; }
}

/* =========== SECTION HEADINGS =========== */
.section-heading {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-heading h2 { margin-bottom: 1rem; }
.section-heading p {
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
}

/* =========== KOLEKSIYON — editorial 2-col =========== */
.koleksiyon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
}
@media (max-width: 768px) {
  .koleksiyon-grid { grid-template-columns: 1fr; }
}
.koleksiyon-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  transition: transform 360ms var(--ease), box-shadow 360ms var(--ease), border-color 360ms var(--ease);
}
.koleksiyon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(212,168,67,0.15);
  border-color: var(--accent-2);
}
.koleksiyon-card .card-icon {
  width: 48px; height: 48px;
  margin-bottom: 20px;
  color: var(--accent);
}
.koleksiyon-card .card-icon svg { width: 100%; height: 100%; }
.koleksiyon-card h3 { margin-bottom: 12px; color: var(--ink); }
.koleksiyon-card p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.7; }
.koleksiyon-card .card-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-2);
  padding: 4px 12px;
  border-radius: 100px;
}

/* Full-width manifesto card */
.koleksiyon-manifesto {
  grid-column: 1 / -1;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
}
.koleksiyon-manifesto blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  line-height: 1.4;
  color: var(--ink);
  max-width: 36ch;
  margin: 0 auto;
}
.koleksiyon-manifesto blockquote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 16px;
  letter-spacing: 0.06em;
}

/* =========== INK NICHE ANIMATIONS =========== */
@keyframes quill-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}
@keyframes ink-drip {
  0% { transform: scaleY(0); opacity: 0; }
  30% { transform: scaleY(1); opacity: 0.7; }
  100% { transform: scaleY(1) translateY(12px); opacity: 0; }
}
@keyframes gold-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pen-nib-breathe {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
@keyframes letter-trace {
  0% { width: 0; }
  100% { width: 100%; }
}

.nib-float { animation: quill-float 8s ease-in-out infinite; }
.gold-shimmer-text {
  background: linear-gradient(90deg, var(--accent), var(--ink), var(--accent));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shimmer 12s ease infinite;
}

@media (prefers-reduced-motion: reduce) {
  .nib-float, .gold-shimmer-text { animation: none; }
  .gold-shimmer-text {
    background: none;
    -webkit-text-fill-color: var(--accent);
    color: var(--accent);
  }
}

/* =========== SUREC — vertical timeline =========== */
.timeline {
  position: relative;
  padding-left: 48px;
  max-width: 680px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 18px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2), transparent);
}
.timeline-step {
  position: relative;
  padding-bottom: clamp(36px, 5vw, 56px);
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -48px; top: 4px;
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-dot::before {
  content: '';
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent-2);
  transition: transform 360ms var(--ease), box-shadow 360ms var(--ease);
}
.timeline-step:hover .timeline-dot::before {
  transform: scale(1.3);
  box-shadow: 0 0 0 4px var(--accent), 0 0 16px rgba(212,168,67,0.3);
}
.timeline-time {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-step h4 { margin-bottom: 8px; }
.timeline-step p { color: var(--ink-soft); font-size: 0.92rem; }

/* =========== TESTIMONIALS =========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(20px, 3vw, 32px);
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  transition: transform 360ms var(--ease), box-shadow 360ms var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(212,168,67,0.12);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  font-style: italic;
  color: var(--accent-2);
  line-height: 1;
  position: absolute;
  top: 16px; left: 24px;
  opacity: 0.5;
}
.testimonial-card blockquote {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 16px;
  padding-top: 24px;
}
.testimonial-author {
  font-size: 0.8rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.testimonial-author strong { color: var(--accent); font-weight: 600; }

/* =========== FIYAT =========== */
.pricing-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(20px, 3vw, 32px);
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  transition: transform 360ms var(--ease), box-shadow 360ms var(--ease), border-color 360ms var(--ease);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(212,168,67,0.15);
  border-color: var(--accent-2);
}
.price-card.is-featured {
  border-color: var(--accent);
  position: relative;
}
.price-card.is-featured::after {
  content: 'Popüler';
  position: absolute;
  top: -12px; right: 20px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}
.price-card h3 { margin-bottom: 8px; }
.price-amount {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 6px;
}
.price-unit {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.price-card h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 16px 0 10px;
  font-family: var(--font-body);
  font-style: normal;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-list li {
  font-size: 0.88rem;
  color: var(--ink);
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
}
.price-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 8px; height: 8px;
  border-radius: 50%;
}
.price-included li::before { background: var(--accent); }
.price-excluded li::before { background: var(--ink-soft); opacity: 0.4; }
.price-excluded li { color: var(--ink-soft); }
.price-card .btn-ghost { margin-top: auto; padding-top: 20px; width: 100%; justify-content: center; }
.price-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 32px;
  font-style: italic;
}

/* =========== FAQ ACCORDION =========== */
.faq-list { max-width: 740px; margin: 0 auto; }
.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: var(--font-body);
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  transition: color 240ms var(--ease-out);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary .faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 360ms var(--ease-out);
  color: var(--accent);
}
.faq-item[open] summary .faq-chevron { transform: rotate(180deg); }
.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: 24px;
}
.faq-body p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.75;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* =========== FORM =========== */
.form-section { background: var(--surface); }
.contact-form {
  max-width: 580px;
  margin: 0 auto;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: border-color 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.15);
  outline: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select {
  appearance: auto;
  cursor: pointer;
}
.field-checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin: 24px 0;
}
.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);
  cursor: pointer;
}
.field-checkbox label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
  margin-bottom: 0;
}
.field-checkbox a { color: var(--accent); text-decoration: underline; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }

/* =========== ILETISIM PAGE GRID =========== */
.iletisim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 768px) {
  .iletisim-grid { grid-template-columns: 1fr; }
}

/* =========== CONTACT CHANNELS (iletisim) =========== */
.contact-channels {
  display: grid;
  gap: 0;
}
.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms var(--ease-out), background 240ms var(--ease-out);
  border-radius: var(--radius);
  padding-left: 8px;
  padding-right: 8px;
}
.contact-row:hover {
  transform: translateX(4px);
  background: var(--surface-2);
}
.contact-row svg {
  width: 20px; height: 20px;
  color: var(--ink-soft);
  flex-shrink: 0;
  margin-top: 2px;
  transition: color 240ms var(--ease-out), transform 240ms var(--ease-out);
}
.contact-row:hover svg { color: var(--accent); transform: scale(1.08); }
.contact-row strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.contact-row span,
.contact-row a {
  font-size: 0.95rem;
  color: var(--ink);
  word-break: break-all;
  overflow-wrap: anywhere;
}

/* =========== FOOTER =========== */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 8vw, 80px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer-brand .logo { margin-bottom: 12px; display: inline-block; }
.footer-brand p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  max-width: 32ch;
  line-height: 1.7;
}
.footer-contact { font-size: 0.85rem; color: var(--ink-soft); }
.footer-contact p { margin-bottom: 6px; }
.footer-contact a { color: var(--ink-soft); }
.footer-contact a:hover { color: var(--accent); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--ink-soft);
  transition: color 240ms var(--ease-out), padding-left 240ms var(--ease-out);
}
.footer-links 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;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.footer-bottom a { color: var(--ink-soft); }
.footer-bottom a:hover { color: var(--accent); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }

/* =========== 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: 8px;
  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 -12px rgba(0,0,0,0.5);
}
.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-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cookie-actions button {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--line-strong);
  transition: background 240ms var(--ease-out), color 240ms var(--ease-out), border-color 240ms var(--ease-out);
}
.cookie-actions .cookie-accept {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.cookie-actions .cookie-accept:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.cookie-actions .cookie-reject {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.cookie-actions .cookie-reject:hover { background: var(--surface-2); color: var(--ink); border-color: var(--accent); }
.cookie-actions .cookie-settings {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--line);
}
.cookie-actions .cookie-settings:hover { background: var(--surface-2); color: var(--ink); border-color: var(--accent); }

/* =========== REVEAL =========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[style*="--i"] {
  transition-delay: calc(var(--i, 0) * 80ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* =========== 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-scroll table {
  border-collapse: collapse;
  font-size: 0.88rem;
}
.table-scroll th,
.table-scroll td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.table-scroll th {
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--surface-2);
}
.table-scroll td { color: var(--ink); }
.table-scroll tr:last-child td { border-bottom: none; }

/* =========== POLICY PAGES =========== */
.page-content {
  max-width: 740px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 80px) var(--container-pad);
}
.page-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
}
.page-content h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin: 2.5rem 0 1rem;
}
.page-content h3 {
  font-size: 1.15rem;
  margin: 1.8rem 0 0.8rem;
}
.page-content p {
  margin-bottom: 1rem;
  color: var(--ink-soft);
  line-height: 1.8;
}
.page-content ul, .page-content ol {
  margin: 0.8rem 0 1.2rem 1.5rem;
  color: var(--ink-soft);
}
.page-content li { margin-bottom: 0.5rem; line-height: 1.7; }
.page-content a { color: var(--accent); text-decoration: underline; }

/* =========== THANK YOU PAGE =========== */
.thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  padding: 60px var(--container-pad);
}
.thank-you h1 { margin-bottom: 1rem; font-size: clamp(2rem, 5vw, 3.5rem); }
.thank-you p { color: var(--ink-soft); margin-bottom: 2rem; font-size: 1.1rem; max-width: 44ch; }

/* =========== 404 PAGE =========== */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  padding: 60px var(--container-pad);
}
.error-page .error-code {
  font-family: var(--font-mono);
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 700;
  color: var(--accent-2);
  line-height: 1;
  opacity: 0.4;
}
.error-page h1 { margin-bottom: 1rem; }
.error-page p { color: var(--ink-soft); margin-bottom: 2rem; }

/* =========== SITEMAP PAGE =========== */
.sitemap-list {
  list-style: none;
  padding: 0;
}
.sitemap-list li { margin-bottom: 10px; }
.sitemap-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: var(--ink);
  transition: color 240ms var(--ease-out), padding-left 240ms var(--ease-out);
}
.sitemap-list a:hover { color: var(--accent); padding-left: 8px; }
.sitemap-list a::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =========== HAKKIMIZDA =========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(20px, 3vw, 32px);
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
  transition: transform 360ms var(--ease), box-shadow 360ms var(--ease);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(212,168,67,0.12);
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--accent-2);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--accent);
}
.team-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-card .team-role {
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.7; }

/* =========== RESPONSIVE =========== */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}
@media (max-width: 768px) {
  section { padding: clamp(48px, 8vw, 80px) 0; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --header-h: 60px; }
  h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero { min-height: auto; padding: clamp(48px, 10vw, 80px) var(--container-pad); }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .koleksiyon-grid { grid-template-columns: 1fr; }
  .pricing-list { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .trust-strip { gap: 8px 12px; }
  .trust-badge { font-size: 0.68rem; padding: 5px 10px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 430px) {
  .cookie-banner { left: 8px; right: 8px; padding: 16px 18px; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions button { min-width: auto; }
}
@media (max-width: 360px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .koleksiyon-card { padding: 20px; }
  .price-card { padding: 20px; }
  .testimonial-card { padding: 20px; }
}

/* =========== DRAWER CLOSE =========== */

/* =========== SCROLL PROGRESS =========== */
.scroll-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--accent);
  width: 0%;
  transition: none;
  pointer-events: none;
}

/* =========== PRINT =========== */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle,
  .skip-link, .btn-primary, .btn-ghost, .scroll-progress { display: none !important; }
  main { padding-top: 0; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  section { padding: 24px 0; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
