/* ============================================================
   FranBase — app.css v5 (2026-04-19)
   Font: Plus Jakarta Sans (Google Fonts)
   Renk: Beyaz/gri baz, tek mavi vurgu, koyu SADECE hero
   Tasarım: Kurumsal, güçlü kontrast, net hiyerarşi
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  /* Ana renkler — tek vurgu: mavi */
  --primary:       #1d4ed8;
  --primary-dark:  #1e40af;
  --primary-hover: #1a44c8;
  --primary-soft:  #eff6ff;
  --primary-mid:   #bfdbfe;

  /* Nötr / metin */
  --ink:         #111827;
  --ink-2:       #1f2937;
  --muted:       #6b7280;
  --muted-2:     #9ca3af;

  /* Yüzeyler — açık, temiz */
  --bg:          #f9fafb;
  --surface:     #ffffff;
  --surface-2:   #f9fafb;
  --surface-3:   #f3f4f6;
  --line:        #e5e7eb;
  --line-2:      #f3f4f6;

  /* Durum */
  --success:       #16a34a;
  --success-soft:  #f0fdf4;
  --warning:       #d97706;
  --warning-soft:  #fffbeb;
  --danger:        #dc2626;
  --danger-soft:   #fef2f2;

  /* Koyu — SADECE hero ve news header */
  --dark:          #0f172a;

  /* Boyutlar */
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;

  /* Gölgeler — hafif, kurumsal */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:    0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 15px rgba(0,0,0,0.06), 0 4px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 25px rgba(0,0,0,0.07), 0 10px 10px rgba(0,0,0,0.03);
  --shadow-xl: 0 25px 50px rgba(0,0,0,0.10);

  --container: 1200px;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  background: #f8fafc;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
p { margin: 0; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}
.page-shell       { padding: 32px 0 64px; }
.page-shell-admin { padding: 28px 0 56px; }
.page             { display: grid; gap: 24px; }
.grid             { display: grid; gap: 20px; }
.two              { grid-template-columns: repeat(2, minmax(0,1fr)); }
.three            { grid-template-columns: repeat(3, minmax(0,1fr)); }
.four             { grid-template-columns: repeat(4, minmax(0,1fr)); }
.wide             { width: 100%; }
.align-start      { align-items: flex-start; }
.inline-form      { display: inline; margin: 0; }
.inline-muted     { color: var(--muted); font-size: 14px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(15,23,42,0.04);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.brand-zone { display: grid; gap: 2px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.brand-mark {
  width: 38px; height: 38px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #1e40af, #2563eb);
  flex-shrink: 0;
}
.brand-mark-sm { width: 32px; height: 32px; border-radius: var(--radius-sm); font-size: 11px; }

.brand-subtitle {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link,
.link-button.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 38px;
  padding: 0 12px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.nav-link:hover,
.link-button.nav-link:hover {
  background: var(--surface-3);
  color: var(--primary);
}
.nav-link-active {
  color: var(--primary) !important;
  background: var(--primary-soft) !important;
  border-color: var(--primary-mid) !important;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 16px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 2px 8px rgba(37,99,235,0.25);
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,99,235,0.35);
  color: #fff;
}

.nav-divider {
  display: inline-block;
  width: 1px; height: 22px;
  background: var(--line);
  margin: 0 6px;
  flex-shrink: 0;
  align-self: center;
}

.notif-pill {
  margin-left: 4px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: var(--danger);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 60;
}
.nav-hamburger span {
  display: block;
  width: 18px; height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 38px;
  padding: 0 12px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-toggle:hover { background: var(--surface-3); color: var(--primary); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  min-width: 210px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 100;
}
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: block;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.12s, color 0.12s;
}
.nav-dropdown-item:hover { background: var(--primary-soft); color: var(--primary); }
.nav-dropdown-divider { height: 1px; background: var(--line); margin: 4px 8px; }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.4);
  z-index: 39;
  backdrop-filter: blur(2px);
}
.nav-overlay.is-visible { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.footer-full { padding: 52px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.footer-brand-col  { display: grid; gap: 18px; align-content: start; }
.footer-brand-desc { color: var(--muted); font-size: 14px; line-height: 1.7; }
.footer-legal-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-legal-chip {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--line);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.footer-legal-chip:hover { color: var(--primary); border-color: var(--primary-mid); background: var(--primary-soft); }
.footer-link-col   { display: grid; gap: 14px; align-content: start; }
.footer-col-title  { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 13px; font-weight: 700; color: var(--ink); letter-spacing: 0.02em; text-transform: uppercase; }
.footer-nav        { display: grid; gap: 9px; }
.footer-nav a      { color: var(--muted); font-size: 14px; transition: color 0.15s; }
.footer-nav a:hover { color: var(--primary); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copy       { font-size: 13px; color: var(--muted-2); }

/* ============================================================
   ALERTS
   ============================================================ */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
}
.alert-success { color: #14532d; background: #f0fdf4; border-color: #bbf7d0; }
.alert-error   { color: #7f1d1d; background: #fef2f2; border-color: #fecaca; }

/* ============================================================
   CARDS
   ============================================================ */
.card,
.auth-card,
.panel-card,
.form-card,
.soft-card,
.nested-card,
.sticky-card,
.filter-panel,
.review-card,
.notification-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xs);
}
.card,
.panel-card,
.form-card,
.filter-panel,
.review-card,
.notification-card { padding: 24px; }
.soft-card,
.nested-card { background: var(--surface-2); }

.panel-card-dark {
  color: #fff;
  background: linear-gradient(135deg, #0f172a 0%, #1e2d4f 100%);
  border-color: rgba(255,255,255,0.06);
  box-shadow: var(--shadow-md);
}
.panel-card-dark p,
.panel-card-dark .eyebrow,
.panel-card-dark .meta-chip,
.panel-card-dark .meta-chip-light,
.panel-card-dark .queue-row p { color: rgba(255,255,255,0.75); }

.glass-card {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.16);
  box-shadow: none;
  backdrop-filter: blur(16px);
}
.panel-card-highlight { border-color: rgba(37,99,235,0.22); box-shadow: var(--shadow-sm); }

/* ============================================================
   HEADINGS IN CARDS
   ============================================================ */
.page-head,
.hero-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.page-head h1,
.hero h1 {
  margin: 8px 0 0;
  font-size: clamp(28px, 4vw, 48px);
}
.panel-card h2,
.review-card h2,
.auth-card h1 {
  margin: 8px 0 0;
  font-size: clamp(22px, 3vw, 32px);
}
.page-head p,
.panel-card p,
.auth-card p { margin: 8px 0 0; color: var(--muted); font-size: 15px; }

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.section-head h2,
.section-head h3 { margin: 6px 0 0; }

/* ============================================================
   EYEBROW / BADGE / CHIPS
   ============================================================ */
.eyebrow,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid var(--primary-mid);
}
.meta-chip,
.metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid var(--primary-mid);
}
.meta-chip-light {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
}
.meta-chip-group { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }

