/* Firma Tanıt - Modern Tasarım Sistemi */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
@import url('https://cdn.jsdelivr.net/npm/remixicon@4.6.0/fonts/remixicon.css');

:root {
  --bg: #f6f8fc;
  --bg-accent: #eef2ff;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --surface-hover: #f1f5f9;
  --border: #e8edf4;
  --border-strong: #d7dee9;
  --text: #0b1220;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --primary: #4f46e5;
  --primary-hover: #4338ca;
  --primary-light: #eef2ff;
  --primary-ring: rgba(79, 70, 229, 0.18);
  --accent: #06b6d4;
  --success: #059669;
  --success-light: #ecfdf5;
  --warning: #d97706;
  --warning-light: #fffbeb;
  --danger: #dc2626;
  --danger-light: #fef2f2;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
  --sidebar-w: 268px;
  --header-h: 72px;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 15px;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(79, 70, 229, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(6, 182, 212, 0.08), transparent);
  pointer-events: none;
  z-index: -1;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-hover); }

img { max-width: 100%; display: block; }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Layout */
.container { max-width: 1180px; width: 100%; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 460px; width: 100%; margin: 0 auto; padding: 0 20px; }
.container-md { max-width: 760px; width: 100%; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(232, 237, 244, 0.9);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
  min-width: 0;
  max-width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 17px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.site-header .logo {
  height: 55px;
  max-height: 55px;
  flex-shrink: 0;
  overflow: hidden;
  line-height: 1;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), #6366f1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.28);
}
.logo-icon i { font-size: 20px; line-height: 1; }

.logo--image { gap: 0; }

.site-header .logo--image {
  height: 55px;
  max-height: 55px;
}

.site-header .site-logo-img {
  display: block;
  height: 55px;
  max-height: 55px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.site-logo-img { max-height: 55px; height: auto; width: auto; max-width: 180px; object-fit: contain; }
.site-logo-img--footer { height: 36px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-brand .logo--image { margin-bottom: 4px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px;
}

.nav-links a {
  padding: 9px 18px;
  border-radius: 999px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition);
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.8);
}

.nav-links a.active {
  background: var(--surface);
  color: var(--primary);
  box-shadow: var(--shadow-xs);
}

.header-actions { display: flex; align-items: center; gap: 10px; }

.header-cta {
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(79, 70, 229, 0.22);
}

.header-account {
  position: relative;
}

.header-account-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 12px 0 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.header-account-btn:hover {
  border-color: #c7d2fe;
  background: var(--primary-light);
  color: var(--primary);
}

.header-account-btn--online {
  border-color: #86efac;
  background: #f0fdf4;
  color: #15803d;
}

.header-account-btn--online:hover {
  border-color: #4ade80;
  background: #dcfce7;
  color: #166534;
}

.header-account-label {
  max-width: none;
  overflow: visible;
  text-overflow: clip;
  white-space: nowrap;
}

.header-account-caret {
  font-size: 16px;
  line-height: 1;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.header-account.is-open .header-account-caret {
  transform: rotate(180deg);
}

.header-account-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  z-index: 120;
}

.header-account-user {
  padding: 10px 12px 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 6px;
}

.header-account-user strong {
  display: block;
  font-size: 14px;
  color: var(--text);
}

.header-account-user span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-account-menu a,
.header-account-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  text-align: left;
}

.header-account-menu a:hover,
.header-account-menu button:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.header-account-menu i {
  font-size: 16px;
  line-height: 1;
  width: 18px;
  text-align: center;
}

.mobile-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 42px;
  height: 42px;
  cursor: pointer;
  color: var(--text);
  align-items: center;
  justify-content: center;
}

.mobile-toggle i { font-size: 20px; line-height: 1; }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 18, 32, 0.4);
  backdrop-filter: blur(4px);
  z-index: 90;
}

.nav-overlay.open { display: block; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #6366f1);
  color: #fff;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover), #4f46e5);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.34);
}

.btn-outline {
  background: var(--surface);
  color: var(--text-secondary);
  border: 1px solid var(--border-strong);
}

.btn-outline:hover {
  background: var(--surface-hover);
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}

.btn-ghost:hover {
  background: var(--surface-hover);
  color: var(--text);
}

.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #b91c1c; color: #fff; }
.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: #047857; color: #fff; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 15px 30px; font-size: 15px; }
.btn-block { width: 100%; }

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.card:hover { border-color: var(--border-strong); }

