:root {
  --bg: #f4f7ff;
  --bg-soft: #eef2ff;
  --bg-card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --accent: #6366f1;
  --accent2: #a855f7;
  --accent3: #06b6d4;
  --border: rgba(15, 23, 42, 0.09);
  --radius: 16px;
  --radius-lg: 24px;
  --ease: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Instrument Serif', Georgia, serif;
  --shadow: 0 4px 24px rgba(99, 102, 241, 0.1);
  --shadow-lg: 0 24px 48px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

.landing-body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: linear-gradient(180deg, #f0f9ff 0%, #faf5ff 45%, #fff7ed 100%);
  color: var(--text);
  line-height: 1.65;
  overflow-x: clip;
  max-width: 100%;
  position: relative;
}

.landing-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  max-width: 100vw;
}
.landing-glow-1 { width: 600px; height: 600px; top: -200px; right: -100px; background: rgba(99, 102, 241, 0.22); opacity: 0.85; }
.landing-glow-2 { width: 500px; height: 500px; bottom: 20%; left: -150px; background: rgba(236, 72, 153, 0.16); }
.landing-glow-3 { width: 420px; height: 420px; top: 45%; right: 10%; background: rgba(16, 185, 129, 0.14); }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].visible { opacity: 1; transform: none; }

.serif-accent { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: #7c3aed; }

/* Header */
.landing-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 4vw, 48px);
  transition: background var(--ease), box-shadow var(--ease);
}
.landing-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

.landing-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 1.15rem;
  position: relative;
  z-index: 2;
}
.landing-logo-mark {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
  flex-shrink: 0;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  position: relative;
  z-index: 2;
}
.landing-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.2s;
}
.landing-nav a:hover { color: var(--text); }

.btn-ghost {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text) !important;
}
.btn-primary-sm {
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(99, 102, 241, 0.35);
}
.landing-menu-btn {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 1.4rem;
  padding: 8px 14px;
  cursor: pointer;
  z-index: 102;
  min-width: 44px;
  min-height: 44px;
  line-height: 1;
}

.landing-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
}
.landing-nav-backdrop.open { display: block; }

body.landing-menu-open { overflow: hidden; }

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: 140px clamp(20px, 4vw, 48px) 80px;
  min-height: 92vh;
  display: flex;
  align-items: center;
  max-width: 100%;
  overflow-x: clip;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  font-size: 0.8rem;
  font-weight: 700;
  color: #4338ca;
  margin-bottom: 24px;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px #22c55e;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.hero-lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.4);
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-primary-lg:hover { transform: translateY(-2px); box-shadow: 0 20px 50px rgba(99, 102, 241, 0.5); }
.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  background: #fff;
}
.btn-block { width: 100%; justify-content: center; }