/* ============================================================
   STATUS BADGES
   ============================================================ */
.status-badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  white-space: nowrap;
}
.status-badge-group { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.status-inline { vertical-align: middle; }
.published { color: #14532d; background: #f0fdf4; border-color: #bbf7d0; }
.pending   { color: #78350f; background: var(--warning-soft); border-color: #fde68a; }
.draft     { color: var(--muted); background: var(--surface-3); border-color: var(--line); }
.rejected  { color: #7f1d1d; background: #fef2f2; border-color: #fecaca; }
.archived  { color: var(--muted-2); background: var(--surface-2); border-color: var(--line); }
.new,
.reviewing { color: #1e40af; background: #eff6ff; border-color: var(--primary-mid); }
.contacted { color: #5b21b6; background: #f5f3ff; border-color: #ddd6fe; }
.approved  { color: #14532d; background: #f0fdf4; border-color: #bbf7d0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn,
.action-btn-group a,
.action-btn-group button,
.toolbar-actions a,
.toolbar-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 42px;
  padding: 0 18px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: #fff;
  background: var(--primary);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.btn:hover,
.action-btn-group a:hover,
.action-btn-group button:hover,
.toolbar-actions a:hover,
.toolbar-actions button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,99,235,0.30);
  color: #fff;
}
.btn-secondary,
.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover,
.btn-ghost:hover {
  background: var(--surface-3);
  color: var(--ink);
  border-color: #cbd5e1;
  box-shadow: var(--shadow-xs);
  transform: translateY(-1px);
}
.btn-light {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.22);
  box-shadow: none;
}
.btn-light:hover {
  background: rgba(255,255,255,0.25);
  color: #fff;
  box-shadow: none;
}
.btn-success { background: #16a34a; box-shadow: 0 2px 8px rgba(22,163,74,0.25); }
.btn-success:hover { background: #15803d; }
.btn-danger  { background: var(--danger); box-shadow: 0 2px 8px rgba(220,38,38,0.22); }
.btn-danger:hover { background: #b91c1c; }
.btn-warning { background: var(--warning); color: #fff; box-shadow: none; }
.btn-small,
.btn-sm      { height: 34px; padding: 0 12px; font-size: 13px; border-radius: var(--radius-sm); }
.btn-block   { width: 100%; }
.action-btn-group,
.toolbar-actions,
.action-btn-group-stack { display: flex; flex-wrap: wrap; gap: 8px; }
.action-btn-group-stack { flex-direction: column; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

/* ============================================================
   FORMS
   ============================================================ */
form { display: grid; gap: 18px; }
label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
select,
textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
textarea { min-height: 110px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.field-error  { display: block; color: var(--danger); font-size: 13px; margin-top: 5px; }
.field-hint   { color: var(--muted); font-size: 13px; margin-top: 5px; }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; }
.boxed-check {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-2);
}
input[type="checkbox"] { width: 16px; height: 16px; margin-top: 3px; accent-color: var(--primary); }
.toolbar-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 14px; align-items: end; }
.toolbar-grid-tight { grid-template-columns: 1fr 1fr auto; }

/* ============================================================
   TABLE
   ============================================================ */
.table-wrap,
.modern-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
}
.data-table { width: 100%; min-width: 680px; border-collapse: collapse; }
.data-table th,
.data-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
  font-size: 14px;
}
.data-table th {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--surface-2);
}
.data-table tbody tr:hover { background: #f8fbff; }

/* ============================================================
   STAT CARDS
   ============================================================ */
.stats-grid   { grid-template-columns: repeat(4, minmax(0,1fr)); }
.compact-grid { gap: 16px; }
.stat-card {
  padding: 20px 22px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
}
.stat-card strong {
  display: block;
  margin: 8px 0 5px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.stat-card span:last-child { color: var(--muted); font-size: 13px; display: block; }
.stat-kicker { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.stat-card-emphasis {
  border-color: var(--primary);
  border-top: 2px solid var(--primary);
  background: var(--primary-soft);
}
.stat-card-emphasis .stat-kicker,
.stat-card-emphasis span:last-child { color: rgba(255,255,255,0.78); }
.stat-card-emphasis strong { color: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 52px;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 55%, #2563eb 100%);
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 100% 20%, rgba(96,165,250,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 90%, rgba(30,58,95,0.5) 0%, transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.hero::before { }
.hero-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 380px;
  align-items: center;
  gap: 32px;
}
.hero-copy,
.hero-showcase { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(30px, 4.5vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin: 12px 0;
  color: #fff;
}
.hero p { color: rgba(255,255,255,0.82); font-size: 17px; margin-top: 0; line-height: 1.65; }
.hero .eyebrow { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.2); }
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 28px;
}
.highlight-item {
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.highlight-item strong { display: block; margin-bottom: 5px; color: #fff; font-size: 14px; }
.highlight-item span   { color: rgba(255,255,255,0.75); font-size: 13px; }

/* Hero showcase card */
.showcase-card  { padding: 22px; border-radius: var(--radius-xl); }
.showcase-head  { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.status-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.2);
}
.showcase-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.mini-stat {
  padding: 14px 12px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.1);
  text-align: center;
}
.mini-stat strong { display: block; font-size: 30px; line-height: 1; margin-bottom: 5px; font-family: 'Plus Jakarta Sans', system-ui, sans-serif; letter-spacing: -0.04em; }
.mini-stat span   { font-size: 12px; color: rgba(255,255,255,0.75); }

/* ============================================================
   METRICS BAND
   ============================================================ */
.metrics-band  { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.metric-card {
  padding: 20px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
  transition: transform 0.18s, box-shadow 0.18s;
}
.metric-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.metric-title { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 6px; }
.metric-card strong { display: block; font-size: 18px; font-family: 'Plus Jakarta Sans', system-ui, sans-serif; margin-bottom: 8px; }
.metric-card p { color: var(--muted); font-size: 14px; }

/* ============================================================
   FEATURE PILLS + ACTION TILES + TIMELINE
   ============================================================ */
.feature-list-grid,
.action-tile-grid  { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.timeline-grid     { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }

.feature-pill,
.action-tile,
.timeline-item {
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.85);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.action-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--primary-mid); }
.feature-pill strong,
.action-tile strong,
.timeline-item h3  { display: block; margin-bottom: 5px; font-size: 15px; font-family: 'Plus Jakarta Sans', system-ui, sans-serif; }
.feature-pill span,
.action-tile span,
.timeline-item p   { color: var(--muted); font-size: 13px; }
.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: var(--primary);
  margin-bottom: 12px;
}
.section-dual-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 22px; }
.dashboard-grid-gap { gap: 22px; }

/* ============================================================
   QUEUE / STACK
   ============================================================ */
.queue-list,
.stack-list { display: grid; gap: 12px; }
.queue-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  transition: background 0.15s;
}
.queue-row:hover { background: var(--primary-soft); border-color: var(--primary-mid); }
.queue-row p { color: var(--muted); font-size: 13px; margin-top: 3px; }

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
  text-align: center;
  padding: 40px 24px;
  border: 1px dashed #cbd5e1;
  border-radius: var(--radius-xl);
  background: var(--surface-2);
}
.empty-state-dark {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
}
.empty-state p,
.empty-state-dark p { color: var(--muted); font-size: 14px; }
.empty-state-icon {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
}
.empty-state-icon svg { color: var(--primary); }

/* ============================================================
   META ITEMS
   ============================================================ */
.detail-grid      { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.detail-meta-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.meta-item {
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
}
.meta-item-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 5px; }
.meta-item-value { font-size: 17px; font-weight: 700; font-family: 'Plus Jakarta Sans', system-ui, sans-serif; color: var(--ink); }
.meta-list { display: grid; gap: 10px; }
.meta-list li { font-size: 14px; }

/* ============================================================
   PAGE HEAD / HERO STRIP
   ============================================================ */
.page-head.card.hero-strip { gap: 20px; padding: 28px 28px; }

/* ============================================================
   AUTH
   ============================================================ */
.auth-shell { min-height: calc(100vh - 260px); display: grid; place-items: center; }
.auth-shell-single { min-height: auto; padding: 40px 0; }
.auth-card { width: min(540px, 100%); }
.auth-card-polished,
.form-card-polished { border-radius: var(--radius-2xl); box-shadow: var(--shadow-lg); }
.auth-card h1 { font-size: 28px; }
.auth-inline-links {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  font-size: 14px;
}
.auth-inline-links a { color: var(--primary); font-weight: 600; }
.auth-inline-links a:hover { text-decoration: underline; }

/* ============================================================
   REGISTER
   ============================================================ */
.auth-card.wide { width: min(820px, 100%); }
.register-card-modern { display: grid; gap: 24px; }
.register-hero-band {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.register-hero-band h1 { font-size: 26px; margin: 8px 0 5px; }
.register-role-hints { display: flex; flex-wrap: wrap; gap: 8px; max-width: 300px; justify-content: flex-end; }
.register-form-modern { display: grid; gap: 22px; }
.form-section-block {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface-2);
}
.form-section-head       { margin-bottom: 16px; }
.form-section-head h2    { font-size: 20px; margin: 6px 0 4px; }
.form-section-head p,
.field-hint               { color: var(--muted); font-size: 13px; }
.account-mode-card {
  padding: 16px;
  border-radius: var(--radius-lg);
  background: var(--primary-soft);
  border: 1px solid var(--primary-mid);
}
.account-mode-card strong { display: block; margin-bottom: 6px; font-size: 15px; }

/* ============================================================
   LISTINGS (public)
   ============================================================ */
.listing-grid-v2 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.listing-card-v2 {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.listing-card-v2:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--primary-mid); }
.listing-card-v2-head  { display: flex; justify-content: space-between; align-items: center; }
.listing-card-v2-title { font-size: 18px; letter-spacing: -0.02em; }
.listing-card-v2-summary { color: var(--muted); font-size: 14px; line-height: 1.6; flex: 1; }
.listing-card-v2-meta  { list-style: none; padding: 0; display: grid; gap: 7px; }
.listing-card-v2-meta li { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); }
.listing-card-v2-meta li svg { flex-shrink: 0; color: var(--primary); opacity: 0.65; }
.listing-card-v2-cta   { margin-top: auto; }

/* Legacy listing card */
.listing-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.listing-card,
.listing-card-polished {
  padding: 20px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
}
.listing-card-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 12px; }