.card-body { padding: 28px; }
.card-header {
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(180deg, #fff, var(--surface-2));
}

.card-title { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; }
.card-footer {
  padding: 18px 28px;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
}

/* Forms */
.form-group { margin-bottom: 22px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.form-label .required { color: var(--danger); }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 6px; line-height: 1.5; }

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--surface);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-control::placeholder { color: #94a3b8; }

.form-control:hover {
  border-color: #c5ced9;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-ring);
  background: #fff;
}

textarea.form-control { resize: vertical; min-height: 128px; }
select.form-control { cursor: pointer; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.form-check input { margin-top: 4px; accent-color: var(--primary); width: 16px; height: 16px; }

.input-icon-wrap { position: relative; }
.input-icon-wrap .form-control { padding-left: 44px; }
.input-icon-wrap .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.input-icon-wrap .input-icon i { font-size: 18px; line-height: 1; }

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.badge-primary { background: var(--primary-light); color: var(--primary); }
.badge-success { background: var(--success-light); color: var(--success); }
.badge-warning { background: var(--warning-light); color: var(--warning); }
.badge-danger { background: var(--danger-light); color: var(--danger); }
.badge-muted { background: var(--surface-2); color: var(--text-muted); border: 1px solid var(--border); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

/* Hero */
.hero {
  position: relative;
  overflow: visible;
  padding: 88px 0 104px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 35%),
    linear-gradient(135deg, #312e81 0%, #4f46e5 45%, #6366f1 100%);
}

.hero--image {
  background: #0b1220;
  padding: 96px 0 112px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(49, 46, 129, 0.88) 0%, rgba(79, 70, 229, 0.78) 45%, rgba(11, 18, 32, 0.72) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 280px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.14), transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 40;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: clamp(16px, 2.2vw, 19px);
  opacity: 0.92;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
}

.hero .btn-primary:hover {
  background: #f8fafc;
  color: var(--primary-hover);
}

.hero-search {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: stretch;
  gap: 10px;
  max-width: 640px;
  margin: 0 auto;
  padding: 8px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-search .search-box { flex: 1; min-width: 0; }
.hero-search .search-box input {
  border: none;
  background: transparent;
  padding: 14px 14px 14px 44px;
  font-size: 15px;
  box-shadow: none;
}

.hero-search .search-box input:focus {
  box-shadow: none;
  border: none;
}

.hero-search .btn {
  border-radius: 999px;
  padding-inline: 24px;
  flex-shrink: 0;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
}

.hero-tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -52px;
  position: relative;
  z-index: 2;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon i { font-size: 22px; color: var(--primary); line-height: 1; }
.stat-card .stat-num { font-size: 24px; font-weight: 800; color: var(--text); letter-spacing: -0.03em; line-height: 1.1; }
.stat-card .stat-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; font-weight: 600; }

/* Section */
.section { padding: 72px 0; }
.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.4));
  border-block: 1px solid var(--border);
}

.section-header { margin-bottom: 36px; }
.section-header h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.section-header p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 560px;
}

.section-header.text-center p { margin-inline: auto; }

/* Grid */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-3 > *,
.grid-4 > * { min-width: 0; max-width: 100%; }

/* Company card */
.company-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  color: inherit;
  display: block;
}

.company-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: #d4daf0;
  color: inherit;
}

.company-card-img {
  height: 148px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 55%, #f0f9ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-card-img .company-card-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.company-card:hover .company-card-img .company-card-cover { transform: scale(1.05); }

.company-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 18, 32, 0.08));
  pointer-events: none;
  z-index: 1;
}

.company-card-logo {
  position: absolute;
  left: 14px;
  top: 106px;
  z-index: 5;
  width: 85px;
  height: 85px;
  border-radius: 12px;
  background: #fff;
  border: 2px solid #e8e8ff;
  box-shadow: 0 4px 14px rgb(154 183 249 / 14%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.company-card--has-logo .company-card-body {
  padding-top: 55px;
}

.company-card-rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
}

.company-card-rating i { color: #f59e0b; font-size: 11px; line-height: 1; }

.company-card-img i {
  font-size: 46px;
  color: var(--primary);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.company-card-body {
  position: relative;
  z-index: 2;
  padding: 22px;
}
.company-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.company-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}

.company-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.company-location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.company-location i { font-size: 14px; line-height: 1; }

.company-card--compact .company-card-img {
  height: 100px;
}

.company-card--compact .company-card-img i {
  font-size: 34px;
}

.company-card--compact .company-card-logo {
  width: 56px;
  height: 56px;
  top: 72px;
  left: 12px;
  border-radius: 10px;
}

.company-card--compact.company-card--has-logo .company-card-body {
  padding-top: 36px;
}

.company-card--compact .company-card-body {
  padding: 14px;
}

.company-card--compact .company-card-body h3 {
  font-size: 15px;
  margin-bottom: 10px;
}

.company-card--compact .company-card-meta {
  flex-wrap: wrap;
}

.company-card--compact .badge {
  font-size: 11px;
}

/* Category card */
.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  color: inherit;
  display: block;
}

.category-card:hover {
  border-color: #c7d2fe;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  color: inherit;
}

.category-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--primary-light), #e0e7ff);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.category-icon i { font-size: 26px; color: var(--primary); line-height: 1; }
.category-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
.category-card span { font-size: 13px; color: var(--text-muted); font-weight: 600; }

