/* Ortak pazarlama sayfaları: Hakkımızda, Blog */
.mkt-page {
  --mkt-orange: #f97316;
  --mkt-orange-hover: #ea580c;
  --mkt-orange-soft: rgba(249, 115, 22, 0.1);
  --mkt-orange-border: rgba(249, 115, 22, 0.28);
  --mkt-bg: #f8fafc;
  --mkt-surface: #ffffff;
  --mkt-text: #18181b;
  --mkt-muted: #71717a;
  --mkt-border: #e4e4e7;
  --mkt-shadow: 0 4px 24px rgba(24, 24, 27, 0.06);
  min-height: 100vh;
  background: var(--mkt-bg);
  color: var(--mkt-text);
  font-family: 'Inter', system-ui, sans-serif;
  display: flex;
  flex-direction: column;
}

.mkt-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--mkt-border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.mkt-nav-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--mkt-text);
  text-decoration: none;
}
.mkt-nav-brand i { color: var(--mkt-orange); }
.mkt-nav-dot { color: var(--mkt-orange); }
.mkt-nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  font-size: 0.88rem;
  font-weight: 500;
}
.mkt-nav-links a {
  color: var(--mkt-muted);
  text-decoration: none;
}
.mkt-nav-links a:hover,
.mkt-nav-links a.is-active { color: var(--mkt-orange); font-weight: 600; }
.mkt-nav-cta {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--mkt-orange);
  color: #fff !important;
  font-weight: 600;
}

.mkt-main { flex: 1; }

.mkt-hero {
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 45%, #f4f4f5 100%);
  border-bottom: 1px solid var(--mkt-border);
  padding: 48px 28px 40px;
  text-align: center;
}
.mkt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--mkt-orange-soft);
  color: var(--mkt-orange);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.mkt-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.mkt-hero h1 span { color: var(--mkt-orange); }
.mkt-hero-lead {
  max-width: 640px;
  margin: 0 auto;
  color: var(--mkt-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.mkt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: filter .15s, background .15s;
}
.mkt-btn-primary {
  background: linear-gradient(135deg, var(--mkt-orange), var(--mkt-orange-hover));
  color: #fff;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.28);
}
.mkt-btn-outline {
  background: #fff;
  color: var(--mkt-text);
  border: 1.5px solid var(--mkt-border);
}
.mkt-btn-outline:hover {
  border-color: var(--mkt-orange-border);
  color: var(--mkt-orange);
  background: var(--mkt-orange-soft);
}

.mkt-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--mkt-border);
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  font-size: 0.82rem;
  color: var(--mkt-muted);
}
.mkt-footer a { color: var(--mkt-muted); text-decoration: none; }
.mkt-footer a:hover { color: var(--mkt-orange); }

@media (max-width: 640px) {
  .mkt-nav { padding: 12px 16px; }
  .mkt-hero { padding: 36px 16px 28px; }
}