/* ============================================================
   NEWS CARDS
   ============================================================ */
.news-grid,
.news-grid-compact { display: grid; gap: 18px; }
.news-grid-rich    { grid-template-columns: repeat(3, minmax(0,1fr)); }
.news-card { padding: 18px; border-radius: var(--radius-lg); }
.news-card h3 { font-size: 16px; margin: 8px 0 6px; }
.news-card p  { color: var(--muted); font-size: 14px; }
.news-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; }
.news-meta-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.news-detail { padding: 32px; }
.news-detail h1 { font-size: clamp(24px, 4vw, 42px); margin: 10px 0; }
.news-summary { font-size: 18px; color: var(--muted); margin-bottom: 20px; }
.news-detail-cover { width: 100%; border-radius: var(--radius-lg); margin-bottom: 24px; }
.rich-output { line-height: 1.75; }
.rich-output p { margin-bottom: 14px; }

/* News hero */
/* ============================================================
   NEWS HERO SURFACE — Revize: Tasarım sistemi lacivert/mavi tone scale
   (Eski: #0f172a/#1e2d4f sert siyah gradient → yeni: kurumsal navy/mavi)
   ============================================================ */
.news-hero-surface {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 28px;
  padding: 36px 32px;
  background: linear-gradient(135deg, #1e3a6e 0%, #1d4ed8 60%, #2563eb 100%);
  color: #fff;
  border-color: rgba(37,99,235,0.25);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.news-hero-surface::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 90% at 100% 10%, rgba(96,165,250,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 5% 95%, rgba(30,58,95,0.35) 0%, transparent 55%);
  pointer-events: none;
}
.news-hero-surface > * { position: relative; z-index: 1; }
.news-hero-copy h1    { margin: 10px 0; font-size: clamp(26px, 3.8vw, 42px); color: #fff; font-weight: 800; letter-spacing: -0.025em; }
.news-hero-surface p,
.news-hero-surface .eyebrow { color: rgba(255,255,255,0.78); }
.news-search-form     { display: grid; gap: 14px; margin-top: 20px; }
.search-shell {
  display: flex;
  gap: 10px;
  padding: 7px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(4px);
}
.search-shell input {
  flex: 1;
  border: none;
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius-md);
  color: var(--ink);
  font-size: 14px;
  padding: 8px 12px;
}
.search-shell input::placeholder { color: var(--ink-muted, #6b7280); }
.search-shell .btn {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  border: none;
  box-shadow: none;
}
.search-shell .btn:hover { background: #f0f7ff; }
.news-category-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.news-category-pills a {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.news-category-pills a:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.35); }
.news-category-pills a.active { background: rgba(255,255,255,0.95); color: var(--primary); border-color: transparent; }
.news-hero-stats { display: grid; gap: 12px; align-content: start; }
.news-stat-card {
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  transition: background 0.15s;
}
.news-stat-card:hover { background: rgba(255,255,255,0.17); }
.news-stat-card span   { display: block; color: rgba(255,255,255,0.68); margin-bottom: 6px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.news-stat-card strong { display: block; font-size: 24px; font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-weight: 800; letter-spacing: -0.03em; color: #fff; }
.news-highlight-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 20px; }
.featured-news-card    { overflow: hidden; padding: 0; }
.featured-news-cover   { width: 100%; aspect-ratio: 16/8; object-fit: cover; }
.featured-news-content { padding: 24px; }
.featured-news-content h2 { font-size: clamp(22px, 3vw, 32px); margin: 10px 0 10px; }
.headline-stack        { display: grid; gap: 14px; }
.headline-stack-head h3 { margin: 8px 0 0; }
.headline-mini-card h4  { margin: 10px 0 6px; font-size: 18px; }
.news-filter-panel     { background: rgba(255,255,255,0.9); }
.news-toolbar-form     { align-items: center; }
/* ============================================================
   ADMIN
   ============================================================ */
.admin-page-container { gap: 18px; }
.admin-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.admin-alert-full { grid-column: 1 / -1; }
.admin-sidebar {
  position: sticky;
  top: 88px;
  padding: 20px;
  display: grid;
  gap: 18px;
  background: var(--surface);
}
.admin-sidebar-head h2,
.admin-topbar h1,
.admin-command-card h2,
.admin-module-hub h2 { font-size: 24px; margin: 6px 0 0; }
.admin-sidebar-head p,
.admin-topbar p,
.admin-command-card p,
.admin-module-hub p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.admin-sidebar-nav { display: grid; gap: 6px; }
.admin-side-link {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.admin-side-link span  { font-weight: 700; color: var(--ink); font-size: 14px; }
.admin-side-link small { color: var(--muted); font-size: 12px; }
.admin-side-link:hover { transform: translateY(-1px); box-shadow: var(--shadow-xs); border-color: var(--primary-mid); }
.admin-side-link.is-active {
  background: var(--primary);
  border-color: transparent;
}
.admin-side-link.is-active span,
.admin-side-link.is-active small { color: #fff; }
.admin-sidebar-meta  { display: grid; gap: 10px; }
.admin-quick-links   { display: grid; gap: 6px; }
.admin-quick-links a {
  padding: 9px 12px;
  border-radius: var(--radius-md);
  background: var(--surface-2);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.15s, background 0.15s;
}
.admin-quick-links a:hover { color: var(--primary); background: var(--primary-soft); }
.admin-content { display: grid; gap: 20px; min-width: 0; }
.admin-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
}
.admin-topbar-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.admin-overview-grid  { display: grid; grid-template-columns: 1.3fr 1fr; gap: 20px; }
.admin-command-card,
.admin-module-hub     { padding: 24px; }
.admin-command-head   { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; }
.admin-command-pills  { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.admin-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 14px;
}
.admin-hub-card {
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-2);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.admin-hub-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-xs); border-color: var(--primary-mid); }
.admin-hub-card strong { display: block; font-size: 15px; font-family: 'Plus Jakarta Sans', system-ui, sans-serif; margin-bottom: 5px; }
.admin-hub-card p { color: var(--muted); font-size: 13px; }


/* Admin hero dark theme contrast fix */
.admin-command-card.panel-card-dark,
.admin-command-card.panel-card-dark h1,
.admin-command-card.panel-card-dark h2,
.admin-command-card.panel-card-dark h3,
.admin-command-card.panel-card-dark strong {
  color: #f8fafc;
}
.admin-command-card.panel-card-dark p,
.admin-command-card.panel-card-dark .eyebrow,
.admin-command-card.panel-card-dark .meta-chip-light {
  color: rgba(248,250,252,0.78);
}
.admin-command-card.panel-card-dark .hero-actions .btn-light {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.16);
}
.admin-command-card.panel-card-dark .hero-actions .btn-light:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.24);
}