/* Page header & banner */
.page-header {
  background: linear-gradient(180deg, #fff 0%, var(--surface-2) 100%);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.page-banner {
  position: relative;
  padding: 72px 0;
  color: #fff;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(11, 18, 32, 0.82) 0%, rgba(49, 46, 129, 0.72) 100%);
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner .breadcrumb a,
.page-banner .breadcrumb span { color: rgba(255, 255, 255, 0.72); }
.page-banner .breadcrumb a:hover { color: #fff; }
.page-banner h1 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.page-banner p { color: rgba(255, 255, 255, 0.88); font-size: 16px; max-width: 560px; }

.page-banner .btn-outline {
  border-color: rgba(255,255,255,0.45);
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.page-banner .btn-outline:hover {
  background: rgba(255,255,255,0.18);
  border-color: #fff;
  color: #fff;
}

.page-header h1 {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.page-header p { color: var(--text-muted); font-size: 16px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
  font-weight: 600;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }

/* Auth */
.auth-page {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
}

.auth-card { width: 100%; max-width: 460px; }
.auth-card .card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.auth-card .card-body { padding: 40px 36px; }
.auth-logo { text-align: center; margin-bottom: 30px; }
.auth-logo h2 { font-size: 24px; font-weight: 800; margin-top: 14px; letter-spacing: -0.03em; }
.auth-logo p { color: var(--text-muted); font-size: 14px; margin-top: 6px; }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 13px;
  margin: 22px 0;
  font-weight: 600;
}

.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth-footer {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 22px;
}

/* Filters */
.filters-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-xs);
}

.filters-bar {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.filter-field { flex: 1; min-width: 180px; }
.filter-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.search-box { position: relative; z-index: 5; flex: 1; min-width: 220px; }
.search-box input { padding-left: 44px; }
.search-box .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  pointer-events: none;
}

.search-box .search-icon i { font-size: 18px; line-height: 1; }

.live-search-results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 9999;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-height: 420px;
  overflow-y: auto;
}

.hero-search .live-search-results,
.filters-card .live-search-results {
  top: calc(100% + 12px);
  border-radius: 18px;
  z-index: 9999;
}

.live-search-group {
  padding: 10px 0 6px;
  border-bottom: 1px solid var(--border);
}

.live-search-group:last-child { border-bottom: none; }

.live-search-label {
  display: block;
  padding: 4px 16px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.live-search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: inherit;
  text-decoration: none;
  transition: background 0.15s ease;
}

.live-search-item:hover,
.live-search-item.is-active {
  background: var(--primary-light);
  color: inherit;
}

.live-search-thumb {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.live-search-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-search-thumb img.is-logo {
  object-fit: contain;
  padding: 4px;
  background: #fff;
}

.live-search-thumb i {
  font-size: 18px;
  color: var(--primary);
}

.live-search-meta { min-width: 0; flex: 1; }

.live-search-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-search-sub {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-search-empty,
.live-search-more {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.live-search-more {
  display: block;
  border-top: 1px solid var(--border);
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.live-search-more:hover { background: var(--primary-light); }

/* Table */
.table-wrap { overflow-x: auto; border-radius: var(--radius-sm); }
table { width: 100%; border-collapse: collapse; font-size: 14px; }

thead th {
  text-align: left;
  padding: 14px 18px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

tbody td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

tbody tr:hover td { background: #fafbfe; }
.table-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* Detail - Modern Company Page */
.company-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0b1220;
}

.company-hero-bg {
  position: absolute;
  inset: 0;
}

.company-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.company-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.15) 0%, rgba(11, 18, 32, 0.55) 55%, rgba(11, 18, 32, 0.88) 100%),
    linear-gradient(90deg, rgba(11, 18, 32, 0.3), transparent 50%);
}

.company-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 36px 0 44px;
  color: #fff;
}

.company-hero .breadcrumb { margin-bottom: 18px; }
.company-hero .breadcrumb a,
.company-hero .breadcrumb span { color: rgba(255, 255, 255, 0.72); }
.company-hero .breadcrumb a:hover { color: #fff; }

.company-hero-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.company-hero-info h1 {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 12px 0 14px;
  line-height: 1.1;
}

.company-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.company-hero-badges .badge {
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.company-hero-badges .badge-primary {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.company-hero-badges .badge-success {
  background: rgba(5, 150, 105, 0.25);
  color: #a7f3d0;
  border-color: rgba(167, 243, 208, 0.3);
}

.company-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.company-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.company-hero-meta i { font-size: 14px; opacity: 0.9; line-height: 1; }
.company-hero-meta .ri-star-fill { color: #fbbf24; font-size: 13px; }

.company-hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.company-hero-actions .btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.company-hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.company-hero-actions .btn-primary {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.company-quick-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  box-shadow: var(--shadow-xs);
}

.company-quick-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  overflow-x: auto;
}

.quick-links {
  display: flex;
  gap: 8px;
}

.quick-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  background: var(--surface-2);
  border: 1px solid var(--border);
  white-space: nowrap;
  transition: all var(--transition);
}

.quick-link:hover {
  color: var(--primary);
  border-color: #c7d2fe;
  background: var(--primary-light);
}

.quick-link i { font-size: 16px; line-height: 1; }

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  padding: 40px 0 64px;
}

.detail-main .detail-banner {
  height: 260px;
  background: linear-gradient(135deg, #3730a3, #4f46e5, #6366f1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.detail-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-banner i { font-size: 76px; color: rgba(255, 255, 255, 0.95); line-height: 1; }
.detail-main h1 { font-size: 32px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.03em; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }

.detail-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  padding: 8px 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.detail-meta-item i { font-size: 15px; color: var(--primary); line-height: 1; }

.detail-section {
  margin-bottom: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-xs);
}

.detail-section h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-section h2 i {
  color: var(--primary);
  font-size: 22px;
}

.detail-section p { color: var(--text-secondary); line-height: 1.85; }

.company-description {
  color: var(--text-secondary);
  line-height: 1.85;
}

.company-description p { margin-bottom: 12px; }
.company-description p:last-child { margin-bottom: 0; }

.company-description a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.company-description a:hover {
  color: var(--primary-hover);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 280px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.service-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-weight: 700;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.service-pill:hover {
  border-color: #c7d2fe;
  background: var(--primary-light);
  color: var(--primary);
}

.service-pill i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.info-card { position: sticky; top: calc(var(--header-h) + 72px); }

.info-card-highlight {
  background: linear-gradient(135deg, var(--primary-light), #e0e7ff);
  border: 1px solid #c7d2fe;
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  text-align: center;
}

.info-card-highlight .rating-big {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.info-card-highlight .rating-big i { color: #f59e0b; font-size: 20px; vertical-align: middle; }

.info-card-highlight p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 600;
}

.related-section {
  padding: 56px 0 72px;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
}

.results-count {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 20px;
}

.results-count strong { color: var(--text); }
.info-card .info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.info-card .info-row:last-child { border-bottom: none; }

.info-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i { font-size: 18px; color: var(--primary); line-height: 1; }
.info-label { font-size: 11px; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.info-value { font-size: 14px; font-weight: 600; color: var(--text-secondary); margin-top: 2px; }

/* Steps */
.steps {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}

.step.active { color: var(--primary); }
.step.active .step-num { background: var(--primary); border-color: var(--primary); color: #fff; }
.step.done { color: var(--success); }
.step.done .step-num { background: var(--success); border-color: var(--success); color: #fff; }
.step-line { flex: 1; height: 2px; background: var(--border); margin: 0 10px; border-radius: 999px; }

/* Alert */
.alert {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
  line-height: 1.55;
}

.alert i { font-size: 20px; flex-shrink: 0; line-height: 1.3; }
.alert-info { background: var(--primary-light); color: #3730a3; border: 1px solid #c7d2fe; }
.alert-warning { background: var(--warning-light); color: #92400e; border: 1px solid #fde68a; }
.alert-success { background: var(--success-light); color: #065f46; border: 1px solid #a7f3d0; }

/* CTA */
.cta-banner {
  margin-top: 24px;
  padding: 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(49,46,129,0.92), rgba(79,70,229,0.88)), url('../images/banners/banner-business.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.cta-banner h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.cta-banner p {
  opacity: 0.9;
  margin-bottom: 24px;
  font-size: 16px;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--primary);
}

.cta-banner .btn-primary:hover {
  background: #f8fafc;
  color: var(--primary-hover);
}

/* Feature cards */
.feature-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-light), #e0e7ff);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i { font-size: 28px; color: var(--primary); line-height: 1; }
.feature-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.02em; }

/* Ana Sayfa Bölümleri */
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.section-header-row .section-header { margin-bottom: 0; }

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}

.quick-action {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  color: inherit;
}

.quick-action:hover {
  border-color: #c7d2fe;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  color: inherit;
}

.quick-action-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-action-icon i { font-size: 22px; color: var(--primary); }
.quick-action strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.quick-action span { font-size: 12px; color: var(--text-muted); }

.city-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.city-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
  color: inherit;
}

.city-card:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
  transform: translateY(-2px);
}

.city-card i { font-size: 24px; color: var(--primary); }
.city-card strong { font-size: 14px; font-weight: 700; }
.city-card span { font-size: 11px; color: var(--text-muted); font-weight: 600; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.benefit-card:hover { box-shadow: var(--shadow); border-color: #c7d2fe; }

.benefit-card .benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-light), #e0e7ff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.benefit-card .benefit-icon i { font-size: 24px; color: var(--primary); }
.benefit-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.recent-list { display: flex; flex-direction: column; gap: 12px; }

.recent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.recent-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  color: inherit;
  overflow: hidden;
}

.recent-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #818cf8);
}

.recent-card:hover {
  border-color: #c7d2fe;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  color: inherit;
}

.recent-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.recent-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-light), #e0e7ff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.recent-card-icon i { font-size: 22px; color: var(--primary); }

.recent-card-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface-2);
  padding: 4px 10px;
  border-radius: 20px;
}

.recent-card-time .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.recent-card h4 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.recent-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.recent-card-meta span {
  font-size: 12px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.recent-card-meta span i { font-size: 13px; }

.recent-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.recent-card-footer .view-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Son Eklenen Firmalar — Liste Sayfası */
.company-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.company-list-item {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  color: inherit;
}

.company-list-item:hover {
  border-color: #c7d2fe;
  box-shadow: var(--shadow-xs);
  color: inherit;
}

.company-list-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-light), #e0e7ff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.company-list-icon i { font-size: 22px; color: var(--primary); }

.company-list-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.company-list-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.company-list-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.company-list-tags span {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--surface-2);
  color: var(--text-muted);
}

.company-list-date {
  text-align: right;
  flex-shrink: 0;
}

.company-list-date strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.company-list-date span {
  font-size: 12px;
  color: var(--text-muted);
}

.company-list-arrow {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}

.company-list-item:hover .company-list-arrow {
  background: var(--primary-light);
  color: var(--primary);
}

.list-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.list-summary p {
  font-size: 14px;
  color: var(--text-muted);
}

.list-summary strong { color: var(--text); }

.recent-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  color: inherit;
}

.recent-item:hover {
  border-color: #c7d2fe;
  box-shadow: var(--shadow-xs);
  color: inherit;
}

.recent-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.recent-item-icon i { font-size: 20px; color: var(--primary); }
.recent-item-info { flex: 1; min-width: 0; }
.recent-item-info h4 { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.recent-item-info p { font-size: 13px; color: var(--text-muted); }
.recent-item-meta { text-align: right; flex-shrink: 0; }
.recent-item-meta .badge { margin-bottom: 4px; }
.recent-item-meta span { display: block; font-size: 11px; color: var(--text-muted); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 48px;
  color: var(--primary-light);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars { color: #f59e0b; font-size: 14px; margin-bottom: 12px; }
.testimonial-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #6366f1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.testimonial-author strong { display: block; font-size: 14px; }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--surface);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--surface-2); }
.faq-question i { font-size: 18px; color: var(--text-muted); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--primary); }

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }

.steps-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}

.step-card-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.3);
}