.hero-stats {
  list-style: none;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stats strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hero-stats span { font-size: 0.82rem; color: var(--muted); font-weight: 600; }

/* Editor mock */
.hero-visual { position: relative; overflow: hidden; max-width: 100%; }
.editor-mock {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.editor-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}
.ed-dot { width: 10px; height: 10px; border-radius: 50%; background: #475569; }
.ed-dot:nth-child(1) { background: #ef4444; }
.ed-dot:nth-child(2) { background: #eab308; }
.ed-dot:nth-child(3) { background: #22c55e; }
.ed-url { margin-left: auto; font-size: 0.72rem; color: var(--muted); }
.editor-body { display: flex; min-height: 320px; }
.ed-sidebar {
  width: 120px;
  padding: 16px 10px;
  border-right: 1px solid var(--border);
  background: #f1f5f9;
}
.ed-side-item {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}
.ed-side-item.active { background: #e0e7ff; color: #4338ca; }
.ed-canvas { flex: 1; padding: 20px; position: relative; }
.tpl-carousel { position: relative; height: 100%; min-height: 260px; }
.tpl-slide {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.6s, transform 0.6s;
}
.tpl-slide.active { opacity: 1; transform: scale(1); }
.tpl-hero { height: 45%; background: linear-gradient(135deg, #3b82f6, #8b5cf6); }
.tpl-slide.barber .tpl-hero { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.tpl-slide.insurance .tpl-hero { background: linear-gradient(135deg, #0ea5e9, #6366f1); }
.tpl-cards { display: flex; gap: 8px; padding: 16px; }
.tpl-cards span { flex: 1; height: 56px; border-radius: 10px; background: rgba(99, 102, 241, 0.12); }
.tpl-label {
  position: absolute;
  bottom: 16px; left: 16px;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}
.hero-float-card {
  position: absolute;
  padding: 12px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  animation: float 5s ease-in-out infinite;
}
.float-1 { top: 8%; right: -8%; }
.float-2 { bottom: 12%; left: -6%; animation-delay: 1.5s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Marquee */
.logo-marquee {
  position: relative;
  z-index: 1;
  padding: 20px 0;
  border-block: 1px solid var(--border);
  background: var(--bg-soft);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 32px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: 100px clamp(20px, 4vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
}
.section-soft { background: linear-gradient(180deg, #eef2ff 0%, #fdf4ff 100%); max-width: none; }
.section-soft > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section-head.center { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: #e0e7ff;
  color: #4338ca;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.section-head p { color: var(--muted); max-width: 560px; margin: 0 auto; }

/* Tahsilat band — özelliklerden sonra */
.section-tahsilat {
  padding-top: 100px;
  padding-bottom: 100px;
}
.tahsilat-lead { max-width: 640px; margin: 0 auto; font-size: 1.05rem; line-height: 1.7; }
.tahsilat-band {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.tahsilat-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
  text-align: left;
}
.tahsilat-step {
  padding: 20px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-soft);
}
.tahsilat-step-num {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.tahsilat-step h3 { font-size: 1rem; margin-bottom: 6px; }
.tahsilat-step p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }
.tahsilat-note { color: var(--muted); font-size: 0.88rem; margin-bottom: 20px; }

/* Özellikler — eşit ızgara (taşma yok) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.feature-card {
  padding: 24px 22px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  min-height: 0;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-card-accent {
  border-color: rgba(99, 102, 241, 0.35);
  background: linear-gradient(165deg, #fff 0%, #eef2ff 100%);
}
.feature-icon { font-size: 1.75rem; margin-bottom: 12px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.55; }

/* Templates */
.template-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.template-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform 0.35s, box-shadow 0.35s;
}
.template-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.template-preview-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.template-preview-img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid var(--border);
  background: #e2e8f0;
}
.template-live-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #22c55e;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
}
.template-info { padding: 22px 24px 24px; }
.template-info h3 { font-size: 1.1rem; margin-bottom: 8px; }
.template-info p { color: var(--muted); font-size: 0.88rem; margin-bottom: 14px; }
.template-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
}
.template-link { color: #4f46e5; font-weight: 700; text-decoration: none; font-size: 0.9rem; }
.template-link:hover { color: #7c3aed; }
.template-link-alt { color: var(--muted); font-weight: 600; }
.template-link-alt:hover { color: #4f46e5; }
.template-preview-fallback {
  padding: 24px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}
.template-preview-fallback a { color: #4f46e5; font-weight: 700; }

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.timeline-step {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  position: relative;
}
.timeline-num {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.timeline-step h3 { font-size: 1rem; margin-bottom: 8px; }
.timeline-step p { font-size: 0.88rem; color: var(--muted); }

/* Pricing */
.pricing-trial-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto 36px;
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ecfdf5, #eef2ff);
  border: 1px solid rgba(16, 185, 129, 0.25);
  box-shadow: var(--shadow);
}
.pricing-trial-icon { font-size: 2rem; line-height: 1; }
.pricing-trial-banner strong { display: block; color: var(--text); margin-bottom: 4px; font-size: 1rem; }
.pricing-trial-banner p { color: var(--muted); font-size: 0.9rem; line-height: 1.55; margin: 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: start;
}
.price-card {
  padding: 28px 26px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-featured {
  border: 2px solid rgba(99, 102, 241, 0.45);
  background: linear-gradient(180deg, #fff 0%, #f5f3ff 100%);
  box-shadow: 0 28px 64px rgba(99, 102, 241, 0.18);
  position: relative;
}
.price-card-pro {
  background: linear-gradient(180deg, #fff 0%, #fffbeb 100%);
  border-color: rgba(245, 158, 11, 0.35);
}
.price-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.price-badge-pro {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}
.price-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}
.price-plan-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.price-card-pro .price-plan-icon { background: #fef3c7; }
.price-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 4px; color: var(--text); }
.price-tagline {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}
.price-tagline code { font-size: 0.78em; }
.price-amount {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  color: var(--text);
}
.price-amount small { font-size: 0.88rem; font-weight: 600; color: var(--muted); }
.currency { font-size: 1.35rem; vertical-align: super; color: var(--accent); }
.price-card-pro .currency { color: #d97706; }
.price-for {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--border);
}
.price-includes-all {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: #ecfdf5;
  border: 1px solid rgba(16, 185, 129, 0.2);
  font-size: 0.88rem;
  color: #166534;
}
.price-includes-all span:first-child {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: #22c55e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}
.price-feature-group {
  margin-bottom: 16px;
}
.price-feature-group h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #4338ca;
  margin-bottom: 8px;
}
.price-card-pro .price-feature-group h4 { color: #b45309; }
.price-feature-group h4 span { font-size: 1rem; }
.price-list { list-style: none; margin: 0; }
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #334155;
  border-bottom: none;
}
.price-list li + li { border-top: 1px solid rgba(15, 23, 42, 0.06); }
.pi-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: #dcfce7;
  color: #16a34a;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.price-list li strong { color: var(--text); font-weight: 700; }
.price-foot {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.45;
}
.price-btn-outline {
  margin-top: auto;
  text-align: center;
  display: block;
  width: 100%;
}
.price-card .btn-block { margin-top: auto; }
.pricing-compare-hint {
  max-width: 720px;
  margin: 32px auto 0;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}
.pricing-compare-hint strong { color: var(--text); }
code { background: #eef2ff; color: #4338ca; padding: 2px 8px; border-radius: 6px; font-size: 0.85em; }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.testimonial p { font-size: 1rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial footer { font-size: 0.85rem; color: var(--muted); }
.testimonial strong { color: var(--text); display: block; margin-bottom: 4px; }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
}
.faq-q {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--muted); transition: transform 0.3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 420px; }
.faq-a p { padding: 0 24px 20px; color: var(--muted); font-size: 0.92rem; }
.faq-a a { color: #4f46e5; font-weight: 600; }

/* CTA */
.cta-band {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  text-align: center;
}
.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 56px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(168, 85, 247, 0.15));
  border: 1px solid rgba(99, 102, 241, 0.35);
}
.cta-inner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.cta-inner p { color: var(--muted); margin-bottom: 28px; }

/* Footer */
.landing-footer {
  position: relative;
  z-index: 1;
  padding: 0;
  border-top: 1px solid var(--border);
  background: #fff;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px clamp(20px, 4vw, 48px) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
}
.footer-link-wa::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  vertical-align: -2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2325D366'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347z'/%3E%3Cpath d='M12 0C5.373 0 0 5.373 0 12c0 2.625.846 5.059 2.284 7.034L.789 23.492l4.604-1.206A11.94 11.94 0 0012 24c6.627 0 12-5.373 12-12S18.627 0 12 0zm0 21.818a9.82 9.82 0 01-5.01-1.37l-.36-.214-4.527 1.186 1.21-4.412-.234-.375A9.818 9.818 0 012.182 12c0-5.422 4.396-9.818 9.818-9.818S21.818 6.578 21.818 12 17.422 21.818 12 21.818z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.footer-col { min-width: 0; }
.footer-tagline {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 12px;
  line-height: 1.55;
}
.landing-footer .landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.landing-footer .landing-brand strong { color: var(--text); }
.landing-footer .landing-logo-mark { color: #fff; }
.footer-legal-col h4 { margin-bottom: 12px; }
.footer-legal {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--muted);
}
.footer-legal p { margin: 0 0 8px; }
.footer-legal strong { color: var(--text); font-weight: 700; }
.footer-legal a {
  display: inline;
  color: #4f46e5;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: inherit;
}
.footer-legal a:hover { color: #3730a3; }
.footer-payments {
  margin-top: 40px;
  padding: 36px clamp(24px, 5vw, 48px) 28px;
  background: #0a0a0a;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-payment-brands {
  display: block;
  height: clamp(30px, 5.5vw, 44px);
  width: auto;
  max-width: min(100%, 640px);
  object-fit: contain;
  object-position: center;
}
.footer-payments-note {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
}
@media (max-width: 1100px) and (min-width: 641px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-legal-col { grid-column: 1 / -1; }
}
.landing-footer h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 14px;
}
.landing-footer a.footer-link {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.landing-footer a.footer-link:hover { color: var(--text); }
.footer-copy {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  padding: 20px clamp(20px, 4vw, 48px) 28px;
  line-height: 1.6;
  border-top: 1px solid var(--border);
  background: #fff;
}

.compare-wrap {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}
.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.compare-table thead th {
  background: var(--bg-soft);
  font-weight: 800;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table td:first-child {
  font-weight: 600;
  color: var(--muted);
  width: 28%;
}
.compare-table th:nth-child(2),
.compare-table td:nth-child(2) {
  background: rgba(99, 102, 241, 0.06);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; max-width: min(520px, 100%); margin: 0 auto; width: 100%; }
  .float-1, .float-2 { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .tahsilat-steps { grid-template-columns: 1fr; }
  .template-showcase, .timeline, .testimonial-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; }
  .price-featured { order: -1; }
}

@media (max-width: 768px) {
  .landing-header {
    padding: 12px max(16px, env(safe-area-inset-left)) 12px max(16px, env(safe-area-inset-right));
    padding-top: max(12px, env(safe-area-inset-top));
  }

  .landing-menu-btn { display: flex; align-items: center; justify-content: center; }

  .landing-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 88vw);
    height: 100%;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: max(72px, calc(56px + env(safe-area-inset-top))) 20px max(24px, env(safe-area-inset-bottom));
    background: #fff;
    border-left: 1px solid var(--border);
    box-shadow: -8px 0 32px rgba(15, 23, 42, 0.12);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s var(--ease), visibility 0.35s;
    z-index: 101;
    overflow-y: auto;
  }

  .landing-nav.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .landing-nav a:not(.btn-ghost):not(.btn-primary-sm) {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  .landing-nav .btn-ghost,
  .landing-nav .btn-primary-sm {
    margin-top: 12px;
    text-align: center;
    justify-content: center;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .hero {
    padding: max(88px, calc(72px + env(safe-area-inset-top))) 16px 48px;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
    letter-spacing: -0.03em;
  }

  .hero-lead {
    font-size: 1rem;
    max-width: none;
    margin-bottom: 24px;
  }

  .hero-pill {
    font-size: 0.72rem;
    padding: 6px 12px;
    margin-bottom: 16px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 28px;
  }

  .hero-cta a {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
  }

  .hero-stats li {
    padding: 12px 8px;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border);
    border-radius: 12px;
  }

  .hero-stats strong { font-size: 1.25rem; }
  .hero-stats span { font-size: 0.7rem; line-height: 1.3; display: block; }

  .ed-sidebar { display: none; }
  .ed-url { display: none; }
  .editor-body { min-height: 220px; }
  .ed-canvas { padding: 12px; }
  .tpl-carousel { min-height: 200px; }

  .float-1, .float-2 { display: none; }

  .section {
    padding: 64px 16px;
  }

  .section-soft {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-head.center { margin-bottom: 36px; }

  .section-head h2 {
    font-size: clamp(1.45rem, 5.5vw, 1.85rem);
  }

  .section-head p {
    font-size: 0.92rem;
    padding: 0 4px;
  }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 20px 18px; }
  .tahsilat-band { padding: 24px 16px; }

  .template-preview { height: 160px; }
  .template-info { padding: 20px; }

  .timeline-step { padding: 22px 20px; }
  .timeline-num { font-size: 2rem; }

  .price-card { padding: 28px 22px; }
  .price-amount { font-size: 2.5rem; margin-bottom: 20px; }

  .testimonial { padding: 22px 20px; }

  .faq-q {
    padding: 16px 18px;
    font-size: 0.95rem;
    min-height: 52px;
  }

  .faq-item.open .faq-a { max-height: 320px; }

  .cta-band { padding: 48px 16px; }
  .cta-inner { padding: 36px 22px; }

  .footer-inner {
    padding: 40px 16px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }

  .footer-brand-col,
  .footer-legal-col {
    grid-column: 1 / -1;
  }

  .footer-payments {
    margin-top: 28px;
    padding: 28px 20px 24px;
    border-radius: var(--radius);
  }

  .footer-payment-brands {
    max-width: 100%;
  }

  .footer-copy {
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }

  .landing-footer {
    padding: 0;
  }

  .compare-wrap {
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius);
  }

  #karsilastirma {
    overflow-x: clip;
  }

  .marquee-track { font-size: 0.8rem; gap: 24px; }

  .landing-glow-1 { width: 280px; height: 280px; opacity: 0.5; }
  .landing-glow-2, .landing-glow-3 { opacity: 0.35; }
}

@media (max-width: 480px) {
  .hero-inner { gap: 24px; }

  .hero h1 { font-size: clamp(1.65rem, 8vw, 2rem); }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-stats li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 12px 14px;
  }

  .hero-stats strong { font-size: 1.35rem; }
  .hero-stats span { font-size: 0.78rem; text-align: right; max-width: 55%; }

  .section { padding: 52px 14px; }

  .price-amount { font-size: 2.15rem; }

  .compare-table { font-size: 0.78rem; min-width: 580px; }
  .compare-table th,
  .compare-table td { padding: 10px 12px; }

  .btn-primary-lg { padding: 14px 22px; font-size: 0.95rem; }
  .btn-outline-lg { padding: 14px 22px; font-size: 0.95rem; }
}
