:root {
  interpolate-size: allow-keywords;
  --bg: #F8FAFB;
  --surface: #FFFFFF;
  --surface-2: #F1F5F9;
  --ink: #111827;
  --ink-soft: #4B5563;
  --accent: #EF4444;
  --accent-2: #0EA5E9;
  --line: #E5E7EB;
  --line-strong: #D1D5DB;
  --header-h: 72px;
  --max-w: 1180px;
  --px: clamp(16px, 4vw, 32px);
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  font-family: 'Nunito Sans', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.012em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p { max-width: 68ch; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
a:hover { color: var(--accent-2); }

img { max-width: 100%; height: auto; display: block; }

.mono {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--ink);
  color: var(--surface);
  padding: 8px 18px;
  border-radius: 0 0 6px 6px;
  font-weight: 600;
  transition: top 200ms;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--px);
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1080;
  background: rgba(248, 250, 251, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease, height 240ms ease;
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  background: rgba(248, 250, 251, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
  height: calc(var(--header-h) - 8px);
}

.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  width: 0%;
  transition: none;
  z-index: 1;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.02em;
}
.logo:hover { color: var(--ink); }
.logo svg { width: 28px; height: 28px; flex-shrink: 0; }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  font-size: 0.92rem;
  font-weight: 600;
  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: 0;
  height: 2px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.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(--ink); }

.nav-desktop .nav-cta {
  background: var(--ink);
  color: var(--surface);
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 180ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none !important; }
}

/* Nav toggle (hamburger → X) */
.nav-toggle {
  position: relative;
  z-index: 1100;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  position: absolute;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
}
.nav-toggle span:nth-child(1) { transform: translateY(-7px); }
.nav-toggle span:nth-child(2) { transform: translateY(0); }
.nav-toggle span:nth-child(3) { transform: translateY(7px); }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

/* ============================================================
   DRAWER (mobile nav) — OUTSIDE header
   ============================================================ */

.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);
  padding: calc(var(--header-h) + 24px) 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.drawer.is-open {
  transform: translateX(0);
}


.drawer a {
  display: block;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 200ms, transform 200ms;
}
.drawer a:hover {
  color: var(--accent);
  transform: translateX(4px);
}
.drawer a.is-active { color: var(--accent); }

.drawer .drawer-cta {
  margin-top: 16px;
  display: inline-block;
  background: var(--accent);
  color: var(--surface);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
  border: none;
  transition: background 240ms, color 240ms;
}
.drawer .drawer-cta:hover {
  background: var(--ink);
  color: var(--surface);
  transform: none;
}

/* ============================================================
   MAIN
   ============================================================ */

main {
  padding-top: var(--header-h);
}

section {
  padding: clamp(56px, 10vw, 100px) 0;
}

main section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.section-eyebrow {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 56ch;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--ink);
  color: var(--surface);
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 180ms, box-shadow 240ms;
  text-decoration: none;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(239,68,68,0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid var(--line-strong);
  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(--ink);
  transform: translateY(-2px);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding: clamp(32px, 6vw, 72px) 0 clamp(48px, 8vw, 80px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -180px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(239,68,68,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14,165,233,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-stack {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239,68,68,0.08);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 18px;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.hero .section-sub {
  margin: 0 auto 36px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: border-color 240ms, transform 180ms;
}
.trust-badge:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px -4px rgba(239,68,68,0.12);
}
.trust-badge svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); }

/* ============================================================
   CALCULATOR WIDGET
   ============================================================ */

.calc-widget {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 40px);
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 12px 40px -12px rgba(17,24,39,0.08), 0 0 0 1px rgba(0,0,0,0.03);
  position: relative;
}

.calc-widget::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(239,68,68,0.15), transparent 40%, rgba(14,165,233,0.12));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.calc-row {
  margin-bottom: 24px;
}

.calc-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}

.calc-label .calc-val {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  color: var(--accent);
  font-size: 1rem;
  background: rgba(239,68,68,0.06);
  padding: 2px 10px;
  border-radius: 4px;
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--line);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  position: relative;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid var(--surface);
  box-shadow: 0 2px 8px rgba(239,68,68,0.35);
  transition: transform 180ms cubic-bezier(.2,.7,.2,1), box-shadow 180ms;
}
.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 14px rgba(239,68,68,0.45);
}
.calc-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid var(--surface);
  box-shadow: 0 2px 8px rgba(239,68,68,0.35);
}
.calc-slider:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.calc-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 240ms;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%234B5563' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.calc-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.12);
  outline: none;
}