.step-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.split-visual img { width: 100%; height: 320px; object-fit: cover; display: block; }

.split-content h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.split-content p { color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }

.split-checklist { list-style: none; margin-bottom: 28px; }

.split-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.split-checklist i { color: var(--success); font-size: 18px; }

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-bar-item i { font-size: 22px; color: var(--primary); }

/* Neden Firma Tanıt Sayfası */
.why-page main { padding-top: 0; }

.why-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.why-stats-float {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -56px;
  margin-bottom: 64px;
  position: relative;
  z-index: 3;
}

.why-stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.why-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #c7d2fe;
}

.why-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-light), #e0e7ff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-stat-icon i { font-size: 24px; color: var(--primary); }

.why-stat-card .stat-num {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 2px;
}

.why-stat-card p {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0;
}

.why-block {
  padding: 64px 0;
}

.why-block-alt {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--bg) 100%);
  border-block: 1px solid var(--border);
}

.why-block-header {
  max-width: 680px;
  margin-bottom: 40px;
}

.why-block-header.centered {
  margin-inline: auto;
  text-align: center;
}

.why-block-header h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.why-block-header p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}

.why-split-text h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.why-split-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.why-split-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.why-split-visual img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.why-split-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79,70,229,0.15), transparent 60%);
  pointer-events: none;
}

