/* ============================================================
   MEGAPOL GROUP - KVKK / GIZLILIK
   site.css yuklendikten SONRA yuklenir.
   OTOMATIK URETILDI - kaynak: sayfa ici <style> bloklari
   ============================================================ */



:root {
  --brand: #041a72;
  --brand-light: #2a3f9e;
  --brand-dark: #141f52;
  --ink: #041A72;
  --ink-soft: #4a4a5a;
  --ink-muted: #8a8a9a;
  --surface: #ffffff;
  --surface-warm: #f7f7fa;
  --surface-cool: #eef0f5;
  --border: #e2e4ea;
  --radius: 10px;
  --radius-lg: 16px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --font: 'DM Sans', sans-serif;
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.025em;
}
.nav a.active { color: #fff; }
.nav a.active::after { width: 100% !important; }

/* ===== SECTIONS SHARED ===== */
section { padding: clamp(72px, 10vw, 128px) 0; }

/* ================================================
   PAGE HERO - Typographic, dark brand
   ================================================ */
.page-hero {
  position: relative;
  background: var(--ink);
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(48px, 7vh, 80px);
  padding-top: 120px;
  overflow: hidden;
}
.page-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.page-hero-deco::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.06);
}
.page-hero-deco::after {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,47,119,0.55) 0%, transparent 70%);
}

/* Giant watermark text */
.hero-watermark {
  position: absolute;
  bottom: -0.1em;
  left: -0.02em;
  font-size: clamp(6rem, 16vw, 13rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.05);
  pointer-events: none;
  z-index: 0;
  user-select: none;
  white-space: nowrap;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}
.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.hero-eyebrow-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.hero-eyebrow-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}
.page-hero h1 {
  color: #fff;
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 1.12;
}
.page-hero h1 .thin {
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  display: block;
}
.page-hero-sub {
  margin-top: 26px;
  max-width: 520px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
}

/* ================================================
   KVKK CONTENT
   ================================================ */
.kvkk-section { background: var(--surface); }
.kvkk-content { max-width: 840px; margin: 0 auto; }

.kvkk-content > p {
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 18px;
  font-size: 1rem;
}
.kvkk-content .kvkk-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.kvkk-content h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  color: var(--brand);
  margin: 48px 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.kvkk-content h3 {
  font-size: 1.12rem;
  color: var(--ink);
  font-weight: 600;
  margin: 36px 0 14px;
}

.kvkk-content ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.kvkk-content ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.kvkk-content ul li::before {
  content: '';
  position: absolute;
  left: 3px; top: 10px;
  width: 7px; height: 7px;
  background: var(--brand);
  border-radius: 2px;
}

.kvkk-content a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}
.kvkk-content a:hover { color: var(--brand-light); }
.kvkk-content strong { color: var(--ink); font-weight: 600; }
.footer-brand p {
  max-width: 320px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
}
.footer-contact {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-contact { flex-direction: column; gap: 12px; }
}
@media (max-width: 480px) {
  section { padding: clamp(48px, 8vw, 80px) 0; }
  .kvkk-content h2 { margin-top: 36px; }
}
