/* ============================================================
   evplanim.ai — Tasarım Sistemi
   Marka: Koyu lacivert zemin + altın vurgu
   ============================================================ */

:root {
  --bg: #0a1122;
  --bg-soft: #0d1630;
  --surface: #111c38;
  --surface-2: #16234a;
  --border: rgba(148, 168, 209, 0.14);
  --border-strong: rgba(148, 168, 209, 0.28);
  --text: #f2f5fb;
  --text-soft: #b9c3d8;
  --muted: #8592ad;
  --gold: #e9b949;
  --gold-2: #f2cd6b;
  --gold-deep: #c99a2e;
  --green: #34d399;
  --red: #f87171;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 50px rgba(3, 8, 20, 0.55);
  --maxw: 1160px;
  --header-h: 74px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- Tipografi ---------- */
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
h1 { font-size: clamp(2.1rem, 5.4vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
h3 { font-size: 1.18rem; }
p  { color: var(--text-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(233, 185, 73, 0.09);
  border: 1px solid rgba(233, 185, 73, 0.25);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.06rem; }

.gold { color: var(--gold); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--gold-deep));
  color: #1a1405;
  box-shadow: 0 10px 30px rgba(233, 185, 73, 0.28);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(233, 185, 73, 0.38); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-lg { padding: 17px 34px; font-size: 1.05rem; border-radius: 14px; }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 17, 34, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); background: rgba(10, 17, 34, 0.92); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; }

.logo { display: inline-flex; align-items: center; gap: 0; font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em; white-space: nowrap; }
.logo .mark { height: 48px; width: 110px; object-fit: cover; flex: none; mix-blend-mode: screen; background: transparent; margin-right: 10px; }
.logo .brand-gold { color: var(--gold); }
.logo .ai { color: var(--text-soft); font-weight: 600; }

.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: color 0.15s ease;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }

.header-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  width: 44px; height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 84px) 0 96px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -240px; left: 50%;
  transform: translateX(-50%);
  width: 1100px; height: 640px;
  background: radial-gradient(closest-side, rgba(233, 185, 73, 0.16), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 168, 209, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 168, 209, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 0%, black 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 0%, black 25%, transparent 78%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 850px; margin: 0 auto; }
.hero p.lead { margin: 22px auto 36px; font-size: clamp(1.02rem, 2.2vw, 1.22rem); max-width: 640px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 0.86rem; color: var(--muted); }

/* Hero yol seçim butonları */
.path-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .path-actions {
    flex-direction: row;
    max-width: 760px;
  }
}
.path-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  padding: 12px 18px;
  border-radius: 100px;
  border: 1px solid var(--border-strong);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  flex: 1;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.path-btn:hover { transform: translateY(-3px) scale(1.02); }