.why-benefits-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.why-benefit-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #818cf8);
  opacity: 0;
  transition: opacity var(--transition);
}

.why-benefit-card:hover {
  border-color: #c7d2fe;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.why-benefit-card:hover::before { opacity: 1; }

.why-benefit-card.wide { grid-column: span 2; }

.why-benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-benefit-icon i { font-size: 22px; color: var(--primary); }

.why-benefit-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.why-benefit-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.why-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-audience-card {
  padding: 28px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
}

.why-audience-card:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-3px);
}

.why-audience-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-light), #e0e7ff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: all var(--transition);
}

.why-audience-card:hover .why-audience-icon {
  background: var(--primary);
}

.why-audience-icon i { font-size: 26px; color: var(--primary); transition: color var(--transition); }
.why-audience-card:hover .why-audience-icon i { color: #fff; }

.why-audience-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-audience-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.why-feature-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-feature-item {
  display: flex;
  gap: 18px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.why-feature-item:hover {
  border-color: #c7d2fe;
  box-shadow: var(--shadow-xs);
}

.why-feature-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-feature-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-feature-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.why-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-compare-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.why-compare-card.featured {
  background: linear-gradient(135deg, rgba(79,70,229,0.06), rgba(99,102,241,0.02));
  border-color: #c7d2fe;
  box-shadow: var(--shadow);
}

.why-compare-card.legacy {
  background: var(--surface);
}

.why-compare-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.why-compare-card.featured .why-compare-badge {
  background: var(--primary-light);
  color: var(--primary);
}

.why-compare-card.legacy .why-compare-badge {
  background: var(--surface-2);
  color: var(--text-muted);
}

.why-compare-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.why-compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-compare-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.why-compare-list li i { font-size: 18px; flex-shrink: 0; }
.why-compare-card.featured .why-compare-list li i { color: var(--success); }
.why-compare-card.legacy .why-compare-list li i { color: #94a3b8; }

.why-steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.why-steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #c7d2fe, var(--primary));
  z-index: 0;
}

.why-step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.why-step-card:hover {
  border-color: #c7d2fe;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.why-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #6366f1);
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(79,70,229,0.35);
}

.why-step-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.why-seo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.why-seo-tip {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.why-seo-tip:hover {
  border-color: #c7d2fe;
  background: var(--primary-light);
}

.why-seo-tip i {
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-seo-tip p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
  font-weight: 500;
}

.why-faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}

.why-cta-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #312e81 0%, #4f46e5 50%, #6366f1 100%);
  color: #fff;
  box-shadow: 0 20px 50px rgba(79,70,229,0.35);
  overflow: hidden;
  position: relative;
}

.why-cta-split::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}