/* ============================================================
   DASHBOARD ALERTS
   ============================================================ */
.trial-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border-radius: var(--radius-xl);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,99,235,0.22);
}
.trial-notice-content         { display: grid; gap: 3px; }
.trial-notice strong          { font-size: 16px; font-family: 'Plus Jakarta Sans', system-ui, sans-serif; }
.trial-notice p               { font-size: 14px; color: rgba(255,255,255,0.82); }
.trial-notice .btn            { background: #fff; color: var(--primary); box-shadow: none; flex-shrink: 0; }
.trial-notice .btn:hover      { background: rgba(255,255,255,0.92); transform: translateY(-1px); }

.profile-notice {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--primary-mid);
  background: var(--primary-soft);
}
.profile-notice-bar           { flex: 1; }
.profile-notice-bar label     { display: block; font-weight: 700; font-size: 14px; margin-bottom: 7px; color: var(--primary); }
.progress-track { height: 7px; background: rgba(37,99,235,0.12); border-radius: 999px; overflow: hidden; }
.progress-fill  { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--primary), var(--primary)); transition: width 0.4s ease; }
.profile-notice p             { margin: 5px 0 0; font-size: 13px; color: var(--muted); }

/* ============================================================
   DANGER ZONE
   ============================================================ */
.danger-zone {
  border-color: rgba(220,38,38,0.18);
  background: linear-gradient(180deg, #fff 0%, #fff5f5 100%);
}

/* ============================================================
   LEAD DETAIL
   ============================================================ */
.lead-detail-layout {
  display: grid;
  grid-template-columns: 300px minmax(0,1fr);
  gap: 22px;
  align-items: start;
}
.lead-detail-side  { display: grid; gap: 16px; }
.lead-note-block {
  padding: 14px 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  line-height: 1.7;
  font-size: 14px;
  margin-top: 10px;
}
.lead-note-date { font-size: 12px; color: var(--muted); margin-top: 8px; }
.lead-messages-card { display: flex; flex-direction: column; }
.messages-thread {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 440px;
  overflow-y: auto;
  padding: 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
}
.message-bubble     { max-width: 78%; padding: 11px 14px; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.message-mine       { align-self: flex-end; background: var(--primary-soft); border-color: var(--primary-mid); }
.message-theirs     { align-self: flex-start; background: var(--surface); }
.message-bubble-head { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 6px; font-size: 12px; color: var(--muted); }
.message-bubble-head strong { color: var(--ink); font-size: 13px; }
.message-bubble-body { font-size: 14px; line-height: 1.6; }
.message-compose    { display: flex; gap: 10px; align-items: flex-end; }
.message-compose textarea { flex: 1; min-height: 76px; margin: 0; }
.message-compose .btn { flex-shrink: 0; }

/* ============================================================
   PRICING (v2)
   ============================================================ */
.pricing-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
  margin: 28px 0;
}
.pricing-card-v2 {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
  transition: transform 0.18s, box-shadow 0.18s;
}
.pricing-card-v2:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pricing-card-v2-featured { border-color: var(--primary); box-shadow: 0 8px 28px rgba(37,99,235,0.14); }
.pricing-popular-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.pricing-card-head { text-align: center; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.pricing-card-head h3 { font-size: 20px; margin: 0 0 12px; }
.pricing-amount { display: flex; align-items: baseline; justify-content: center; gap: 3px; margin-bottom: 5px; }
.pricing-price-num { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 44px; font-weight: 800; color: var(--primary); letter-spacing: -0.04em; line-height: 1; }
.pricing-price-unit { font-size: 14px; color: var(--muted); }
.pricing-yearly-note { font-size: 12px; color: var(--success); font-weight: 600; margin-bottom: 8px; }
.pricing-plan-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
.pricing-feature-list { list-style: none; padding: 0; flex: 1; display: grid; gap: 10px; margin-bottom: 20px; }
.pricing-feature-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; }
.pricing-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; min-width: 20px; height: 20px;
  border-radius: 6px;
  background: #f0fdf4;
  color: var(--success);
  margin-top: 1px;
}
.pricing-card-footer { margin-top: auto; }
.trial-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 40px;
  border-radius: var(--radius-2xl);
  flex-wrap: wrap;
}
.trial-cta-band h2 { font-size: 26px; margin: 8px 0 6px; }
.trial-cta-band p  { color: rgba(255,255,255,0.78); }