.path-ico { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex: none; position: relative; transition: all 0.3s ease; }
.path-txt { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.path-txt b { font-size: 0.95rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; color: var(--text); transition: color 0.3s ease; }
.path-txt small { font-size: 0.75rem; color: var(--muted); line-height: 1.2; font-weight: 400; transition: color 0.3s ease; }
.path-arrow { margin-left: auto; font-size: 1.2rem; opacity: 0; transition: all 0.3s ease; transform: translateX(-10px); flex: none; }
.path-btn:hover .path-arrow { transform: translateX(0); opacity: 1; }

.path-btn-primary {
  border-color: rgba(233, 185, 73, 0.3);
}
.path-btn-primary:hover {
  border-color: var(--gold);
  background: rgba(233, 185, 73, 0.05);
  box-shadow: 0 10px 30px rgba(233, 185, 73, 0.15), inset 0 0 20px rgba(233, 185, 73, 0.05);
}
.path-btn-primary .path-ico { 
  background: linear-gradient(135deg, rgba(233, 185, 73, 0.15), transparent); 
  color: var(--gold); 
  border: 1px solid rgba(233, 185, 73, 0.3);
}
.path-btn-primary:hover .path-ico {
  background: var(--gold);
  color: #1a1405;
  box-shadow: 0 0 20px rgba(233, 185, 73, 0.6);
}
.path-btn-primary .path-arrow { color: var(--gold); }

.path-btn-secondary {
  border-color: rgba(148, 168, 209, 0.2);
}
.path-btn-secondary:hover {
  border-color: rgba(148, 168, 209, 0.5);
  background: rgba(148, 168, 209, 0.03);
  box-shadow: 0 10px 30px rgba(148, 168, 209, 0.1), inset 0 0 20px rgba(148, 168, 209, 0.05);
}
.path-btn-secondary .path-ico { 
  background: linear-gradient(135deg, rgba(148, 168, 209, 0.1), transparent); 
  color: #94a8d1; 
  border: 1px solid rgba(148, 168, 209, 0.2);
}
.path-btn-secondary:hover .path-ico {
  background: #94a8d1;
  color: #0f172a;
  box-shadow: 0 0 20px rgba(148, 168, 209, 0.4);
}
.path-btn-secondary .path-arrow { color: #94a8d1; }

/* Menüdeki kitle linkleri (ikonlu) */
.main-nav a.nav-aud { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 8px; transition: all 0.2s ease; border: 1px solid transparent; }
.main-nav a.nav-aud:nth-child(1) { background: rgba(233,185,73,0.08); color: var(--gold); border-color: rgba(233,185,73,0.2); }
.main-nav a.nav-aud:nth-child(1):hover { background: rgba(233,185,73,0.15); box-shadow: 0 0 12px rgba(233,185,73,0.2); }
.main-nav a.nav-aud:nth-child(1) svg { opacity: 1; }
.main-nav a.nav-aud:nth-child(2) { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.08); }
.main-nav a.nav-aud:nth-child(2):hover { background: rgba(255,255,255,0.08); }
.main-nav a.nav-aud svg { opacity: 0.7; flex: none; }

/* Live Ticker Component */
.live-ticker-container {
  display: flex;
  align-items: center;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(148, 168, 209, 0.15);
  border-radius: 100px;
  padding: 8px 16px;
  margin: 24px auto 0;
  max-width: 680px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.live-ticker-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  padding-right: 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 16px;
  z-index: 2;
}
.pulse-dot {
  width: 8px; height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
}
@keyframes pulse {
  to { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}
.live-ticker-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.live-ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 25s linear infinite;
}
.live-ticker-track:hover {
  animation-play-state: paused;
}
.ticker-item {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 0 24px;
  white-space: nowrap;
}
.ticker-item b {
  color: var(--text);
  font-weight: 600;
}
@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.hero-stats {
  position: relative; z-index: 1;
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 860px;
}
.stat {
  background: rgba(17, 28, 56, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
}
.stat b { display: block; font-size: 1.5rem; color: var(--gold); letter-spacing: -0.02em; }
.stat span { font-size: 0.83rem; color: var(--muted); }

.trust-shield {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 16px 20px;
  border-radius: 12px;
  max-width: 850px;
  margin: 32px auto 0;
  text-align: left;
}
.trust-shield svg { flex: none; margin-top: 2px; }
.trust-shield p { margin: 0; font-size: 0.95rem; color: rgba(255,255,255,0.85); line-height: 1.5; }
.trust-shield p b { color: #10b981; }
.trust-shield p strong { color: #fff; font-weight: 600; }

/* ---------- Bölümler ---------- */
section { padding: 88px 0; }
section.tight { padding: 64px 0; }

.band {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Kitle kartları */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.audience-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.audience-card:hover { transform: translateY(-4px); border-color: rgba(233, 185, 73, 0.4); }
.audience-card .icon { width: 52px; height: 52px; margin-bottom: 20px; }
.audience-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.audience-card p { margin-bottom: 22px; }
.audience-card ul { list-style: none; margin-bottom: 26px; display: grid; gap: 10px; }
.audience-card li { display: flex; gap: 10px; align-items: flex-start; color: var(--text-soft); font-size: 0.95rem; }
.audience-card li svg { flex: none; margin-top: 4px; }

/* Özellik kartları */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.feature:hover { transform: translateY(-4px); border-color: rgba(233, 185, 73, 0.35); }
.feature .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(233, 185, 73, 0.1);
  border: 1px solid rgba(233, 185, 73, 0.28);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature h3 { margin-bottom: 8px; }
.feature p { font-size: 0.94rem; }

/* Nasıl çalışır */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 26px;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: inline-block;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--gold);
  background: rgba(233, 185, 73, 0.1);
  border: 1px solid rgba(233, 185, 73, 0.3);
  border-radius: 9px;
  padding: 5px 11px;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 7px; }
.step p { font-size: 0.9rem; }

/* Güven şeridi */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
  align-items: center;
}
.trust-item { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 0.92rem; font-weight: 600; }
.trust-item svg { flex: none; }

/* CTA bandı */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, rgba(233, 185, 73, 0.14), rgba(233, 185, 73, 0.04));
  border: 1px solid rgba(233, 185, 73, 0.3);
  border-radius: var(--radius-lg);
  padding: 58px 40px;
  text-align: center;
  overflow: hidden;
}
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { max-width: 560px; margin: 0 auto 30px; }