.calc-radios {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.calc-radio {
  flex: 1;
  min-width: 120px;
}
.calc-radio input { position: absolute; opacity: 0; width: 0; height: 0; }
.calc-radio label {
  display: block;
  text-align: center;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: border-color 240ms, background 240ms, color 240ms, transform 180ms;
}
.calc-radio label:hover {
  border-color: var(--ink-soft);
  transform: translateY(-1px);
}
.calc-radio input:checked + label {
  border-color: var(--accent);
  background: rgba(239,68,68,0.06);
  color: var(--accent);
}
.calc-radio input:focus-visible + label {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.calc-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 28px 0;
}

.calc-total {
  text-align: center;
  padding: 8px 0 4px;
}
.calc-total-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.calc-total-price {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--ink);
  line-height: 1.1;
  position: relative;
}
.calc-total-price .currency {
  font-size: 0.55em;
  color: var(--ink-soft);
  vertical-align: super;
  margin-left: 4px;
}
.calc-total-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 8px;
}

.calc-cta {
  text-align: center;
  margin-top: 24px;
}

@keyframes pricePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}
.calc-total-price.is-updating {
  animation: pricePulse 300ms cubic-bezier(.2,.7,.2,1);
}

/* ============================================================
   #NASIL — Steps (dark band)
   ============================================================ */

.nasil {
  background: var(--ink);
  color: var(--surface);
  position: relative;
  overflow: hidden;
}
.nasil::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.nasil .section-eyebrow { color: var(--accent); }
.nasil .section-sub { color: rgba(255,255,255,0.6); }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 640px;
  margin-top: 48px;
  position: relative;
}

.step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
  position: relative;
}
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 28px;
  top: 84px;
  bottom: 0;
  width: 2px;
  background: var(--line);
}
.nasil .step-item:not(:last-child)::after {
  background: rgba(255,255,255,0.1);
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(239,68,68,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content h4 {
  margin-bottom: 6px;
}
.step-content p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}
.nasil .step-content h4 { color: var(--surface); }
.nasil .step-content p { color: rgba(255,255,255,0.6); }
.step-time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent-2);
  margin-top: 6px;
  background: rgba(14,165,233,0.08);
  padding: 3px 8px;
  border-radius: 4px;
}

/* ============================================================
   #HIZMETLER — 2-col: left list, right number
   ============================================================ */

.hizmetler-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .hizmetler-grid { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
}

.hizmet-list { list-style: none; }
.hizmet-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
}
.hizmet-item:hover { transform: translateX(4px); }
.hizmet-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(239,68,68,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: background 240ms, transform 240ms;
}
.hizmet-item:hover .hizmet-icon {
  background: rgba(239,68,68,0.12);
  transform: scale(1.08);
}
.hizmet-icon svg { width: 22px; height: 22px; }
.hizmet-item h4 { margin-bottom: 4px; }
.hizmet-item p { font-size: 0.88rem; color: var(--ink-soft); }

.hizmet-vurgu {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 44px);
  text-align: center;
}
.hizmet-vurgu .big-num {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.hizmet-vurgu .big-label {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hizmet-vurgu-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 24px 0;
}

.hizmet-stat {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 12px 0;
}
.hizmet-stat .stat-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
}
.hizmet-stat .stat-lbl {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ============================================================
   #FIYATLAR — Pricing packages
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.price-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(239,68,68,0.14), 0 4px 12px -4px rgba(17,24,39,0.06);
}
.price-card.is-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.price-card.is-featured::before {
  content: 'Popüler';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--surface);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 50px;
}

.price-card-name {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.price-card-amount {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 4px;
}
.price-card-amount small {
  font-size: 0.5em;
  color: var(--ink-soft);
  font-weight: 400;
}

.price-card-desc {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
  line-height: 1.5;
}

.price-card h5 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 10px;
}

.price-card ul {
  list-style: none;
  margin-bottom: 16px;
}
.price-card li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 5px 0;
  padding-left: 22px;
  position: relative;
}
.price-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
.dahil li::before {
  background: rgba(16,185,129,0.15);
  box-shadow: inset 0 0 0 2px rgba(16,185,129,0.6);
}
.haric li::before {
  background: rgba(239,68,68,0.1);
  box-shadow: inset 0 0 0 2px rgba(239,68,68,0.4);
}
.haric li { color: var(--ink-soft); opacity: 0.7; }