/* ============================================================
   STATIC INFO PAGES
   ============================================================ */
.info-page-hero {
  padding: 48px 52px;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 60%, #2563eb 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.info-page-hero h1      { margin: 12px 0 14px; font-size: clamp(26px, 4vw, 48px); color: #fff; }
.info-page-hero p       { color: rgba(255,255,255,0.78); font-size: 17px; }
.info-page-hero .eyebrow { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.2); }
.info-hero-actions      { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.info-section           { display: grid; gap: 48px; margin-top: 4px; }
.info-block             { display: grid; gap: 20px; }
.info-block h2          { font-size: clamp(20px, 3vw, 28px); }
.info-block p           { color: var(--muted); line-height: 1.75; }
.info-block + .info-block { padding-top: 32px; border-top: 1px solid var(--line); }
.steps-grid        { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.step-card {
  padding: 22px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  margin-bottom: 12px;
}
.step-card h3 { font-size: 17px; margin: 0 0 7px; }
.step-card p  { color: var(--muted); font-size: 14px; }
.feature-cards-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.feature-card-v2 {
  padding: 22px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
  transition: transform 0.18s, box-shadow 0.18s;
}
.feature-card-v2:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.feature-card-v2 .fc-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.feature-card-v2 .fc-icon svg { color: var(--primary); }
.feature-card-v2 h3 { font-size: 17px; margin: 0 0 7px; }
.feature-card-v2 p  { color: var(--muted); font-size: 14px; }
.pricing-compare-table { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.pricing-compare-table table { width: 100%; min-width: 540px; border-collapse: collapse; }
.pricing-compare-table th,
.pricing-compare-table td { padding: 12px 16px; border-bottom: 1px solid var(--line); text-align: left; font-size: 14px; }
.pricing-compare-table th { background: var(--surface-2); font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.pricing-compare-table tbody tr:hover { background: #f8fbff; }
.pricing-compare-table .check-y { color: var(--success); font-weight: 700; }
.pricing-compare-table .check-n { color: var(--muted-2); }
.legal-doc { max-width: 840px; }
.legal-doc h2 { font-size: 20px; margin: 0 0 10px; }
.legal-doc p  { color: var(--muted); line-height: 1.8; margin-bottom: 14px; font-size: 15px; }
.legal-doc ul { padding-left: 20px; margin: 0 0 14px; color: var(--muted); line-height: 1.8; font-size: 15px; }
.legal-block {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  margin-bottom: 14px;
}
.legal-update-note { font-size: 12px; color: var(--muted-2); margin-bottom: 24px; }

/* ============================================================
   CHECK / REVIEW CARD
   ============================================================ */
.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.check-badge {
  width: 38px; min-width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-weight: 800;
  color: #fff;
  background: var(--primary);
}
.admin-decision-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }

/* ============================================================
   NOTIFICATION
   ============================================================ */
.notification-card { padding: 16px 18px; transition: background 0.15s; cursor: default; }
.notification-card.is-unread { border-color: var(--primary-mid); background: #f8fbff; }
.notification-title { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.notification-body  { color: var(--muted); font-size: 14px; }
.notification-time  { font-size: 12px; color: var(--muted-2); margin-top: 6px; }

/* ============================================================
   LEAD SCORE / QUALITY
   ============================================================ */
.quality-badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.quality-high   { background: #f0fdf4; color: #14532d; border: 1px solid #bbf7d0; }
.quality-medium { background: var(--warning-soft); color: #78350f; border: 1px solid #fde68a; }
.quality-low    { background: #fef2f2; color: #7f1d1d; border: 1px solid #fecaca; }

/* ============================================================
   MISC UTILS
   ============================================================ */
.compact-stats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.top-gap-sm    { margin-top: 12px; }
.sticky-card   { position: sticky; top: 100px; }

/* Editor */
.editor-shell { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }
.editor-toolbar { display: flex; flex-wrap: wrap; gap: 6px; padding: 8px 10px; background: var(--surface-2); border-bottom: 1px solid var(--line); }
.editor-toolbar button { min-height: 32px; padding: 0 10px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: var(--surface); color: var(--ink); box-shadow: none; }
.editor-content { min-height: 160px; padding: 14px; outline: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .admin-shell,
  .admin-overview-grid { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; }
}

@media (max-width: 1000px) {
  .hero-home-grid,
  .news-hero-surface,
  .news-highlight-layout { grid-template-columns: 1fr; }
  .hero-home-grid .hero-showcase { display: none; }
  .listing-grid-v2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stats-grid,
  .compact-stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .section-dual-grid { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .steps-grid    { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-shell     { flex-wrap: nowrap; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 88vw);
    height: 100dvh;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 72px 12px 32px;
    background: var(--surface);
    border-left: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    z-index: 40;
    transition: right 0.26s cubic-bezier(.4,0,.2,1);
  }
  .nav-links.is-open { right: 0; }
  .nav-link,
  .nav-cta,
  .nav-dropdown-toggle,
  .link-button.nav-link {
    width: 100%;
    justify-content: flex-start;
    height: 46px;
    padding: 0 14px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: var(--surface-2);
  }
  .nav-cta { background: var(--primary); color: #fff; border-color: transparent; }
  .nav-divider { display: none; }
  .nav-dropdown { position: static; }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    margin: 2px 0 4px;
    display: none;
    padding: 4px;
  }
  .nav-dropdown.is-open .nav-dropdown-menu { display: grid; }
}

@media (max-width: 760px) {
  .admin-topbar,
  .admin-command-head { flex-direction: column; }
  .admin-hub-grid     { grid-template-columns: 1fr; }
  .lead-detail-layout { grid-template-columns: 1fr; }
  .two,
  .three,
  .four,
  .metrics-band,
  .detail-grid,
  .detail-meta-grid,
  .feature-cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .page-shell    { padding: 20px 0 48px; }
  .hero          { padding: 28px 22px; border-radius: var(--radius-xl); }
  .card,
  .panel-card,
  .form-card,
  .filter-panel,
  .review-card   { padding: 18px; }
  .container     { width: min(var(--container), calc(100% - 24px)); }
  .listing-grid-v2 { grid-template-columns: 1fr; }
  .stats-grid,
  .compact-stats { grid-template-columns: 1fr 1fr; }
  .timeline-grid,
  .steps-grid    { grid-template-columns: 1fr; }
  .feature-list-grid,
  .action-tile-grid { grid-template-columns: 1fr; }
  .register-hero-band { flex-direction: column; }
  .register-role-hints { max-width: none; justify-content: flex-start; }
  .search-shell  { flex-direction: column; }
  .toolbar-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .trial-cta-band { flex-direction: column; align-items: flex-start; padding: 26px 22px; }
  .info-page-hero { padding: 32px 22px; }
  .pricing-price-num { font-size: 36px; }
  .btn,
  .toolbar-actions a,
  .toolbar-actions button { width: 100%; }
  .hero-actions  { flex-direction: column; }
}

/* ============================================================
   FORM BLOCKS — section dividers inside long forms
   ============================================================ */
.form-block {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
}
.form-block + .form-block { margin-top: 4px; }
.form-block-head { display: grid; gap: 4px; padding-bottom: 4px; border-bottom: 1px solid var(--line); }
.form-block-head h2 { font-size: 20px; margin: 0; }
.form-block-head p  { color: var(--muted); font-size: 14px; margin: 2px 0 0; }
.form-submit-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 8px;
}

/* ============================================================
   CITY REGION PICKER — modern bölge + pill tasarımı
   ============================================================ */
.city-picker-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.city-selected-badge {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid var(--primary-mid);
}

.city-region-picker {
  display: grid;
  gap: 10px;
}

.city-region-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.15s;
}
.city-region-card:has(input[name="regions[]"]:checked) {
  border-color: var(--primary-mid);
  background: #f8fbff;
}

.city-region-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.city-region-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin: 0;
  font-weight: 0;
}
.city-region-toggle input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--primary);
  cursor: pointer;
}
.city-region-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  cursor: pointer;
}

.city-region-pill {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  background: var(--surface-3);
  border: 1px solid var(--line);
  white-space: nowrap;
}

.city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 14px 16px;
}

.city-pill {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: var(--surface-2);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.12s, color 0.12s, border-color 0.12s, transform 0.12s;
  user-select: none;
}
.city-pill input[type="checkbox"] {
  display: none;
}
.city-pill:hover {
  background: var(--primary-soft);
  border-color: var(--primary-mid);
  color: var(--primary);
  transform: translateY(-1px);
}
.city-pill.is-selected {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  font-weight: 600;
}
.city-pill.is-selected:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
}

@media (max-width: 640px) {
  .city-pills { gap: 6px; padding: 12px; }
  .city-pill  { height: 28px; font-size: 12px; padding: 0 9px; }
  .form-block { padding: 18px; }
}

/* ============================================================
   CHECKBOX GRID — entrepreneur requests / city selection legacy
   ============================================================ */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
  max-height: 280px;
  overflow-y: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.checkbox-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-2);
  cursor: pointer;
  transition: all 0.12s;
}
.checkbox-chip:hover {
  background: var(--primary-soft);
  border-color: var(--primary-mid);
  color: var(--primary);
}
.checkbox-chip input { display: none; }
.checkbox-chip:has(input:checked) {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* panel-card-accent — vurgulu ama koyu değil */
.panel-card-accent {
  border-color: var(--primary-mid);
  border-top: 2px solid var(--primary);
  background: var(--surface);
}

/* ============================================================
   HOME PAGE — Feature strip, action grid, news list
   ============================================================ */

/* Hero primary CTA */
.hero-btn-primary {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.hero-btn-primary:hover {
  background: rgba(255,255,255,0.94);
  color: var(--primary);
  transform: translateY(-1px);
}

/* Feature strip below hero */
.home-features-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.home-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 20px 20px;
  background: var(--surface);
  transition: background 0.13s;
}
.home-feature-item:hover { background: var(--primary-soft); }
.home-feature-icon {
  width: 38px; min-width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--primary-soft);
  border: 1px solid var(--primary-mid);
  color: var(--primary);
  margin-top: 2px;
}
.home-feature-item strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 3px; color: var(--ink); }
.home-feature-item p { font-size: 13px; color: var(--muted); margin: 0; }