/* ---------- Fiyatlandırma ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.plan:hover { transform: translateY(-4px); }
.plan.popular {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(233, 185, 73, 0.07), var(--surface) 45%);
  box-shadow: var(--shadow);
}
.plan .badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: #1a1405;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan h3 { font-size: 1.2rem; }
.plan .plan-desc { font-size: 0.9rem; margin-top: 6px; min-height: 44px; }
.plan .price { margin: 22px 0 4px; font-size: 2.35rem; font-weight: 800; letter-spacing: -0.03em; }
.plan .price small { font-size: 0.95rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.plan .price-note { font-size: 0.82rem; color: var(--muted); margin-bottom: 22px; }
.plan ul { list-style: none; display: grid; gap: 11px; margin-bottom: 30px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.93rem; color: var(--text-soft); }
.plan li svg { flex: none; margin-top: 4px; }
.plan li.no { color: var(--muted); opacity: 0.65; }
.plan .btn { margin-top: auto; width: 100%; }

.pricing-note {
  margin-top: 34px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

/* SSS */
.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 24px;
  transition: border-color 0.2s ease;
}
.faq details[open] { border-color: rgba(233, 185, 73, 0.35); }
.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 19px 30px 19px 0;
  list-style: none;
  position: relative;
  font-size: 0.98rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 600;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 0 20px; font-size: 0.94rem; }

/* ---------- İç sayfa hero ---------- */
.page-hero {
  padding: calc(var(--header-h) + 64px) 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -260px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 520px;
  background: radial-gradient(closest-side, rgba(233, 185, 73, 0.12), transparent 70%);
  pointer-events: none;
}
.page-hero p { max-width: 640px; margin: 16px auto 0; font-size: 1.05rem; }

/* ---------- İçerik / yasal sayfalar ---------- */
.prose {
  max-width: 820px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 52px);
}
.prose h2 { font-size: 1.35rem; margin: 34px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.05rem; margin: 24px 0 8px; }
.prose p, .prose li { font-size: 0.96rem; color: var(--text-soft); margin-bottom: 12px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 14px; }
.prose li { margin-bottom: 7px; }
.prose strong { color: var(--text); }
.prose .updated { font-size: 0.84rem; color: var(--muted); margin-bottom: 26px; }
.prose mark {
  background: rgba(233, 185, 73, 0.18);
  color: var(--gold-2);
  border: 1px dashed rgba(233, 185, 73, 0.5);
  border-radius: 6px;
  padding: 1px 7px;
  font-weight: 600;
}
.prose table { width: 100%; border-collapse: collapse; margin: 14px 0 20px; font-size: 0.92rem; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border: 1px solid var(--border); color: var(--text-soft); }
.prose th { color: var(--text); background: rgba(255, 255, 255, 0.03); }

/* ---------- Hakkımızda ---------- */
.about-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; align-items: center; }
.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 26px; align-items: start; }
.contact-cards { display: grid; gap: 14px; }
.contact-card {
  display: flex; gap: 16px; align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.contact-card:hover { border-color: rgba(233, 185, 73, 0.4); transform: translateY(-2px); }
.contact-card .icon {
  width: 44px; height: 44px; flex: none;
  border-radius: 11px;
  background: rgba(233, 185, 73, 0.1);
  border: 1px solid rgba(233, 185, 73, 0.28);
  display: flex; align-items: center; justify-content: center;
}
.contact-card b { display: block; font-size: 0.95rem; }
.contact-card span { font-size: 0.88rem; color: var(--muted); word-break: break-word; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 7px; color: var(--text-soft); }
input, textarea, select {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border-strong);
  border-radius: 11px;
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  padding: 13px 15px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(233, 185, 73, 0.15);
}
textarea { min-height: 130px; resize: vertical; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 64px 0 0;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-brand p { margin: 16px 0 22px; font-size: 0.92rem; max-width: 300px; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { font-size: 0.93rem; color: var(--text-soft); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--gold); }

.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 11px;
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.social-row a:hover { border-color: var(--gold); background: rgba(233, 185, 73, 0.08); transform: translateY(-2px); }
.social-row svg { width: 18px; height: 18px; fill: var(--text-soft); }
.social-row a:hover svg { fill: var(--gold); }

.payment-band {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.payment-logos { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.payment-logos .pay-logo {
  height: 34px;
  padding: 0 12px;
  display: flex; align-items: center;
  background: #ffffff;
  border-radius: 8px;
}
.payment-logos .pay-logo svg { height: 18px; width: auto; }
.payment-logos .pay-logo.iyzico img { height: 22px; width: auto; }
.secure-note { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--muted); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--muted);
}
.footer-bottom .legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- AI DEMO SECTION ---------- */
.ai-demo-section { padding: 96px 0; overflow: hidden; }
.ai-demo-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .ai-demo-grid { grid-template-columns: 1fr; gap: 40px; } }
.ai-demo-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1.15; margin: 16px 0 24px; }
.ai-demo-text p { font-size: 1.05rem; color: var(--muted); line-height: 1.6; }
.check-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.check-list li svg { color: var(--gold); flex: none; }