.price-disclaimer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ============================================================
   #REFERANSLAR — Editorial testimonial grid
   ============================================================ */

.referans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .referans-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .referans-card:first-child {
    grid-row: span 2;
  }
}

.referans-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(24px, 3vw, 32px);
  position: relative;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1);
}
.referans-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(239,68,68,0.1), 0 4px 12px -4px rgba(17,24,39,0.05);
}
.referans-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  line-height: 1;
  color: var(--line);
  font-family: Georgia, serif;
}

.referans-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.referans-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.referans-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--surface);
  flex-shrink: 0;
}
.referans-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
}
.referans-detail {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* ============================================================
   #ILETISIM — Form + address
   ============================================================ */

.iletisim-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .iletisim-grid { grid-template-columns: 1.1fr 0.9fr; gap: 56px; }
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--surface);
  transition: border-color 240ms, box-shadow 240ms;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.12);
  outline: none;
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-group select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%234B5563' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  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-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
}
.kvkk-row label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
}
.kvkk-row a { text-decoration: underline; }

.contact-info-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.contact-row {
  display: contents;
  cursor: default;
}
.contact-row > * {
  transition: color 240ms cubic-bezier(.4,0,.2,1), transform 240ms cubic-bezier(.4,0,.2,1);
}
.contact-row:hover .c-icon {
  color: var(--accent);
  transform: scale(1.08);
}
.contact-row:hover .c-text {
  transform: translateX(4px);
}

.c-icon {
  width: 20px;
  height: 20px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.c-label {
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.c-text {
  font-size: 0.95rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.c-text a { color: var(--ink); }
.c-text a:hover { color: var(--accent); }

/* ============================================================
   #FAQ — details/summary pure CSS
   ============================================================ */

.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  transition: color 240ms;
}
.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;
  color: var(--ink-soft);
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
}
.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: 20px;
}
.faq-body p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ============================================================
   STATS — counter-up
   ============================================================ */

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 48px 0 0;
}
@media (min-width: 640px) {
  .stats-row { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px -8px rgba(17,24,39,0.06);
}
.stat-val {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--ink);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 6px;
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: clamp(48px, 8vw, 80px) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
}

.footer-brand .logo { color: var(--surface); margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; max-width: 32ch; }

.footer-col h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--surface);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  transition: color 200ms, transform 200ms;
  text-decoration: none;
}
.footer-col a:hover {
  color: var(--surface);
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}
.footer-contact-item a {
  display: inline;
  padding: 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  font-size: 0.78rem;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.78rem;
  padding: 0;
}
.footer-legal a:hover { color: var(--surface); 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);
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.15);
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (min-width: 640px) {
  .cookie-banner {
    left: 24px;
    right: auto;
    max-width: 420px;
  }
}

.cookie-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.cookie-text {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-text a { text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-btn {
  flex: 1;
  min-width: 100px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  border: 1.5px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink-soft);
  transition: background 200ms, color 200ms, border-color 200ms, transform 180ms, box-shadow 200ms;
}
.cookie-btn:hover {
  border-color: var(--ink);
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-1px);
}
.cookie-btn[data-consent="accept"] {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.cookie-btn[data-consent="accept"]:hover {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
  box-shadow: 0 4px 12px -4px rgba(239,68,68,0.3);
}
.cookie-btn[data-consent="reject"] {
  background: var(--surface-2);
  border-color: var(--line-strong);
  color: var(--ink);
}
.cookie-btn[data-consent="reject"]:hover {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(.22,.61,.36,1), transform 800ms cubic-bezier(.22,.61,.36,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal-stagger { transition-delay: calc(var(--i, 0) * 120ms); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ============================================================
   NICHE ANIMATIONS — wedding budget
   ============================================================ */

@keyframes ringShimmer {
  0%, 100% { filter: drop-shadow(0 0 0 transparent); }
  50% { filter: drop-shadow(0 0 6px rgba(239,68,68,0.25)); }
}
.ring-anim { animation: ringShimmer 8s ease-in-out infinite; }

@keyframes coinFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.coin-float { animation: coinFloat 10s ease-in-out infinite; }

@keyframes sparkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1); }
}
.sparkle-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  animation: sparkle 3s ease-in-out infinite;
  pointer-events: none;
}
.sparkle-dot:nth-child(2) { animation-delay: 1s; }
.sparkle-dot:nth-child(3) { animation-delay: 2s; }

