/* ============================================
 * Sakans pazarlama sitesi ortak stilleri
 * Tüm site.* sayfaları bu dosyayı kullanır.
 * Sayfaya özel stiller @push('styles') ile eklenir.
 * ============================================ */

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

:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-dark: #0b1229;
  --text: #0f172a;
  --text-muted: #475569;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --primary: #4F46E5;
  --primary-dark: #4338CA;
  --primary-light: #E0E7FF;
  --accent: #06b6d4;
  --accent-alt: #8b5cf6;
  --success: #10b981;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow: 0 10px 30px -10px rgba(15,23,42,0.12);
  --shadow-lg: 0 30px 80px -20px rgba(79,70,229,0.25);
  --gradient-brand: linear-gradient(135deg, #4F46E5 0%, #06b6d4 100%);
  --gradient-cool: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
}

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 { font-family: 'Sora', sans-serif; letter-spacing: -0.02em; line-height: 1.15; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14.5px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(79,70,229,0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(79,70,229,0.7); }
.btn-ghost {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-soft); border-color: #cbd5e1; }
.btn-lg { padding: 14px 26px; font-size: 15px; }

/* ============ NAVBAR ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border-light);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 40px; width: auto; display: block; }
.footer-brand .logo img { height: 52px; }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* DROPDOWN */
.dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 300px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s;
  z-index: 60;
}
.nav-links > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  transition: background 0.2s;
}
.dropdown-item:hover { background: var(--bg-soft); }
.dropdown-item-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}
.dropdown-item-icon.blue { background: var(--primary-light); color: var(--primary); }
.dropdown-item-icon.violet { background: #ede9fe; color: #7c3aed; }
.dropdown-item-icon.cyan { background: #cffafe; color: #0891b2; }
.dropdown-item-text strong {
  display: block;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 3px;
  font-family: 'Inter';
}
.dropdown-item-text span {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.4;
}
.mobile-toggle, .mobile-close {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
  align-items: center;
  justify-content: center;
}

/* ============ SECTION ============ */
.section { padding: 120px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.section-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-head p { font-size: 18px; color: var(--text-muted); }

/* ============ HERO (paylaşılan) ============ */
.hero { position: relative; padding: 80px 0 100px; overflow: hidden; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  margin-bottom: 20px;
}
.hero p.lead {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

/* ============ PAGE HEAD (hakkimizda/iletisim/blog/referanslar/sss/durum/hukuki) ============ */
.page-head {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  text-align: center;
}
.page-head::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 1400px; height: 700px;
  background:
    radial-gradient(circle at 30% 40%, rgba(79,70,229,0.13), transparent 45%),
    radial-gradient(circle at 70% 40%, rgba(6,182,212,0.12), transparent 45%),
    radial-gradient(circle at 50% 70%, rgba(139,92,246,0.08), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.page-head-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.page-head h1 {
  font-size: clamp(40px, 6vw, 70px);
  font-weight: 800;
  margin-bottom: 20px;
}
.page-head p.lead {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* ============ STATS BAND (hakkimizda, durum vb.) ============ */
.stats-band {
  padding: 50px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-item .num {
  font-family: 'Sora';
  font-size: 46px;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item .label { font-size: 13.5px; color: var(--text-muted); font-weight: 500; }

/* ============ MARQUEE (pazaryeri logo akışı) ============ */
.marketplaces {
  padding: 70px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.mp-label {
  text-align: center;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-weight: 700;
}
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: scroll 38s linear infinite;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.mp-item {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #94a3b8;
  white-space: nowrap;
  transition: color 0.2s;
}
.mp-item:hover { color: var(--primary); }

/* ============ HUKUKI SAYFALAR (kvkk, gizlilik, mesafeli, çerez) ============ */
.last-updated {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px;
  background: #dcfce7;
  color: #166534;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 8px;
}

.company-card {
  max-width: 860px;
  margin: 0 auto 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 32px;
  box-shadow: var(--shadow-sm);
}
.company-card h2 {
  grid-column: 1 / -1;
  font-family: 'Sora';
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 4px;
}
.info-row .label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.info-row .value { font-size: 14.5px; color: var(--text); font-weight: 500; line-height: 1.5; }
.info-row.wide { grid-column: 1 / -1; }

.toc {
  max-width: 860px;
  margin: 0 auto 50px;
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
}
.toc-title {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 12px;
}
.toc ol {
  list-style: none;
  counter-reset: toc;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}
.toc li { counter-increment: toc; }
.toc li a {
  display: flex; align-items: baseline; gap: 8px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.toc li a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: 'Sora';
  font-size: 11px;
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}
.toc li a:hover { color: var(--primary); }

.legal-content { max-width: 800px; margin: 0 auto; padding: 0 0 80px; }
.legal-section { margin-bottom: 48px; scroll-margin-top: 100px; }
.legal-section h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.legal-section h2 .sec-num {
  font-family: 'Sora';
  font-size: 13px;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.legal-section h3 { font-size: 17px; font-weight: 700; margin-top: 22px; margin-bottom: 10px; color: var(--text); }
.legal-section p { font-size: 15.5px; color: var(--text-muted); margin-bottom: 14px; }
.legal-section p strong { color: var(--text); font-weight: 600; }
.legal-section ul { list-style: none; margin: 10px 0 16px; padding: 0; }
.legal-section ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--text-muted);
}
.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 6px; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.legal-section ol {
  list-style: none;
  counter-reset: legal;
  margin: 10px 0 16px;
  padding: 0;
}
.legal-section ol li {
  counter-increment: legal;
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text-muted);
}
.legal-section ol li::before {
  content: counter(legal) ".";
  position: absolute;
  left: 0; top: 0;
  font-family: 'Sora';
  font-weight: 700;
  color: var(--primary);
}

.callout {
  margin: 20px 0;
  padding: 20px 24px;
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 10px;
}
.callout strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 6px;
  font-size: 14px;
}
.callout p { color: var(--text); font-size: 14.5px; margin: 0; }

.contact-block {
  margin-top: 40px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.contact-block h3 { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.contact-block-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
.contact-block-row .label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 3px;
}
.contact-block-row .value { font-size: 14.5px; color: var(--text); font-weight: 500; }
.contact-block-row .value a { color: var(--primary); font-weight: 600; }

@media (max-width: 960px) {
  .company-card { grid-template-columns: 1fr; gap: 14px; padding: 24px 22px; }
  .toc { padding: 20px 22px; }
  .toc ol { grid-template-columns: 1fr; }
  .legal-section h2 { font-size: 22px; flex-wrap: wrap; gap: 10px; }
  .contact-block-grid { grid-template-columns: 1fr; }
}

/* ============ FAQ (paylaşılan) ============ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] { border-color: var(--primary-light); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 15.5px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 10px; height: 10px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(-135deg); border-color: var(--primary); }
.faq-item .faq-body {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ============ CTA BAND ============ */
.cta-band { padding: 0 24px; margin-bottom: 100px; }
.cta-card {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--gradient-brand);
  border-radius: 32px;
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.22), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.15), transparent 40%);
  pointer-events: none;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); margin-bottom: 14px; }
.cta-card p { color: rgba(255,255,255,0.9); font-size: 17px; max-width: 560px; margin: 0 auto 32px; }
.cta-card .btn { background: #fff; color: var(--primary); }
.cta-card .btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.2); }

/* ============ FOOTER ============ */
footer {
  background: var(--bg-dark);
  color: #94a3b8;
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand p { margin-top: 16px; font-size: 14px; max-width: 320px; }
.footer-brand .logo { color: #fff; }
.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Inter';
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: #94a3b8; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  transition: all 0.2s;
  color: #cbd5e1;
}
.socials a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ============ FOOTER PAYMENT BAR ============ */
.footer-payment {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.footer-payment .payment-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  font-weight: 700;
  flex-shrink: 0;
}
.payment-band {
  height: 32px;
  width: auto;
  display: block;
  background: #fff;
  border-radius: 8px;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 100%;
}

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s, transform 0.7s; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: inline-flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 80px 0; }
  .hero { padding: 50px 0 70px; }
  .page-head { padding: 70px 0 60px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stat-item .num { font-size: 36px; }
  .cta-card { padding: 56px 28px; }

  /* Mobil menü — tam ekran drawer (body.nav-open ile aktive) */
  body.nav-open { overflow: hidden; }

  body.nav-open .nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 100;
    overflow-y: auto;
    overflow-x: hidden;
    border-bottom: none;
    box-shadow: none;
  }
  body.nav-open .nav-inner {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    min-height: 100%;
    padding: 18px 24px calc(28px + env(safe-area-inset-bottom));
    gap: 0;
    position: relative;
  }
  body.nav-open .logo {
    align-self: flex-start;
    margin-bottom: 4px;
  }
  body.nav-open .logo img { height: 36px; }
  body.nav-open .mobile-toggle { display: none; }
  body.nav-open .mobile-close {
    display: inline-flex;
    position: fixed;
    top: 14px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #0f172a;
    z-index: 110;
    box-shadow: 0 4px 12px -4px rgba(15,23,42,0.15);
  }
  body.nav-open .mobile-close:hover { background: #e2e8f0; }

  body.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 24px;
    width: 100%;
  }
  body.nav-open .nav-links > li {
    border-bottom: 1px solid #f1f5f9;
    width: 100%;
  }
  body.nav-open .nav-links > li:last-child { border-bottom: none; }
  body.nav-open .nav-links > li > a {
    display: block;
    padding: 16px 4px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
  }
  body.nav-open .nav-links .dropdown {
    position: static;
    display: block;
    box-shadow: none;
    background: transparent;
    padding: 4px 0 14px;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: auto;
    border: none;
  }
  body.nav-open .nav-links .dropdown-item {
    padding: 12px;
    background: var(--bg-soft, #f8fafc);
    border-radius: 10px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  body.nav-open .nav-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
  }
  body.nav-open .nav-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
  }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