.chat-mockup {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 168, 209, 0.15);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.mockup-header {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(148, 168, 209, 0.1);
}
.mockup-header .dots { display: flex; gap: 6px; }
.mockup-header .dots span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-header .dots .r { background: #ef4444; }
.mockup-header .dots .y { background: #f59e0b; }
.mockup-header .dots .g { background: #10b981; }
.mockup-header .title { font-size: 0.75rem; color: var(--muted); font-family: monospace; }
.mockup-body { padding: 24px; display: flex; flex-direction: column; gap: 20px; }

.msg { display: flex; gap: 12px; align-items: flex-start; }
.msg .avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; flex: none; }
.user-msg .avatar { background: rgba(148, 168, 209, 0.1); color: #94a8d1; }
.user-msg .bubble { background: rgba(148, 168, 209, 0.05); border: 1px solid rgba(148, 168, 209, 0.1); padding: 14px 18px; border-radius: 0 16px 16px 16px; font-size: 0.95rem; color: var(--text); line-height: 1.5; }

.ai-msg .avatar { background: rgba(233, 185, 73, 0.1); color: var(--gold); border: 1px solid rgba(233, 185, 73, 0.2); }
.ai-msg .bubble { background: linear-gradient(135deg, rgba(233, 185, 73, 0.08), rgba(233, 185, 73, 0.02)); border: 1px solid rgba(233, 185, 73, 0.3); padding: 16px 20px; border-radius: 16px 16px 16px 0; font-size: 0.95rem; color: var(--text); width: 100%; box-shadow: 0 4px 20px rgba(233, 185, 73, 0.05); }

.ai-msg.typing .bubble { display: flex; gap: 4px; padding: 16px 20px; width: auto; align-items: center; }
.ai-msg.typing .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: typing 1.4s infinite; opacity: 0.4; }
.ai-msg.typing .dot:nth-child(2) { animation-delay: 0.2s; }
.ai-msg.typing .dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%, 100% { transform: translateY(0); opacity: 0.4; } 50% { transform: translateY(-4px); opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.score-bars { display: flex; flex-direction: column; gap: 8px; margin: 16px 0; }
.score-row { display: flex; align-items: center; gap: 12px; font-size: 0.85rem; }
.score-row > span:first-child { width: 90px; color: var(--muted); }
.score-row > span:last-child { width: 60px; text-align: right; font-weight: 600; }
.score-row .bar { flex: 1; height: 6px; background: rgba(255,255,255,0.05); border-radius: 4px; overflow: hidden; }
.score-row .bar .fill { height: 100%; border-radius: 4px; }
.gold-fill { background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.green-fill { background: #10b981; box-shadow: 0 0 10px #10b981; }
.yellow-fill { background: #f59e0b; box-shadow: 0 0 10px #f59e0b; }
.decision { font-size: 0.9rem; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.05); line-height: 1.5; color: rgba(255,255,255,0.85); }

/* ---------- Scroll reveal (yalnızca JS varsa gizle) ---------- */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
html.js .reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(10, 17, 34, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 22px 24px;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .nav-open .main-nav { display: flex; }
  .main-nav a { padding: 15px 4px; border-bottom: 1px solid var(--border); font-size: 1.02rem; }
  .main-nav a:last-of-type { border-bottom: none; }
  .nav-toggle { display: flex; }
  .header-cta .btn-ghost { display: none; }

  .audience-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .plan.popular { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
}

@media (max-width: 620px) {
  .path-actions { grid-template-columns: 1fr; max-width: 400px; }
}

@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero { padding-top: calc(var(--header-h) + 56px); }
  .hero-actions .btn { width: 100%; }
  .cta-band { padding: 42px 24px; }
  .payment-band { justify-content: center; text-align: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ================== INDEX HERO V4 ================== */
.hero-v4 { padding: calc(var(--header-h) + 58px) 0 74px; }
.hero-v4::before { left: 62%; top: -210px; width: 980px; height: 700px; }
.hero-v4-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); gap: 54px; align-items: center; }
.hero-v4-copy { text-align: left; min-width: 0; }
.hero-v4-copy h1 { font-size: clamp(3rem, 5.1vw, 5rem); line-height: .99; max-width: 760px; }
.hero-v4-copy .lead { margin: 24px 0 30px; max-width: 650px; font-size: clamp(1rem, 1.45vw, 1.17rem); line-height: 1.65; }
.dream-actions-v4 { max-width: 720px; margin: 0; gap: 14px; }
.dream-actions-v4 .dream-card { padding: 21px 20px; gap: 13px; min-height: 224px; }
.dream-actions-v4 .dream-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.dream-actions-v4 .dream-card p { font-size: .86rem; line-height: 1.55; }
.dream-icon-svg { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: var(--gold); background: rgba(233,185,73,.08); border: 1px solid rgba(233,185,73,.22); }
.dream-card-secondary .dream-icon-svg { color: #a9b9db; background: rgba(148,168,209,.07); border-color: rgba(148,168,209,.18); }
.dream-icon-svg svg { width: 31px; height: 31px; }
.hero-note-v4 { text-align: left; margin: 14px 0 0; font-size: .79rem; }
.hero-note-v4 span { color: var(--gold); margin: 0 5px; }
.hero-v4-visual { position: relative; isolation: isolate; min-height: 530px; display: grid; place-items: center; }
.hero-v4-visual img { position: relative; z-index: 2; width: min(100%, 690px); border-radius: 28px; object-fit: cover; box-shadow: 0 28px 100px rgba(0,0,0,.46), 0 0 70px rgba(233,185,73,.12); -webkit-mask-image: radial-gradient(ellipse 92% 88% at 50% 48%, #000 63%, transparent 100%); mask-image: radial-gradient(ellipse 92% 88% at 50% 48%, #000 63%, transparent 100%); }
.hero-visual-glow { position: absolute; z-index: 1; width: 76%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(233,185,73,.24), rgba(233,185,73,.05) 46%, transparent 72%); filter: blur(20px); animation: heroGlow 4s ease-in-out infinite; }
.hero-visual-chip { position: absolute; z-index: 4; display: flex; align-items: center; gap: 7px; padding: 10px 13px; border-radius: 12px; background: rgba(10,17,34,.78); border: 1px solid rgba(233,185,73,.2); box-shadow: 0 10px 30px rgba(0,0,0,.28); backdrop-filter: blur(13px); color: var(--text); font-size: .77rem; font-weight: 700; animation: chipFloat 4s ease-in-out infinite; }
.hero-visual-chip span { color: var(--gold); }
.chip-analysis { right: 1%; top: 16%; }
.chip-route { left: 1%; bottom: 24%; animation-delay: -.9s; }
.chip-match { right: 2%; bottom: 18%; animation-delay: -1.8s; }
@keyframes heroGlow { 0%,100%{transform:scale(.96);opacity:.72} 50%{transform:scale(1.05);opacity:1} }
@keyframes chipFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@media (max-width: 1080px) {
  .hero-v4-grid { grid-template-columns: 1fr; gap: 26px; }
  .hero-v4-copy { text-align: center; }
  .hero-v4-copy h1, .hero-v4-copy .lead { margin-left: auto; margin-right: auto; }
  .dream-actions-v4 { margin-left: auto; margin-right: auto; }
  .hero-note-v4 { text-align: center; }
  .hero-v4-visual { min-height: 460px; max-width: 760px; margin: 0 auto; }
}
@media (max-width: 680px) {
  .hero-v4 { padding-top: calc(var(--header-h) + 44px); }
  .hero-v4-copy h1 { font-size: clamp(2.55rem, 12vw, 3.7rem); }
  .dream-actions-v4 { grid-template-columns: 1fr; }
  .dream-actions-v4 .dream-card { min-height: auto; }
  .hero-v4-visual { min-height: 330px; }
  .hero-visual-chip { display: none; }
}