@keyframes budgetBarFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.budget-bar {
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}
.budget-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  transform-origin: left;
  transform: scaleX(0);
}
.budget-bar-fill.is-in {
  animation: budgetBarFill 900ms cubic-bezier(.2,.7,.2,1) forwards;
}

@keyframes diamondPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.15); }
  50% { box-shadow: 0 0 0 12px rgba(239,68,68,0); }
}
.diamond-pulse { animation: diamondPulse 12s ease-in-out infinite; }

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-5px) rotate(0.4deg); }
  66% { transform: translateY(-2px) rotate(-0.3deg); }
}

@keyframes warmGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0), 0 0 0 1px var(--accent); }
  50% { box-shadow: 0 0 28px -4px rgba(239,68,68,0.15), 0 0 0 1px var(--accent); }
}

@keyframes subtleShine {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes rosePetal {
  0%, 100% { opacity: 0.6; transform: translateY(0) rotate(0deg) scale(0.9); }
  50% { opacity: 1; transform: translateY(-3px) rotate(8deg) scale(1); }
}

.btn-primary {
  background-image: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.14) 50%, transparent 70%);
  background-size: 200% 100%;
}
.btn-primary:hover {
  animation: subtleShine 700ms cubic-bezier(.22,.61,.36,1) forwards;
}

.price-card.is-featured {
  animation: warmGlow 7s cubic-bezier(.45,.05,.55,.95) infinite;
}

.trust-badge {
  animation: gentleFloat 14s cubic-bezier(.45,.05,.55,.95) infinite;
}
.trust-badge:nth-child(2) { animation-delay: -3.5s; }
.trust-badge:nth-child(3) { animation-delay: -7s; }
.trust-badge:nth-child(4) { animation-delay: -10.5s; }

.team-card:hover .team-avatar {
  transform: scale(1.08);
  box-shadow: 0 8px 20px -4px rgba(239,68,68,0.25);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.team-avatar {
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}

.stat-card:hover .stat-val {
  color: var(--accent);
  transition: color 280ms;
}
.stat-val {
  transition: color 280ms;
}

.faq-item summary {
  transition: color 240ms, padding-left 240ms;
}
.faq-item summary:hover {
  padding-left: 8px;
}

.drawer a {
  position: relative;
}
.drawer a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 300ms cubic-bezier(.2,.7,.2,1);
}
.drawer a:hover::before {
  width: 32px;
}

@media (prefers-reduced-motion: reduce) {
  .ring-anim, .coin-float, .sparkle-dot, .diamond-pulse,
  .trust-badge, .price-card.is-featured { animation: none; }
  .budget-bar-fill { transform: scaleX(1); animation: none; }
  .btn-primary { background-image: none; }
  .btn-primary:hover { animation: none; }
  .faq-item summary:hover { padding-left: 0; }
}

/* ============================================================
   PAGE-SPECIFIC: inner pages
   ============================================================ */

.page-hero {
  padding: clamp(40px, 6vw, 64px) 0;
  text-align: center;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero .section-sub { margin: 0 auto; }

.prose {
  max-width: 780px;
  margin: 0 auto;
}
.prose h2 {
  margin: 48px 0 16px;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.prose h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.prose h3 { margin: 28px 0 12px; font-size: clamp(1.1rem, 2vw, 1.35rem); }
.prose p { margin-bottom: 16px; font-size: 0.95rem; line-height: 1.75; color: var(--ink-soft); }
.prose ul, .prose ol { margin: 12px 0 20px 24px; }
.prose li { font-size: 0.95rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: 8px; }
.prose strong { color: var(--ink); }

/* Table scroll wrapper */
.table-scroll {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table {
  margin: 0 !important;
  min-width: 480px;
  width: 100%;
}
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--line);
}
th {
  font-weight: 700;
  color: var(--ink);
  background: var(--surface-2);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
td { color: var(--ink-soft); }

/* Thank you page */
.thankyou-box {
  text-align: center;
  padding: clamp(60px, 12vw, 120px) 0;
  max-width: 520px;
  margin: 0 auto;
}
.thankyou-box svg { width: 64px; height: 64px; color: var(--accent); margin-bottom: 24px; }
.thankyou-box h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 14px; }
.thankyou-box p { color: var(--ink-soft); margin-bottom: 28px; }

/* 404 */
.error-box {
  text-align: center;
  padding: clamp(60px, 12vw, 120px) 0;
}
.error-box .error-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 500;
  color: var(--line);
  line-height: 1;
}
.error-box h1 { margin: 16px 0 12px; }
.error-box p { color: var(--ink-soft); margin-bottom: 28px; }