.why-cta-split h2 {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  position: relative;
}

.why-cta-split p {
  font-size: 16px;
  opacity: 0.9;
  margin: 0;
  position: relative;
}

.why-cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.why-cta-split .btn-primary {
  background: #fff;
  color: var(--primary);
  white-space: nowrap;
}

.why-cta-split .btn-outline,
.why-cta-split a.btn-outline {
  background: transparent !important;
  border: 1.5px solid rgba(255,255,255,0.85) !important;
  color: #fff !important;
  white-space: nowrap;
}

.why-cta-split .btn-outline:hover,
.why-cta-split a.btn-outline:hover {
  background: rgba(255,255,255,0.16) !important;
  border-color: #fff !important;
  color: #fff !important;
}

.service-item { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--text-secondary); }
.service-item i { font-size: 20px; color: var(--primary); line-height: 1; }

/* Admin */
.admin-layout { display: flex; min-height: 100vh; }

.admin-sidebar {
  width: var(--sidebar-w);
  background: linear-gradient(180deg, #0f172a, #111827);
  color: #cbd5e1;
  flex-shrink: 0;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 200;
  border-right: 1px solid #1e293b;
}

.admin-sidebar .logo {
  padding: 22px 20px;
  border-bottom: 1px solid #1e293b;
  color: #fff;
}

.admin-nav { padding: 18px 14px; }
.admin-nav-section {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  padding: 10px 12px 6px;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  color: #94a3b8;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  margin-bottom: 4px;
}

.admin-nav a:hover { background: rgba(255,255,255,0.06); color: #f1f5f9; }
.admin-nav a.active { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(79,70,229,0.35); }
.admin-nav a .nav-icon { width: 20px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.admin-nav a .nav-icon i { font-size: 18px; line-height: 1; }

.admin-main { margin-left: var(--sidebar-w); flex: 1; display: flex; flex-direction: column; }

.admin-topbar {
  height: var(--header-h);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.admin-topbar h1 { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.admin-content { padding: 28px; flex: 1; }

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.admin-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: box-shadow var(--transition);
}

.admin-stat-card:hover { box-shadow: var(--shadow); }
.admin-stat-card .label { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.admin-stat-card .value { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; }
.admin-stat-card .change { font-size: 12px; margin-top: 6px; font-weight: 600; }
.change-up { color: var(--success); display: inline-flex; align-items: center; gap: 4px; }
.change-down { color: var(--danger); }
.change-up i { font-size: 14px; line-height: 1; }

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 18, 32, 0.55);
  backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--border);
}

.modal-header {
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; }

.modal-close {
  background: var(--surface-2);
  border: 1px solid var(--border);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover { background: var(--surface-hover); color: var(--text); }
.modal-close i { font-size: 18px; line-height: 1; }
.modal-body { padding: 28px; }
.modal-footer {
  padding: 18px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  background: var(--surface-2);
}

/* Footer */
.site-footer {
  background: #0a0f1a;
  color: #94a3b8;
  padding: 0;
  margin-top: 48px;
  border-top: 1px solid #1e293b;
}

.footer-main {
  padding: 56px 0 40px;
  border-bottom: 1px solid #1e293b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.75; max-width: 300px; margin-bottom: 20px; }

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #141c2e;
  border: 1px solid #243044;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.footer-social i { font-size: 17px; line-height: 1; }

.footer-col h4 {
  color: #f1f5f9;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a { color: #94a3b8; font-size: 14px; font-weight: 500; }
.footer-col ul a:hover { color: #fff; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #e2e8f0;
}

.footer-contact-item a {
  color: #f1f5f9;
  text-decoration: none;
  font-weight: 500;
}

.footer-contact-item a:hover {
  color: #fff;
}

.footer-contact-item i {
  color: #cbd5e1;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-trust {
  padding: 24px 0;
  border-bottom: 1px solid #1e293b;
  background: #0d1424;
}

.footer-trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-trust-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
}

.footer-trust-badge i { color: #22c55e; font-size: 16px; }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a { color: #94a3b8; font-weight: 500; }
.footer-legal a:hover { color: #fff; }

/* Empty state */
.empty-state { text-align: center; padding: 72px 24px; color: var(--text-muted); }
.empty-state .empty-icon { margin-bottom: 16px; display: flex; justify-content: center; }
.empty-state .empty-icon i { font-size: 52px; color: #cbd5e1; line-height: 1; }
.empty-state h3 { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 8px; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-grid--related {
  grid-template-columns: repeat(3, 1fr);
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--card, #fff);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  border-color: #c7d2fe;
}
.blog-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-img i {
  font-size: 36px;
  color: #818cf8;
}
.blog-card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.blog-card-body time {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}
.blog-card-body h3 {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  color: var(--text);
}
.blog-card-body p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-more {
  margin-top: auto;
  padding-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.blog-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.blog-slider-viewport {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.blog-slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.45s ease;
  will-change: transform;
}
.blog-slider-slide {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.blog-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}
.blog-slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border, #e2e8f0);
  background: #fff;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.blog-slider-btn:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
}
.blog-slider-btn:disabled {
  opacity: 0.4;
  cursor: default;
}
.blog-slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.blog-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #cbd5e1;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}
.blog-slider-dot.is-active {
  width: 22px;
  background: var(--primary);
}
.blog-article-layout {
  max-width: 980px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.blog-share {
  width: 56px;
}
.blog-share-sticky {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.blog-share-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.blog-share-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border, #e2e8f0);
  background: #fff;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.blog-share-btn i {
  font-size: 18px;
  line-height: 1;
}
.blog-share-btn:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: transparent;
}
.blog-share-btn--facebook:hover { background: #1877f2; }
.blog-share-btn--x:hover { background: #0f172a; }
.blog-share-btn--linkedin:hover { background: #0a66c2; }
.blog-share-btn--whatsapp:hover { background: #25d366; }
.blog-share-btn--copy:hover { background: var(--primary); }
.blog-share-btn--copy.is-copied {
  background: #16a34a;
  border-color: transparent;
  color: #fff;
}
.blog-article-main {
  min-width: 0;
}
.blog-article-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 24px;
  font-weight: 500;
}
.blog-article-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
}
.blog-article-body h2,
.blog-article-body h3 {
  margin: 1.4em 0 0.6em;
  font-weight: 800;
}
.blog-article-body p {
  margin: 0 0 1em;
}
.blog-article-body img {
  max-width: 100%;
  border-radius: var(--radius);
}
.blog-related {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border, #e2e8f0);
}
.blog-related h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 18px;
}
.pagination-wrap {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
.page-banner--sm {
  padding: 48px 0 40px;
}
.table-icon i { font-size: 20px; color: var(--primary); line-height: 1; }

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.pagination button, .pagination a {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  color: var(--text-muted);
  background: var(--surface);
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 600;
}

.pagination button:hover, .pagination a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.pagination .active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 6px 16px rgba(79,70,229,0.28);
}

.pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  overflow-x: auto;
}

.tab {
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: inherit;
  white-space: nowrap;
}

.tab:hover { color: var(--text); }
.tab.active { color: var(--primary); border-bottom-color: var(--primary); }

/* Utilities */
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 16px; }

.mobile-bottom-nav {
  display: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-4, .stats-grid, .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .quick-actions, .city-grid, .benefits-grid, .testimonial-grid, .steps-modern, .recent-grid { grid-template-columns: repeat(2, 1fr); }
  .split-section { grid-template-columns: 1fr; }
  .why-split, .why-compare-grid, .why-benefits-bento, .why-steps-row, .why-seo-grid { grid-template-columns: 1fr; }
  .why-benefit-card.wide { grid-column: span 1; }
  .why-stats-float { grid-template-columns: repeat(2, 1fr); margin-top: -40px; }
  .why-features-row, .why-highlight-grid, .why-audience-grid { grid-template-columns: repeat(2, 1fr); }
  .why-steps-row::before { display: none; }
  .why-cta-split { flex-direction: column; text-align: center; padding: 36px 28px; }
  .why-cta-actions { flex-direction: column; width: 100%; }
  .why-cta-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-trust-inner { flex-direction: column; align-items: flex-start; }
  .detail-layout { grid-template-columns: 1fr; }
  .info-card { position: static; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.featured { grid-column: span 2; grid-row: span 1; min-height: 200px; }
  .company-hero-top { flex-direction: column; align-items: flex-start; }
  .service-grid { grid-template-columns: 1fr; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--header-h);
    right: 16px;
    left: 16px;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 110;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; border-radius: var(--radius-sm); padding: 12px 14px; }
  .mobile-toggle { display: inline-flex; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--header-h);
    right: 16px;
    left: 16px;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 110;
  }

  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; border-radius: var(--radius-sm); padding: 12px 14px; }
  .mobile-toggle { display: inline-flex; }
  .header-actions { gap: 8px; }
  .header-cta span,
  .header-account-label { display: none; }
  .header-cta,
  .header-account-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    justify-content: center;
  }
  .header-account-caret { display: none; }
  .header-account-menu { min-width: 200px; }
  .header-cta,
  .mobile-toggle { display: none !important; }

  .mobile-bottom-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    height: calc(64px + env(safe-area-inset-bottom, 0px));
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px) saturate(180%);
    border-top: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 -8px 28px rgba(15, 23, 42, 0.08);
  }

  .mobile-bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 0;
    color: #94a3b8;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.1;
    padding: 4px 2px;
    border-radius: 12px;
    transition: color 0.2s ease, transform 0.2s ease;
  }

  .mobile-bottom-nav__item i {
    font-size: 22px;
    line-height: 1;
  }

  .mobile-bottom-nav__item span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-bottom-nav__item.is-active {
    color: var(--primary);
  }

  .mobile-bottom-nav__item--cta {
    position: relative;
    top: -14px;
    color: var(--primary);
  }

  .mobile-bottom-nav__cta {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), #6366f1);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.35);
    margin-bottom: 2px;
  }

  .mobile-bottom-nav__cta i {
    font-size: 26px;
    color: #fff;
  }

  .mobile-bottom-nav__item--cta span:last-child {
    color: var(--primary);
  }

  .mobile-bottom-nav__item--cta.is-active .mobile-bottom-nav__cta {
    box-shadow: 0 12px 28px rgba(79, 70, 229, 0.45);
    transform: scale(1.04);
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .site-footer {
    margin-bottom: 8px;
  }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .blog-grid, .blog-grid--related, .blog-grid--home { grid-template-columns: 1fr; }
  .blog-article-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blog-share {
    width: 100%;
    order: -1;
  }
  .blog-share-sticky {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
  }
  .blog-share-label {
    writing-mode: horizontal-tb;
    transform: none;
    width: 100%;
    margin-bottom: 0;
  }
  .quick-actions, .city-grid, .benefits-grid, .testimonial-grid, .steps-modern, .recent-grid { grid-template-columns: 1fr; }
  .company-list-item { grid-template-columns: auto 1fr; gap: 14px; }
  .company-list-date, .company-list-arrow { display: none; }
  .why-stats-float, .why-features-row, .why-highlight-grid, .why-audience-grid { grid-template-columns: 1fr; }
  .why-faq-wrap { padding: 24px 20px; }
  .trust-bar { flex-direction: column; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; margin-top: -36px; }
  .stat-card { padding: 16px; }
  .hero { padding: 56px 0 80px; }
  .hero-search { flex-direction: column; border-radius: var(--radius); padding: 12px; }
  .hero-search .btn { width: 100%; }
  .hero-tags { display: none; }
  .filters-bar { flex-direction: column; align-items: stretch; }
  .filter-field { min-width: 100%; }
  .admin-sidebar { transform: translateX(-100%); transition: transform var(--transition); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 32px 24px; }
  .steps { flex-direction: column; align-items: flex-start; gap: 14px; }
  .step-line { display: none; }
  .auth-card .card-body { padding: 28px 22px; }
}

/* Toast (sonner tarzı) */
.toast-host {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10050;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(380px, calc(100% - 32px));
  max-width: calc(100% - 32px);
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 14px 14px 16px;
  border-radius: 14px;
  background: #0f172a;
  color: #f8fafc;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(-8px) translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}
.toast.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}
.toast.is-leaving {
  opacity: 0;
  transform: translateY(-6px) translateX(12px);
}
.toast > i:first-child {
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
}
.toast__text { flex: 1; }
.toast__close {
  border: 0;
  background: transparent;
  color: inherit;
  opacity: 0.7;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.toast__close:hover { opacity: 1; }
.toast--success { background: #14532d; border-color: rgba(74, 222, 128, 0.35); }
.toast--success > i:first-child { color: #4ade80; }
.toast--error { background: #7f1d1d; border-color: rgba(252, 165, 165, 0.35); }
.toast--error > i:first-child { color: #fca5a5; }
.toast--warning { background: #78350f; border-color: rgba(252, 211, 77, 0.35); }
.toast--warning > i:first-child { color: #fcd34d; }
.toast--info { background: #1e3a8a; border-color: rgba(147, 197, 253, 0.35); }
.toast--info > i:first-child { color: #93c5fd; }
.form-control.is-invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}
@media (max-width: 640px) {
  .toast-host {
    top: auto;
    bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    right: 12px;
    left: 12px;
    width: auto;
  }
}

