/* KolayCv — assets/css/main.css */
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;600;700&display=swap');

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f8fafc;
  color: #1e293b;
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
@supports (overflow-x: clip) {
  html, body { overflow-x: clip; }
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── CSS Variables ─────────────────────────────────────────────────────────── */
:root {
  --primary:     #2563eb;
  --primary-d:   #5a67d8;
  --secondary:   #1d4ed8;
  --accent:      #f093fb;
  --bg-dark:     #0a0a1a;
  --bg-card:     #ffffff;
  --bg-card2:    #1e293b;
  --border:      #e2e8f0;
  --text:        #1e293b;
  --text-muted:  #475569;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 32px rgba(37,99,235,0.15);
  --transition:  0.2s ease;
}

/* ── Typography ────────────────────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav message badge */
.nav-msg-badge {
  position: absolute;
  top: -3px; right: -3px;
  min-width: 16px; height: 16px;
  background: #ef4444;
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  border: 2px solid #fff;
}
.user-avatar-btn { position: relative; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: #1e293b;
  color: #fff;
  box-shadow: 0 4px 16px rgba(30,41,59,0.3);
}
.btn-primary:hover { transform: translateY(-2px); background:#0f172a; box-shadow: 0 8px 24px rgba(30,41,59,0.4); }
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #e2e8f0;
  border-color: rgba(255,255,255,0.2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); color:#fff; }
.btn-white { background: #fff; color: #1a1a2e; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-sm  { padding: 8px 16px; font-size: 13px; }
.btn-lg  { padding: 14px 32px; font-size: 16px; border-radius: 14px; }

/* ── Navbar ────────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 10px 0;
  transition: all 0.3s ease;
  background: rgba(15,23,42,0.95);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.navbar.scrolled {
  background: rgba(10,15,30,0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-color: rgba(255,255,255,0.1);
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  padding: 2px 0;
}
.nav-logo img {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen;
  transition: opacity 0.2s;
}
.nav-logo img:hover { opacity: 0.85; }
.navbar.scrolled .nav-logo img { opacity: 1; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  padding: 7px 10px;
  border-radius: 7px;
  font-size: 13px;
  color: #94a3b8;
  transition: all 0.18s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0;
}
.nav-link:hover { color: #f1f5f9; background: rgba(255,255,255,0.08); }
.nav-link.active { color: #fff; background: rgba(255,255,255,0.12); font-weight: 600; }
.nav-ico { font-size: 11px; opacity: .8; }
/* İlana Özel CV — diğer ana nav linkleriyle aynı görünüm */
.nav-link-job {
  background: transparent !important;
  color: #94a3b8 !important;
  border: 0;
  font-weight: 500 !important;
}
.nav-link-job:hover { color: #f1f5f9 !important; background: rgba(255,255,255,0.08) !important; }
.nav-link-job.active { color:#fff !important; background: rgba(255,255,255,0.12) !important; font-weight:600 !important; }
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }
.nav-cvs-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 0;
  color: #94a3b8;
  padding: 7px 10px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0;
  transition: all 0.18s ease;
}
.nav-cvs-link:hover,
.nav-cvs-link.active {
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-weight: 600;
}
.nav-cvs-link i { font-size: 11px; opacity: .8; }

/* Kredi badge */
.nav-credits-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.25);
  color: #fbbf24;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all .18s;
  white-space: nowrap;
}
.nav-credits-badge:hover { background: rgba(245,158,11,.22); color:#fde68a; border-color:rgba(245,158,11,.45); }
.nav-credits-badge i { font-size: 11px; }
/* Chevron */
.nav-chevron { font-size: 10px; opacity: .6; margin-left: 1px; }

/* User Avatar — Light Tema */
.user-avatar-menu { position: relative; }
.user-avatar-btn {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 6px 12px;
  color: #e2e8f0;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.user-avatar-btn:hover { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.15); }
.avatar-name { font-weight: 600; color: #e2e8f0; }
.avatar-circle {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, #1e293b, #2563eb);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 12px; flex-shrink:0;
}
/* Dropdown — Koyu Navy, Beyaz Metin (Foto 2 gibi) */
.avatar-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: #1e293b;
  border: 1.5px solid #334155;
  border-radius: 16px;
  padding: 8px;
  min-width: 230px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: all 0.2s;
  z-index: 9999;
}
.avatar-dropdown.show { opacity: 1; pointer-events: all; transform: translateY(0); }
.avatar-dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: 10px;
  font-size: 14px; color: #e2e8f0; font-weight: 500;
  transition: background 0.15s;
  text-decoration: none;
}
.avatar-dropdown a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.avatar-dropdown a.danger { color: #f87171; }
.avatar-dropdown a.danger:hover { background: rgba(239,68,68,0.15); color: #fca5a5; }
.dropdown-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 6px 0; }
/* Dropdown kullanıcı bilgi alanı */
.dd-user-info { padding: 12px 14px 10px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 4px; }
.dd-user-info strong { display: block; font-size: 14px; color: #fff; margin-bottom: 3px; font-weight: 700; }
.dd-user-info span { font-size: 12px; color: #60a5fa; font-weight: 600; }

/* Hamburger — sağa sabitlenmiş */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  cursor: pointer;
  margin-left: auto; /* her zaman sağa yapışık */
  flex-shrink: 0;
}
.hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: #ffffff; border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu — Slide-in drawer */
.mobile-menu {
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: 300px; z-index: 999;
  background: #0f172a;
  border-left: 1px solid #1e293b;
  display: flex; flex-direction: column;
  transition: right 0.28s cubic-bezier(.4,0,.2,1);
  box-shadow: -12px 0 48px rgba(0,0,0,.35);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }

/* Mobile menu header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #1e293b;
  flex-shrink: 0;
}
.mobile-menu-close {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: #94a3b8;
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: all .15s;
}
.mobile-menu-close:hover { background: rgba(255,255,255,.14); color: #f1f5f9; }

/* Section grouping */
.mobile-menu-section {
  padding: 16px 12px 8px;
  flex-shrink: 0;
}
.mobile-menu-section-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #475569;
  padding: 0 8px;
  margin: 0 0 8px;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: #94a3b8;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.mobile-nav-link:hover, .mobile-nav-link.active { background: rgba(255,255,255,.07); color: #f1f5f9; }
.mobile-nav-link.active { color:#fff; font-weight:600; }
.mobile-nav-link i { font-size: 13px; width: 18px; text-align: center; opacity: .75; }
.mobile-job-link { color: #94a3b8 !important; }
.mobile-job-link.active { color: #fff !important; }
.mobile-job-link i { opacity: .75; }
.mobile-danger { color: #f87171 !important; }

/* Mobile footer */
.mobile-menu-footer {
  margin-top: auto;
  padding: 12px;
  border-top: 1px solid #1e293b;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.mobile-cta {
  display: flex; align-items: center; gap: 10px;
  background: #2563eb; color: #fff !important;
  padding: 11px 16px; border-radius: 10px;
  font-size: 14px; font-weight: 700;
  text-decoration: none; margin-top: 8px;
  transition: background .15s;
}
.mobile-cta:hover { background: #1d4ed8; }

/* ── Main Content ──────────────────────────────────────────────────────────── */
#mainContent { min-height: 100vh; padding-top: 72px; }

/* ── Sections ──────────────────────────────────────────────────────────────── */
.section-container { max-width: 1200px; margin: 0 auto; padding: 80px 24px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(37,99,235,0.15);
  color: var(--primary); border: 1px solid rgba(37,99,235,0.3);
  padding: 6px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.3px;
  margin-bottom: 16px;
}
.section-title { font-size: clamp(28px, 5vw, 42px); font-weight: 800; color: #fff; margin-bottom: 12px; }
.section-subtitle { font-size: 16px; color: var(--text-muted); max-width: 520px; margin: 0 auto; }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 24px 60px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.25;
}
.hero-blob-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; left: -100px; animation: floatBlob 8s ease-in-out infinite; }
.hero-blob-2 { width: 400px; height: 400px; background: var(--secondary); bottom: -100px; right: 0; animation: floatBlob 10s ease-in-out infinite reverse; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(37,99,235,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(37,99,235,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}
.hero-container {
  position: relative; z-index: 1;
  max-width: 680px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  color: var(--primary);
  padding: 8px 20px; border-radius: 100px;
  font-size: 14px; font-weight: 600;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease;
}
.hero-title {
  font-size: clamp(40px, 7vw, 68px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-stats {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num { font-size: 28px; font-weight: 800; color: #fff; }
.stat-label { font-size: 12px; color: var(--text-muted); }
.hero-stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-preview {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 360px; pointer-events: none;
  animation: fadeLeft 0.8s 0.5s ease both;
}
.preview-window {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.preview-bar {
  background: var(--bg-card2);
  padding: 10px 14px;
  display: flex; gap: 6px; align-items: center;
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }
.preview-cv { padding: 12px; }
.mini-cv { border-radius: 8px; overflow: hidden; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateY(-50%) translateX(40px); }
  to   { opacity: 1; transform: translateY(-50%) translateX(0); }
}

/* ── Features ──────────────────────────────────────────────────────────────── */
.features-section { background: var(--bg-card); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}
.feature-card:hover {
  border-color: rgba(37,99,235,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(37,99,235,0.1);
}
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── Templates ─────────────────────────────────────────────────────────────── */
.templates-section { background: var(--bg-dark); }
.template-filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 22px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: transparent;
  transition: all var(--transition);
  font-family: inherit;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: #fff; border-color: var(--primary);
}
.templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.template-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}
.template-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(37,99,235,0.2);
}
.template-preview {
  height: 240px;
  overflow: hidden;
  position: relative;
  background: #f5f5f5;
}
.template-preview > div {
  transform: scale(0.48);
  transform-origin: top left;
  width: 208.33%;
  height: 208.33%;
}
.template-info {
  padding: 16px 16px 8px;
  display: flex; align-items: center; justify-content: space-between;
}
.template-info h3 { font-size: 15px; font-weight: 700; color: #fff; }
.template-badge {
  font-size: 11px; font-weight: 600; padding: 3px 10px;
  border-radius: 100px;
}
.badge-modern   { background: rgba(37,99,235,0.2); color: #93c5fd; }
.badge-minimal  { background: rgba(148,163,184,0.2); color: #94a3b8; }
.badge-classic  { background: rgba(34,197,94,0.15); color: #86efac; }
.badge-creative { background: rgba(249,115,22,0.2); color: #fdba74; }
.template-use-btn {
  display: block;
  margin: 8px 16px 16px;
  padding: 10px;
  text-align: center;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 10px;
  color: var(--primary);
  font-size: 13px; font-weight: 600;
  transition: all var(--transition);
}
.template-use-btn:hover {
  background: var(--primary); color: #fff;
  border-color: var(--primary);
}
.templates-cta { text-align: center; }

/* ── How It Works ──────────────────────────────────────────────────────────── */
.how-section { background: var(--bg-card); }
.steps-grid {
  display: flex; align-items: flex-start;
  gap: 16px; justify-content: center; flex-wrap: wrap;
}
.step-card {
  flex: 1; min-width: 220px; max-width: 280px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.step-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.step-number {
  font-size: 48px; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}
.step-icon { font-size: 28px; color: var(--primary); margin-bottom: 16px; }
.step-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-muted); }
.step-arrow { color: var(--primary); font-size: 24px; margin-top: 80px; opacity: 0.5; }

/* ── Testimonials ──────────────────────────────────────────────────────────── */
.testimonials-section { background: var(--bg-dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial-stars { color: #fbbf24; font-size: 18px; margin-bottom: 14px; }
.testimonial-card > p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; font-weight: 700; color: #fff; }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

/* ── CTA Banner ────────────────────────────────────────────────────────────── */
.cta-banner {
  position: relative; overflow: hidden;
  padding: 80px 24px;
  text-align: center;
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(118,75,162,0.15));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-blob {
  position: absolute; width: 600px; height: 600px;
  border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(37,99,235,0.2), transparent 70%);
  pointer-events: none;
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(24px, 4vw, 40px); font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-banner p { font-size: 17px; color: var(--text-muted); margin-bottom: 32px; }

/* ── Footer ────────────────────────────────────────────────────────────────── */
.site-footer {
  background: #07071a;
  border-top: 1px solid var(--border);
  padding-top: 64px;
}
.footer-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 20px; font-weight: 700; color: #fff;
  margin-bottom: 14px;
}
.footer-logo .logo-icon { color: var(--primary); }
.footer-logo strong { color: var(--primary); }
.footer-slogan { font-size: 14px; color: #fff; font-weight: 600; margin-bottom: 10px; }
.footer-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--bg-card2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 15px;
  transition: all var(--transition);
}
.social-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.footer-heading {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: #fff; margin-bottom: 16px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13px; color: var(--text-muted);
  display: flex; align-items: center; gap: 7px;
  transition: color var(--transition);
}
.footer-links a i { font-size: 11px; color: var(--primary); }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}
.footer-bottom-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.copyright { font-size: 13px; color: var(--text-muted); }
.footer-bottom-links { display: flex; align-items: center; gap: 12px; }
.footer-bottom-links a { font-size: 13px; color: var(--text-muted); transition: color var(--transition); }
.footer-bottom-links a:hover { color: #fff; }
.footer-bottom-links span { color: var(--border); }

/* ── Responsive ────────────────────────────────────────────────────────────── */

/* 1100px: ikonlar gizlenir, linkler dar */
@media (max-width: 1100px) {
  .nav-ico { display: none; }
  .nav-link { padding: 7px 8px; font-size: 12.5px; }
  .nav-credits-badge span { display: none; } /* sadece ikon görünsün */
  .nav-credits-badge { padding: 5px 9px; }
  .nav-cvs-link span { display: none; }
  .nav-cvs-link { padding: 6px 9px; }
  .avatar-name { display: none; }
  .nav-chevron { display: none; }
}

/* 900px: nav-links gizlenir, hamburger açılır */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-container { gap: 10px; padding: 0 16px; }
  .nav-actions { gap: 8px; margin-left: auto; }
  .hero { padding: 80px 20px 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-container {
    position: relative;
    justify-content: space-between;
    gap: 8px;
    min-height: 48px;
    padding: 0 16px;
  }
  .nav-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    padding: 0;
  }
  .nav-logo img {
    height: 34px;
    max-width: 126px;
    object-fit: contain;
  }
  .nav-actions {
    order: 1;
    gap: 6px;
    margin-left: 0;
    margin-right: auto;
    z-index: 2;
  }
  .user-avatar-btn {
    padding: 6px;
    border-radius: 13px;
  }
  .avatar-circle {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }
  .avatar-dropdown {
    position: fixed;
    left: 0;
    right: auto;
    top: 72px;
    bottom: 0;
    width: min(78vw, 320px);
    max-width: calc(100vw - 18px);
    min-width: 0;
    height: calc(100dvh - 72px);
    overflow-y: auto;
    border-radius: 0 18px 18px 0;
    border-left: 0;
    padding: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
    transition: transform .28s cubic-bezier(.4,0,.2,1), opacity .18s ease;
    z-index: 999;
    box-shadow: 12px 0 48px rgba(0,0,0,.35);
  }
  .avatar-dropdown.show {
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
  }
  .avatar-dropdown a {
    min-height: 42px;
    padding: 10px 12px;
  }
  .mobile-menu {
    width: min(78vw, 320px);
    max-width: calc(100vw - 18px);
  }
  body.dual-menu-open .avatar-dropdown.show,
  body.dual-menu-open .mobile-menu.open {
    width: 50vw;
    max-width: 50vw;
    min-width: 0;
  }
  body.dual-menu-open .avatar-dropdown {
    border-radius: 0;
  }
  body.dual-menu-open .mobile-menu {
    border-radius: 0;
  }
  body.dual-menu-open .avatar-dropdown a,
  body.dual-menu-open .mobile-nav-link {
    gap: 9px;
    padding: 9px 10px;
    font-size: 13px;
  }
  body.dual-menu-open .dd-user-info {
    padding: 10px;
  }
  body.dual-menu-open .mobile-menu-header {
    padding: 16px 14px;
  }
  .hamburger {
    order: 3;
    margin-left: auto;
    z-index: 2;
  }
  .nav-cvs-link { display: none; }
  /* Mobilde ghost buton gizle, sadece primary görünsun */
  .nav-actions .btn-ghost { display: none; }
  .hamburger { display: flex; }
  /* Overlay */
  body.menu-open::after { content: ''; position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 998; }
  .hero-title { font-size: 36px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .step-arrow { display: none; }
  .steps-grid { flex-direction: column; align-items: center; }
  .footer-container { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .section-container { padding: 60px 20px; }
}
@media (max-width: 480px) {
  .templates-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .nav-credits-badge { display: none; } /* çok dar ekranda kredi sakla */
}

/* ══════════════════════════════════════════════════════════════════
   BLOG SAYFALARI — Global Renk & Layout Düzeltmeleri
   ══════════════════════════════════════════════════════════════════ */

.blog-page-wrap { background: #f8fafc !important; color: #1e293b !important; }

/* İçerik genişliği: dar → geniş */
.blog-content-outer {
  max-width: 1280px !important;
  padding: 0 2rem !important;
  grid-template-columns: 1fr 280px !important;
  gap: 3rem !important;
}
@media (max-width: 900px) {
  .blog-content-outer { grid-template-columns: 1fr !important; padding: 0 1rem !important; }
  .blog-sidebar { display: none !important; }
}

/* CSS değişkenlerini blog alanında ezip koyu temaya geç */
.blog-wrap, .blog-page-wrap .wrap {
  color: #1e293b !important;
  background: #fff !important;
  --color-text-primary: #1e293b !important;
  --color-text-secondary: #374151 !important;
  --color-background-secondary: #f1f5f9 !important;
  --color-border-tertiary: #e2e8f0 !important;
  --border-radius-lg: 14px !important;
  --border-radius-md: 8px !important;
}

/* Tüm alt elementler de koyu */
.blog-wrap *, .blog-page-wrap .wrap * {
  --color-text-primary: #1e293b;
  --color-text-secondary: #374151;
  --color-background-secondary: #f1f5f9;
  --color-border-tertiary: #e2e8f0;
}

/* Metin renkleri */
.blog-wrap p, .blog-page-wrap .wrap p,
.blog-wrap li, .blog-page-wrap .wrap li,
.blog-wrap td, .blog-page-wrap .wrap td { color: #374151 !important; }

.blog-wrap h1, .blog-page-wrap .wrap h1 { color: #0f172a !important; }
.blog-wrap h2, .blog-wrap h2.sec, .blog-wrap h2.section,
.blog-page-wrap .wrap h2, .blog-page-wrap .wrap h2.sec { color: #0f172a !important; }
.blog-wrap h3, .blog-wrap h3.sub,
.blog-page-wrap .wrap h3 { color: #1e293b !important; }
.blog-wrap h4, .blog-page-wrap .wrap h4 { color: #1e293b !important; }
.blog-wrap strong, .blog-page-wrap .wrap strong { color: #111827 !important; }

/* Tip kutuları */
.blog-wrap .tip-box, .blog-page-wrap .wrap .tip-box { background: #f0fdf4 !important; }
.blog-wrap .tip-box strong { color: #166534 !important; }
.blog-wrap .warn-box, .blog-page-wrap .wrap .warn-box { background: #fffbeb !important; }
.blog-wrap .warn-box strong { color: #92400e !important; }
.blog-wrap .info-box, .blog-page-wrap .wrap .info-box { background: #fdf4ff !important; }
.blog-wrap .info-box strong { color: #7e22ce !important; }

/* İçindekiler */
.blog-wrap .toc, .blog-page-wrap .wrap .toc { background: #f8fafc !important; }
.blog-wrap .toc li, .blog-page-wrap .wrap .toc li { color: #475569 !important; }
.blog-wrap .toc a, .blog-page-wrap .wrap .toc a { color: #2563eb !important; }
.blog-wrap .toc-title, .blog-wrap .toc h2 { color: #374151 !important; }

/* Tablolar */
.blog-wrap table th { background: #f1f5f9 !important; color: #1e293b !important; border-color: #e2e8f0 !important; }
.blog-wrap table td { color: #374151 !important; border-color: #e2e8f0 !important; }

/* Sonuç / FAQ / Etiket */
.blog-wrap .conclusion, .blog-page-wrap .wrap .conclusion { background: #f8fafc !important; border-color: #e2e8f0 !important; }
.blog-wrap .conclusion p { color: #374151 !important; }
.blog-wrap .faq-item h3 { color: #1e293b !important; }
.blog-wrap .faq-item p { color: #374151 !important; }
.blog-wrap .tag { background: #f1f5f9 !important; color: #374151 !important; border-color: #e2e8f0 !important; }

/* Örnek bloklar / Gap kartları / Step list */
.blog-wrap .eb-body, .blog-page-wrap .wrap .eb-body { color: #374151 !important; }
.blog-wrap .gap-card h4 { color: #1e293b !important; }
.blog-wrap .gc-bad { color: #991b1b !important; }
.blog-wrap .gc-good { color: #166534 !important; }
.blog-wrap .step-content h4 { color: #1e293b !important; }
.blog-wrap .step-content p { color: #374151 !important; }

/* Meta */
.blog-wrap .meta span { color: #6b7280 !important; }
.blog-wrap .badge { background: #dbeafe !important; color: #1d4ed8 !important; }

/* Sector kartları, word grupları vs */
.blog-wrap .sector-card { border-color: #e2e8f0 !important; }
.blog-wrap .sector-card h4 { color: #1e293b !important; }
.blog-wrap .sector-card .sample { color: #374151 !important; }
.blog-wrap .formula-box { background: #f8fafc !important; border-color: #e2e8f0 !important; }

/* ── Breadcrumb — blog sayfalarında her zaman görünür ── */
.blog-breadcrumb {
  background: #fff !important;
  color: #374151 !important;
  border-bottom: 1px solid #f1f5f9 !important;
}
.blog-breadcrumb a { color: #2563eb !important; }
.blog-breadcrumb span { color: #6b7280 !important; }

/* ── Blog içerik p, h2, h3 — body dark temadan kurtarma ── */
.blog-wrap p, .blog-page-wrap p { color: #374151 !important; }
.blog-wrap li, .blog-page-wrap li { color: #374151 !important; }
.blog-wrap h2.section, .blog-page-wrap h2.section,
.blog-wrap h2.sec, .blog-page-wrap h2.sec { color: #0f172a !important; }
.blog-wrap h3.sub, .blog-page-wrap h3.sub { color: #1e293b !important; }
.blog-wrap h2, .blog-page-wrap h2 { color: #0f172a !important; }
.blog-wrap h3, .blog-page-wrap h3 { color: #1e293b !important; }

/* Blog yazıları — mobil okuma konforu */
@media (max-width: 640px) {
  .blog-page-wrap {
    padding-bottom: 2.5rem !important;
    overflow-x: hidden !important;
  }

  .blog-breadcrumb {
    padding: .85rem 1rem .45rem !important;
    font-size: .75rem !important;
    line-height: 1.5 !important;
  }

  .blog-content-outer {
    padding: 0 !important;
    gap: 0 !important;
  }

  .blog-wrap {
    border-left: 0 !important;
    border-right: 0 !important;
    border-radius: 0 !important;
    padding: 1rem !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .blog-wrap, .blog-page-wrap .wrap {
    font-size: 16px !important;
    line-height: 1.75 !important;
  }

  .blog-page-wrap .wrap {
    max-width: 100% !important;
    padding: 0 !important;
  }

  .blog-wrap .hero,
  .blog-page-wrap .wrap .hero,
  .blog-wrap .blog-hero {
    padding: 1.25rem !important;
    border-radius: 14px !important;
    margin-bottom: 1.5rem !important;
  }

  .blog-wrap h1,
  .blog-page-wrap .wrap h1 {
    font-size: 1.65rem !important;
    line-height: 1.24 !important;
    overflow-wrap: anywhere !important;
  }

  .blog-wrap h2,
  .blog-wrap h2.sec,
  .blog-wrap h2.section,
  .blog-page-wrap .wrap h2,
  .blog-page-wrap .wrap h2.sec {
    font-size: 1.28rem !important;
    line-height: 1.32 !important;
    margin-top: 1.8rem !important;
    overflow-wrap: anywhere !important;
  }

  .blog-wrap h3,
  .blog-wrap h3.sub,
  .blog-page-wrap .wrap h3 {
    font-size: 1.08rem !important;
    line-height: 1.38 !important;
    overflow-wrap: anywhere !important;
  }

  .blog-wrap p,
  .blog-page-wrap .wrap p,
  .blog-wrap li,
  .blog-page-wrap .wrap li {
    font-size: 1rem !important;
    line-height: 1.75 !important;
    overflow-wrap: anywhere !important;
  }

  .blog-wrap ul,
  .blog-wrap ol,
  .blog-page-wrap .wrap ul,
  .blog-page-wrap .wrap ol {
    padding-left: 1.1rem !important;
  }

  .blog-wrap .meta,
  .blog-page-wrap .wrap .meta,
  .blog-wrap .cv-contact,
  .blog-page-wrap .wrap .cv-contact {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: .35rem !important;
  }

  .blog-wrap .toc,
  .blog-wrap .tip-box,
  .blog-wrap .warn-box,
  .blog-wrap .info-box,
  .blog-wrap .cta-box,
  .blog-wrap .conclusion,
  .blog-page-wrap .wrap .toc,
  .blog-page-wrap .wrap .tip-box,
  .blog-page-wrap .wrap .warn-box,
  .blog-page-wrap .wrap .info-box,
  .blog-page-wrap .wrap .cta-box,
  .blog-page-wrap .wrap .conclusion {
    padding: 1rem !important;
    border-radius: 12px !important;
    margin: 1.25rem 0 !important;
  }

  .blog-wrap .tabs,
  .blog-page-wrap .wrap .tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: .45rem !important;
    padding-bottom: .45rem !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .blog-wrap .tabs::-webkit-scrollbar,
  .blog-page-wrap .wrap .tabs::-webkit-scrollbar {
    display: none !important;
  }

  .blog-wrap .tab-btn,
  .blog-page-wrap .wrap .tab-btn {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    border-radius: 10px !important;
    padding: .65rem .9rem !important;
  }

  .blog-wrap .tab-content,
  .blog-page-wrap .wrap .tab-content {
    border-radius: 12px !important;
  }

  .blog-wrap .cv-header,
  .blog-wrap .cv-body,
  .blog-page-wrap .wrap .cv-header,
  .blog-page-wrap .wrap .cv-body {
    padding: 1rem !important;
  }

  .blog-wrap .cv-item-head,
  .blog-page-wrap .wrap .cv-item-head {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: .35rem !important;
  }

  .blog-wrap .cv-text,
  .blog-wrap .cv-bullets li,
  .blog-wrap .cv-item-sub,
  .blog-wrap .cv-item-date,
  .blog-page-wrap .wrap .cv-text,
  .blog-page-wrap .wrap .cv-bullets li,
  .blog-page-wrap .wrap .cv-item-sub,
  .blog-page-wrap .wrap .cv-item-date {
    font-size: .92rem !important;
    line-height: 1.65 !important;
  }

  .blog-wrap .compare-grid,
  .blog-wrap .compare-2col,
  .blog-wrap .kpi-row,
  .blog-page-wrap .wrap .compare-grid,
  .blog-page-wrap .wrap .compare-2col,
  .blog-page-wrap .wrap .kpi-row {
    grid-template-columns: 1fr !important;
  }

  .blog-wrap .table-wrap,
  .blog-page-wrap .wrap .table-wrap {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .blog-wrap table,
  .blog-page-wrap .wrap table {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: auto !important;
    white-space: normal !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .blog-wrap th,
  .blog-wrap td,
  .blog-page-wrap .wrap th,
  .blog-page-wrap .wrap td {
    min-width: 9rem !important;
    font-size: .9rem !important;
    line-height: 1.55 !important;
  }

  .blog-wrap pre,
  .blog-wrap code,
  .blog-page-wrap .wrap pre,
  .blog-page-wrap .wrap code {
    white-space: pre-wrap !important;
    word-break: break-word !important;
  }

  .blog-wrap img,
  .blog-page-wrap .wrap img {
    max-width: 100% !important;
    height: auto !important;
  }
}