/* Sitemap page */
.sitemap-list {
  list-style: none;
  max-width: 560px;
  margin: 32px auto 0;
}
.sitemap-list li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.sitemap-list a {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   ILETISIM PAGE (dedicated)
   ============================================================ */

.contact-channels {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.channel-row {
  display: contents;
}
.channel-row > * {
  transition: color 240ms cubic-bezier(.4,0,.2,1), transform 240ms cubic-bezier(.4,0,.2,1);
}
.channel-row:hover .ch-icon {
  color: var(--accent);
  transform: scale(1.08);
}
.channel-row:hover .ch-detail {
  transform: translateX(4px);
}
.ch-icon {
  width: 20px;
  height: 20px;
  color: var(--ink-soft);
  margin-top: 3px;
}
.ch-detail { min-width: 0; }
.ch-label {
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.ch-val {
  font-size: 0.95rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.ch-val a { color: var(--ink); text-decoration: none; }
.ch-val a:hover { color: var(--accent); }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(24px, 3vw, 32px);
  text-align: center;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(239,68,68,0.1);
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--surface);
}
.team-card:nth-child(1) .team-avatar { background: linear-gradient(135deg, var(--accent), #f97316); }
.team-card:nth-child(2) .team-avatar { background: linear-gradient(135deg, var(--accent-2), #6366f1); }
.team-card:nth-child(3) .team-avatar { background: linear-gradient(135deg, #10b981, var(--accent-2)); }
.team-card h4 { margin-bottom: 4px; }
.team-role {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 12px;
}
.team-bio {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============================================================
   CANCELLATION tier
   ============================================================ */
.cancel-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px 0;
}
@media (min-width: 640px) {
  .cancel-tiers { grid-template-columns: repeat(3, 1fr); }
}
.cancel-tier {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.cancel-tier .tier-days {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.cancel-tier .tier-result {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ============================================================
   ENHANCED INTERACTIONS — wedding budget theme
   ============================================================ */

.calc-widget {
  transition: box-shadow 400ms cubic-bezier(.22,.61,.36,1);
}

.step-num {
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), background 280ms;
}
.step-item:hover .step-num {
  transform: scale(1.08);
  background: rgba(239,68,68,0.18);
}

.price-card.is-featured:hover {
  animation: none;
  box-shadow: 0 20px 48px -12px rgba(239,68,68,0.22), 0 0 0 1.5px var(--accent);
  transform: translateY(-8px);
}

@keyframes warmPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.04); }
  50% { box-shadow: 0 0 24px 4px rgba(239,68,68,0.1); }
}
.calc-total-price { animation: warmPulse 5s cubic-bezier(.45,.05,.55,.95) infinite; }

.referans-card::before {
  transition: color 400ms cubic-bezier(.22,.61,.36,1), transform 400ms cubic-bezier(.22,.61,.36,1);
}
.referans-card:hover::before {
  color: rgba(239,68,68,0.18);
  transform: scale(1.12) rotate(2deg);
}

.hizmet-vurgu {
  transition: transform 400ms cubic-bezier(.22,.61,.36,1), box-shadow 400ms;
}
.hizmet-vurgu:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px -8px rgba(239,68,68,0.12), 0 4px 12px -4px rgba(17,24,39,0.04);
}

.faq-item summary:hover .faq-chevron {
  color: var(--accent);
}

.nav-toggle {
  border-radius: 8px;
  transition: background 200ms, border-color 200ms;
}
.nav-toggle:hover {
  background: rgba(17,24,39,0.06);
}

@media (max-width: 1023px) {
  .nav-toggle {
    background: var(--surface);
    border: 2px solid var(--ink);
    box-shadow: 0 2px 8px rgba(17,24,39,0.08);
  }
  .nav-toggle span {
    width: 22px;
    height: 2.5px;
    background: var(--ink);
  }
  .nav-toggle:hover {
    background: rgba(17,24,39,0.06);
    border-color: var(--ink);
  }
}

.footer-col a {
  position: relative;
}
.footer-col a::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.footer-col a:hover::before {
  width: 100%;
}

.contact-row a,
.channel-row a,
.c-text a {
  position: relative;
}
.c-text a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.c-text a:hover::after {
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .calc-total-price { animation: none; }
  .btn-primary:hover { animation: none; }
  .price-card:hover,
  .referans-card:hover,
  .team-card:hover,
  .stat-card:hover,
  .hizmet-vurgu:hover,
  .cancel-tier:hover,
  .hizmet-item:hover,
  .price-card.is-featured:hover { transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .referans-grid { grid-template-columns: 1fr; }
  .hizmetler-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .calc-radios { flex-direction: column; }
  .calc-radio { min-width: 0; }
  .trust-strip { gap: 8px; }
  .trust-badge { font-size: 0.75rem; padding: 6px 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .iletisim-grid { grid-template-columns: 1fr; }
  section { padding: clamp(40px, 8vw, 64px) 0; }
}

@media (max-width: 430px) {
  h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .calc-widget { padding: 20px 16px; }
  .price-card { padding: 20px 16px; }
  .stat-card { padding: 16px 10px; }
}

@media (max-width: 640px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    padding: 20px 20px calc(20px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 360px) {
  :root { --px: 16px; }
  .cookie-banner { padding: 16px 16px calc(16px + env(safe-area-inset-bottom, 0px)); }
  .cookie-actions { flex-direction: column; }
  .cookie-btn { min-height: 48px; font-size: 0.88rem; }
}

/* Prose cards on mobile for better readability */
@media (max-width: 640px) {
  .prose h2 {
    border-top: none;
    padding: 20px;
    margin: 28px -4px 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px 10px 0 0;
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  }
  .prose h2:first-child { margin-top: 0; }
  .prose h2 + p,
  .prose h2 + h3,
  .prose h2 + ul,
  .prose h2 + ol,
  .prose h2 + .table-scroll {
    margin-left: -4px;
    margin-right: -4px;
    padding-inline: 20px;
    background: var(--surface);
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }
}

/* Wedding-warm hero accent glow */
.hero::before {
  background: radial-gradient(circle, rgba(239,68,68,0.07) 0%, rgba(239,68,68,0.02) 40%, transparent 70%);
}

/* Warm romantic transition curves for buttons */
.btn-primary {
  transition: background 280ms cubic-bezier(.22,.61,.36,1), color 280ms, transform 220ms cubic-bezier(.22,.61,.36,1), box-shadow 280ms;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 10px 28px -8px rgba(239,68,68,0.4);
}

.btn-ghost {
  transition: background 280ms cubic-bezier(.22,.61,.36,1), color 280ms, border-color 280ms, transform 220ms cubic-bezier(.22,.61,.36,1), box-shadow 280ms;
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  box-shadow: 0 6px 16px -4px rgba(17,24,39,0.08);
}

/* Calc widget warm interaction */
.calc-widget:hover {
  box-shadow: 0 20px 48px -12px rgba(239,68,68,0.12), 0 0 0 1px rgba(239,68,68,0.08);
}

/* Team card warm avatar glow on hover */
.team-card:hover .team-avatar {
  box-shadow: 0 8px 24px -4px rgba(239,68,68,0.3);
}

/* Step number warm pulse on hover */
.step-item:hover .step-num {
  box-shadow: 0 0 16px -2px rgba(239,68,68,0.15);
}

/* Stat card warm accent on hover */
.stat-card {
  transition: transform 300ms cubic-bezier(.22,.61,.36,1), box-shadow 300ms, border-color 300ms;
}
.stat-card:hover {
  border-color: rgba(239,68,68,0.2);
  box-shadow: 0 10px 28px -8px rgba(239,68,68,0.08);
}

/* Cancel tier warm hover */
.cancel-tier {
  transition: transform 300ms cubic-bezier(.22,.61,.36,1), box-shadow 300ms, border-color 300ms;
}
.cancel-tier:hover {
  border-color: rgba(239,68,68,0.2);
}

/* Form inputs warm focus */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1), 0 2px 8px -2px rgba(239,68,68,0.08);
}

/* Print */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle { display: none !important; }
  main { padding-top: 0; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