/* Two-col layout for home sections */
.home-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Steps card */
.home-steps-card h2,
.home-action-card h2 { margin: 6px 0 18px; }

/* Action grid */
.home-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.home-action-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 14px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-2);
  transition: all 0.13s;
  text-decoration: none;
}
.home-action-item:hover {
  background: var(--primary-soft);
  border-color: var(--primary-mid);
}
.home-action-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.8;
}
.home-action-item strong { display: block; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.home-action-item span   { font-size: 12px; color: var(--muted); }

/* News list */
.home-news-list { display: grid; gap: 2px; }
.home-news-item {
  display: grid;
  gap: 5px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-2);
  text-decoration: none;
  transition: all 0.12s;
}
.home-news-item:last-child { border-bottom: none; }
.home-news-item:hover { background: transparent; }
.home-news-item:hover strong { color: var(--primary); }
.home-news-meta { margin-bottom: 2px; }
.home-news-item strong { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.home-news-item p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }

/* Promo list */
.home-promo-list { display: grid; gap: 10px; margin-top: 4px; }
.home-promo-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.home-promo-icon {
  width: 32px; min-width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--primary-soft);
  color: var(--primary);
  margin-top: 1px;
}
.home-promo-item strong { display: block; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.home-promo-item span   { font-size: 12px; color: var(--muted); }

@media (max-width: 1000px) {
  .home-features-strip { grid-template-columns: repeat(2,1fr); }
  .home-two-col { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .home-features-strip { grid-template-columns: 1fr; }
  .home-action-grid    { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING HERO SECTION
   ============================================================ */
.pricing-hero-section {
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fe 100%);
  border: 1px solid var(--primary-mid);
}
.pricing-hero-section h1 { font-size: clamp(24px,3.5vw,38px); margin: 10px 0 10px; }
.pricing-hero-section p  { color: var(--muted); font-size: 16px; max-width: 500px; margin: 0 auto; }
.pricing-hero-actions    { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 20px; }


/* Admin UI refinement fix: remove remaining dark hero cards and improve emphasis-card contrast */
.admin-command-card.panel-card-dark {
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}
.admin-command-card.panel-card-dark h1,
.admin-command-card.panel-card-dark h2,
.admin-command-card.panel-card-dark h3,
.admin-command-card.panel-card-dark strong {
  color: var(--ink);
}
.admin-command-card.panel-card-dark p,
.admin-command-card.panel-card-dark .eyebrow,
.admin-command-card.panel-card-dark .meta-chip-light,
.admin-command-card.panel-card-dark .queue-row p {
  color: var(--muted);
}
.admin-command-card.panel-card-dark .meta-chip-light {
  background: var(--surface-2);
  border-color: var(--line);
}
.admin-command-card.panel-card-dark .hero-actions .btn-light {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-xs);
}
.admin-command-card.panel-card-dark .hero-actions .btn-light:hover {
  background: var(--surface-3);
  color: var(--ink);
  border-color: #cbd5e1;
}

.stats-grid .stat-card-emphasis,
.stats-grid-admin .stat-card-emphasis {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  border: 1px solid #93c5fd;
  border-top: 1px solid #60a5fa;
  box-shadow: var(--shadow-xs);
}
.stats-grid .stat-card-emphasis .stat-kicker,
.stats-grid .stat-card-emphasis span:last-child,
.stats-grid-admin .stat-card-emphasis .stat-kicker,
.stats-grid-admin .stat-card-emphasis span:last-child {
  color: #64748b;
}
.stats-grid .stat-card-emphasis strong,
.stats-grid-admin .stat-card-emphasis strong {
  color: var(--ink);
}

/* ============================================================
   GİRİŞİMCİ PANELİ — Hesap Yönetim Kartları
   ============================================================ */
.entrepreneur-dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.account-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.account-action-tile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-2);
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.account-action-tile:hover {
  border-color: var(--primary-mid, rgba(37,99,235,0.3));
  box-shadow: var(--shadow-sm);
  background: #f8fbff;
}
.account-action-tile strong { font-size: 14px; font-weight: 700; color: var(--ink); }
.account-action-tile span   { font-size: 12px; color: var(--muted); }
.account-action-tile.danger-tile {
  border-color: rgba(220,38,38,0.15);
  background: #fff9f9;
}
.account-action-tile.danger-tile strong { color: var(--danger); }
.account-action-tile.danger-tile:hover  { border-color: rgba(220,38,38,0.35); background: #fff3f3; }

/* Profil tamamlanma — girişimci */
.entrepreneur-profile-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  background: #eff6ff;
  border: 1px solid rgba(37,99,235,0.15);
  margin-bottom: 4px;
}
.entrepreneur-profile-notice p { font-size: 14px; color: var(--ink-2); margin: 2px 0 0; }

@media (max-width: 860px) {
  .entrepreneur-dashboard-grid { grid-template-columns: 1fr; }
  .account-action-grid          { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .account-action-grid          { grid-template-columns: 1fr; }
}
