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

:root {
  --cyan: #B0FDFF;
  --navy: #053BA6;
  --navy-dark: #0B8AD9;
  --green: #33DB77;
  --green-dark: #2bc469;
  --purple: #534AB7;
  --purple-light: #eff3ff;
  --purple-border: #c7d3f8;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Semantic tokens — light mode (default) */
  --text: #0a0a0f;
  --muted: #666;
  --muted-2: #999;
  --muted-3: #bbb;
  --border: #e8e8e8;
  --border-soft: rgba(0,0,0,0.06);
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --surface: #ffffff;
  --surface-alt: #f4f6fb;
  --input-bg: #fafafa;
  --input-border: #dddddd;
  --nav-bg: rgba(255,255,255,0.92);
  --overlay-bg: rgba(255,255,255,0.08);
  --shadow: rgba(0,0,0,0.08);
}

:root[data-theme="dark"] {
  --text: #f2f3f7;
  --muted: #a3a8b8;
  --muted-2: #8a8fa0;
  --muted-3: #6b7080;
  --border: #262a36;
  --border-soft: rgba(255,255,255,0.08);
  --bg: #0b0d14;
  --bg-soft: #11141d;
  --surface: #151824;
  --surface-alt: #11141d;
  --input-bg: #1a1e2b;
  --input-border: #2c303e;
  --nav-bg: rgba(11,13,20,0.85);
  --overlay-bg: rgba(255,255,255,0.06);
  --shadow: rgba(0,0,0,0.4);
  --purple-light: #1a2040;
  --purple-border: #33396b;
}

html { scroll-behavior: smooth; }
body {
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg);
  transition: background-color .2s ease, color .2s ease;
}
a { text-decoration: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  position: sticky;
  top: 0;
  background: var(--nav-bg);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 200;
  box-shadow: 0 1px 0 0 var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 7px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { width: 36px; height: 36px; border-radius: 9px; object-fit: contain; }
.nav-logo-text { font-size: 14px; font-weight: 800; letter-spacing: 0.03em; display: flex; flex-direction: column; line-height: 1.05; }
.nav-logo-kvkk { color: var(--navy-dark); }
.nav-logo-desk { color: var(--green); }

.nav-links-pill {
  position: relative;
  display: flex;
  align-items: center;
  padding: 6px;
  border-radius: 99px;
  background: #33DB77;
  box-shadow: 0 2px 12px rgba(51,219,119,0.22);
}
.nav-pill-slider {
  position: absolute;
  top: 6px;
  height: calc(100% - 12px);
  background: #053BA6;
  border-radius: 99px;
  transition: left .4s cubic-bezier(.4,0,.2,1), width .4s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  z-index: 0;
  box-shadow: 0 2px 8px rgba(5,59,166,0.18);
}
.nav-links-pill a {
  position: relative;
  z-index: 1;
  padding: 8px 22px;
  font-size: 13.5px;
  border-radius: 99px;
  text-decoration: none;
  color: #053BA6;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .15s;
  user-select: none;
  font-family: var(--font);
  text-transform: lowercase;
}
.nav-links-pill a:hover { color: #ffffff; }
.nav-links-pill a.active { color: #ffffff !important; font-weight: 600; }

.nav-cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 0.5px solid var(--border);
  background: none;
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}
.theme-toggle:hover { background: var(--bg-soft); }
.theme-icon-moon { display: none; }
:root[data-theme="dark"] .theme-icon-sun { display: none; }
:root[data-theme="dark"] .theme-icon-moon { display: block; }
.theme-toggle-mobile {
  width: 100%;
  height: auto;
  padding: 10px 14px;
  gap: 10px;
  justify-content: flex-start;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
}
.btn-ghost { font-size: 13px; color: var(--muted); background: none; border: none; cursor: pointer; padding: 8px 14px; font-family: var(--font); }
.btn-ghost:hover { color: var(--text); }
.btn-primary { font-size: 13px; background: #053BA6; color: #fff; border: none; border-radius: 8px; padding: 9px 18px; cursor: pointer; font-weight: 500; font-family: var(--font); transition: opacity .15s; }
.btn-primary:hover { opacity: .88; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 0.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 61px;
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 0.5px solid var(--border);
  z-index: 199;
  padding: 12px 20px 20px;
  gap: 4px;
  box-shadow: 0 8px 24px var(--shadow);
}
.nav-mobile-menu.open { display: flex; }

.nav-mobile-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--font);
  transition: background .15s;
}
.nav-mobile-link:hover { background: var(--bg-soft); }
.nav-mobile-link.active { color: var(--navy); font-weight: 600; background: var(--purple-light); }
.nav-mobile-link svg { flex-shrink: 0; color: var(--navy-dark); }

.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 0.5px solid var(--border);
}
.nav-mobile-actions .btn-ghost { width: 100%; text-align: center; border: 0.5px solid var(--border); border-radius: 8px; padding: 10px 14px; color: var(--text); }
.nav-mobile-actions .btn-primary { width: 100%; padding: 10px 14px; font-size: 14px; border-radius: 8px; }

@property --hero-4x {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 20%;
}
@property --hero-4y {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 75%;
}
@property --hero-5x {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 78%;
}
@property --hero-5y {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 25%;
}
@property --hero-6x {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 55%;
}
@property --hero-6y {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 50%;
}

@keyframes hero-bg-anim {
  0% {
    --hero-4x: 20%;
    --hero-4y: 75%;
    --hero-5x: 78%;
    --hero-5y: 25%;
    --hero-6x: 55%;
    --hero-6y: 50%;
  }
  25% {
    --hero-4x: 12%;
    --hero-4y: 18%;
    --hero-5x: 82%;
    --hero-5y: 78%;
    --hero-6x: 38%;
    --hero-6y: 30%;
  }
  50% {
    --hero-4x: 75%;
    --hero-4y: 12%;
    --hero-5x: 18%;
    --hero-5y: 82%;
    --hero-6x: 65%;
    --hero-6y: 68%;
  }
  75% {
    --hero-4x: 85%;
    --hero-4y: 60%;
    --hero-5x: 30%;
    --hero-5y: 20%;
    --hero-6x: 50%;
    --hero-6y: 85%;
  }
  100% {
    --hero-4x: 20%;
    --hero-4y: 75%;
    --hero-5x: 78%;
    --hero-5y: 25%;
    --hero-6x: 55%;
    --hero-6y: 50%;
  }
}

/* ── HERO */
.hero {
  --hero-4x: 20%;
  --hero-4y: 75%;
  --hero-5x: 78%;
  --hero-5y: 25%;
  --hero-6x: 55%;
  --hero-6y: 50%;
  padding: 72px 48px 0;
  text-align: center;
  border-bottom: 0.5px solid var(--border);
  background:
    radial-gradient(circle 380px at var(--hero-4x) var(--hero-4y), rgba(11,138,217,0.38) 0%, transparent 70%),
    radial-gradient(circle 320px at var(--hero-5x) var(--hero-5y), rgba(51,219,119,0.34) 0%, transparent 70%),
    radial-gradient(circle 280px at var(--hero-6x) var(--hero-6y), rgba(5,59,166,0.26) 0%, transparent 70%),
    var(--bg);
  animation: hero-bg-anim 14s ease-in-out infinite;
}
.hero-inner { max-width: 860px; margin: 0 auto; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--purple-light);
  border: 0.5px solid var(--purple-border);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  color: var(--navy-dark);
  font-weight: 500;
  margin-bottom: 24px;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--navy-dark); flex-shrink: 0; }
.hero h1 { font-size: 52px; font-weight: 700; line-height: 1.15; letter-spacing: -2px; margin-bottom: 18px; color: var(--text); }
.hero h1 em { font-style: normal; color: #053BA6; }
.hero h1 strong { font-style: normal; color: #33DB77; font-weight: 700; }
.hero p { font-size: 16px; color: var(--muted); max-width: 540px; margin: 0 auto 32px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center; margin-bottom: 48px; }
.btn-hero { font-size: 14px; background: #053BA6; color: #fff; border: none; border-radius: 10px; padding: 12px 24px; cursor: pointer; font-weight: 500; font-family: var(--font); transition: opacity .15s; }
.btn-hero:hover { opacity: .88; }
.btn-hero-green { font-size: 14px; background: #33DB77; color: #053BA6; border: none; border-radius: 10px; padding: 12px 24px; cursor: pointer; font-weight: 600; font-family: var(--font); transition: opacity .15s; }
.btn-hero-green:hover { opacity: .88; }
.btn-hero-ghost { font-size: 14px; color: var(--text); background: var(--bg-soft); border: 0.5px solid var(--border); border-radius: 10px; padding: 12px 24px; cursor: pointer; font-family: var(--font); transition: background .15s; }
.btn-hero-ghost:hover { background: var(--surface-alt); }

/* ── DASHBOARD PREVIEW */
.dashboard-preview { max-width: 860px; margin: 0 auto; }
.dash-wrap { background: var(--surface); border: 0.5px solid var(--border); border-radius: 14px 14px 0 0; width: 100%; overflow: hidden; }
.dash-topbar { background: var(--navy); padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; }
.dash-topbar-logo { font-size: 12px; font-weight: 800; letter-spacing: 0.03em; color: #fff; }
.dash-topbar-logo span { color: var(--green); }
.dot-group { display: flex; gap: 5px; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dash-body { display: grid; grid-template-columns: 130px 1fr; min-height: 280px; }
.dash-sidebar { border-right: 0.5px solid var(--border); padding: 10px 0; background: var(--surface-alt); }
.dash-sidebar-item { padding: 7px 14px; font-size: 11px; color: var(--muted-2); display: flex; align-items: center; gap: 8px; }
.dash-sidebar-item.active { color: var(--navy-dark); background: var(--purple-light); border-right: 2px solid var(--navy-dark); font-weight: 600; }
.si-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: .6; flex-shrink: 0; }
.dash-sidebar-item.active .si-dot { opacity: 1; }
.dash-content { padding: 14px; background: var(--surface-alt); }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 10px; }
.stat-card { background: var(--surface); border: 0.5px solid var(--border); border-radius: 8px; padding: 10px 12px; }
.stat-label { font-size: 10px; color: var(--muted-3); margin-bottom: 4px; }
.stat-val { font-size: 20px; font-weight: 600; }
.stat-val.up { color: var(--green); }
.stat-val.warn { color: #d97706; }
.stat-val.purple { color: var(--navy-dark); }
.chart-area { background: var(--surface); border: 0.5px solid var(--border); border-radius: 8px; padding: 12px; }
.chart-area-label { font-size: 10px; color: var(--muted-3); margin-bottom: 8px; }
.bar-group { display: flex; align-items: flex-end; gap: 4px; height: 64px; }
.bar { border-radius: 3px 3px 0 0; flex: 1; }

/* ── STATS BAND */
.stats-band { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 0.5px solid var(--border); }
.stat-band-item { padding: 28px 48px; text-align: center; border-right: 0.5px solid var(--border); }
.stat-band-item:last-child { border-right: none; }
.stat-band-num { font-size: 34px; font-weight: 700; color: var(--navy-dark); letter-spacing: -1px; }
.stat-band-desc { font-size: 12px; color: var(--muted-2); margin-top: 4px; }

/* ── FEATURES */
.features { padding: 88px 48px; background: var(--bg-soft); }
.section-eyebrow { font-size: 11px; color: var(--navy-dark); letter-spacing: .08em; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.section-title { font-size: 32px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 10px; }
.section-sub { font-size: 14px; color: var(--muted-2); max-width: 420px; line-height: 1.65; margin-bottom: 40px; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border-radius: 14px; overflow: hidden; border: 0.5px solid var(--border); }
.feat-card { background: var(--surface); padding: 26px; }
.feat-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.feat-icon svg { width: 18px; height: 18px; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.feat-title { font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.feat-desc { font-size: 13px; color: var(--muted-2); line-height: 1.65; }

/* ── FEAT STRIP */
.feat-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.feat-strip-item { padding: 24px 20px; display: flex; align-items: flex-start; gap: 14px; border-right: 0.5px solid var(--border); }
.feat-strip-item:last-child { border-right: none; }
.feat-strip-icon { width: 36px; height: 36px; min-width: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feat-strip-item h4 { font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.feat-strip-item p { font-size: 12px; color: var(--muted-2); line-height: 1.6; }

/* ── KVKK INFO SECTION */
.kvkk-info { padding: 88px 48px; }
.kvkk-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; max-width: 960px; margin: 0 auto; }
.law-year-tag { display: inline-flex; align-items: center; gap: 6px; background: #E6F1FB; color: #185FA5; font-size: 12px; padding: 3px 10px; border-radius: 6px; margin-bottom: 16px; }
.law-items { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.law-item { display: flex; align-items: flex-start; gap: 10px; background: var(--bg-soft); border: 0.5px solid var(--border); padding: 10px 14px; border-radius: 8px; }
.law-dot { width: 6px; height: 6px; min-width: 6px; border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.law-item span { font-size: 13px; color: var(--muted); line-height: 1.6; }
.info-body { font-size: 15px; color: var(--muted); line-height: 1.8; }
.feat-card-sm { background: var(--bg-soft); border: 0.5px solid var(--border); border-radius: 10px; padding: 14px 16px; }
.feat-card-sm-icon { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.feat-card-sm h4 { font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.feat-card-sm p { font-size: 12px; color: var(--muted-2); line-height: 1.6; }
.feat-card-sm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }

/* ── HOW IT WORKS */
.how { padding: 88px 48px; background: var(--bg-soft); }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; max-width: 960px; margin: 0 auto; }
.step { text-align: center; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--purple-light); border: 0.5px solid var(--purple-border); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 16px; font-weight: 600; color: var(--navy-dark); flex-shrink: 0; }
.step-content { flex: 1; }
.step-title { font-size: 15px; font-weight: 500; margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--muted-2); line-height: 1.65; }

/* ── WHO */
.who { padding: 88px 48px; }
.who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 780px; margin: 0 auto; }
.who-card { background: var(--bg-soft); border: 0.5px solid var(--border); border-radius: 14px; padding: 24px; }
.who-title { font-size: 14px; font-weight: 500; margin-bottom: 7px; }
.who-desc { font-size: 13px; color: var(--muted-2); line-height: 1.6; }

/* ── CTA BAND */
.cta-band { padding: 88px 48px; background: var(--navy); text-align: center; }
.cta-band h2 { font-size: 34px; font-weight: 700; letter-spacing: -1px; color: #fff; margin-bottom: 12px; }
.cta-band h2 span { color: var(--green); }
.cta-band p { font-size: 15px; color: rgba(255,255,255,.55); margin-bottom: 32px; }
.btn-cta { font-size: 15px; background: var(--green); color: #fff; border: none; border-radius: 10px; padding: 13px 30px; cursor: pointer; font-weight: 600; font-family: var(--font); transition: opacity .15s; }
.btn-cta:hover { opacity: .9; }

/* ── CONTACT */
.contact { padding: 88px 48px; }
.contact-header { text-align: center; margin-bottom: 64px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; max-width: 860px; margin: 0 auto; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; font-weight: 500; }
.form-group input, .form-group textarea { width: 100%; padding: 10px 14px; font-size: 14px; font-family: var(--font); border: 0.5px solid var(--input-border); border-radius: 8px; background: var(--input-bg); color: var(--text); outline: none; transition: border-color .15s, background .15s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--purple-border); background: var(--surface); }
.form-group textarea { resize: vertical; min-height: 120px; }

.iletisim-form { display: block; }
.iletisim-field { display: flex; align-items: center; gap: 10px; border: 0.5px solid var(--input-border); border-radius: 8px; padding: 0 14px; height: 44px; margin-bottom: 12px; background: var(--input-bg); transition: border-color .15s, background .15s; box-sizing: border-box; }
.iletisim-field:focus-within { border-color: var(--purple-border); background: var(--surface); }
.iletisim-field svg { width: 17px; height: 17px; stroke: #0B8AD9; fill: none; stroke-width: 1.6; flex-shrink: 0; }
.iletisim-field input { border: none; background: transparent; padding: 0; height: 42px; flex: 1; outline: none; font-size: 14px; font-family: var(--font); color: var(--text); min-width: 0; }
.iletisim-field-message { align-items: flex-start; height: auto; min-height: 96px; padding: 12px 14px; }
.iletisim-field-message svg { margin-top: 2px; }
.iletisim-field-message textarea { border: none; background: transparent; padding: 0; resize: vertical; outline: none; font-size: 14px; font-family: var(--font); color: var(--text); width: 100%; min-height: 72px; }
.btn-submit { font-size: 14px; background: #0a1f5c; color: #fff; border: none; border-radius: 8px; padding: 11px 24px; cursor: pointer; font-weight: 500; font-family: var(--font); transition: opacity .15s; width: 100%; box-sizing: border-box; }
.btn-submit:hover { opacity: .88; }
.btn-submit:disabled { opacity: .6; cursor: default; }
.contact-info { padding-top: 8px; }
.contact-info-title { font-size: 16px; font-weight: 500; margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.ci-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--purple-light); border: 0.5px solid var(--purple-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon svg { width: 16px; height: 16px; stroke: var(--navy-dark); fill: none; stroke-width: 1.5; }
.ci-label { font-size: 12px; color: var(--muted-3); margin-bottom: 3px; }
.ci-val { font-size: 14px; color: var(--text); }
.kvkk-consent { margin-bottom: 20px; }
.consent-label { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.consent-label input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--navy-dark); width: 15px; height: 15px; cursor: pointer; }
.consent-label span { font-size: 12px; color: var(--muted); line-height: 1.65; }
.contact-map-card { display: flex; flex-direction: column; height: 100%; border-radius: 16px; overflow: hidden; background: #0a1f5c; text-decoration: none; border: 0.5px solid var(--border); }
.contact-map-visual { flex: 1; position: relative; min-height: 200px; }
.contact-map-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.contact-map-expand { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.08); border: 0.5px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; }
.contact-map-expand svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 1.5; }
.contact-map-pin { position: absolute; left: 50%; top: 48%; transform: translate(-50%, -100%); }
.contact-map-pin span { display: flex; width: 52px; height: 52px; border-radius: 50% 50% 50% 0; background: var(--green); transform: rotate(-45deg); align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(51,219,119,0.35); }
.contact-map-pin span::after { content: ""; width: 18px; height: 18px; border-radius: 50%; background: #0a1f5c; transform: rotate(45deg); }
.contact-map-info { margin: 0 20px 12px; padding: 14px 16px; border-radius: 8px; background: rgba(255,255,255,0.08); border: 0.5px solid rgba(255,255,255,0.16); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.contact-map-info .ci-label { color: rgba(255,255,255,0.5); margin-bottom: 3px; }
.contact-map-address { font-size: 14px; font-weight: 500; color: #fff; line-height: 1.5; }
.contact-map-cta { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 0 20px 18px; border-radius: 8px; padding: 11px 16px; background: var(--green); }
.contact-map-cta svg { width: 15px; height: 15px; stroke: #0a1f5c; fill: none; stroke-width: 1.5; }
.contact-map-cta span { font-size: 13px; font-weight: 600; color: #0a1f5c; }
.contact-map-card:hover .contact-map-cta { opacity: .9; }

/* ── FOOTER */
.footer { border-top: 0.5px solid var(--border); padding: 28px 48px; display: flex; justify-content: space-between; align-items: center; background: var(--surface); }
.footer-copy { font-size: 13px; color: var(--muted-3); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--muted-3); }
.footer-links a:hover { color: var(--text); }

/* ── SECTION SCROLL OFFSET */
section[id], div[id="anasayfa"] { scroll-margin-top: 70px; }

/* ── RESPONSIVE: TABLET 768-1024 */
@media (max-width: 1024px) and (min-width: 769px) {
  .nav { padding: 16px 24px; }
  .nav-links-pill a { padding: 8px 14px; font-size: 12.5px; }
  .hero { padding: 56px 24px 0; }
  .hero h1 { font-size: 42px; }
  .stats-band { grid-template-columns: repeat(3, 1fr); }
  .stat-band-item { padding: 20px 24px; }
  .features, .how, .who, .kvkk-info, .contact, .cta-band { padding: 64px 24px; }
  .feat-strip { grid-template-columns: repeat(2, 1fr); }
  .feat-strip-item:nth-child(2) { border-right: none; }
  .feat-strip-item:nth-child(3) { border-top: 0.5px solid var(--border); }
  .feat-strip-item:nth-child(4) { border-top: 0.5px solid var(--border); border-right: none; }
  .kvkk-info-grid { gap: 40px; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { gap: 40px; }
  .dash-body { grid-template-columns: 110px 1fr; }
}

/* ── RESPONSIVE: MOBILE ≤768 */
@media (max-width: 768px) {
  .nav {
    padding: 14px 16px;
  }
  .nav-links-pill { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero {
    padding: 40px 16px 0;
  }
  .hero h1 {
    font-size: 28px;
    letter-spacing: -0.5px;
  }
  .hero p {
    font-size: 14px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 32px;
  }
  .hero-actions .btn-hero,
  .hero-actions .btn-hero-green,
  .hero-actions .btn-hero-ghost,
  .hero-actions button {
    width: 100%;
    text-align: center;
  }
  .hero-actions a { display: block; }
  .dashboard-preview { display: none; }

  .stats-band {
    grid-template-columns: 1fr;
  }
  .stat-band-item {
    padding: 20px 16px;
    border-right: none;
    border-bottom: 0.5px solid var(--border);
  }
  .stat-band-item:last-child { border-bottom: none; }

  .features { padding: 56px 16px; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-grid .feat-card:not(:last-child) { border-bottom: 0.5px solid var(--border); }

  .feat-strip {
    grid-template-columns: 1fr;
  }
  .feat-strip-item {
    border-right: none;
    border-bottom: 0.5px solid var(--border);
  }
  .feat-strip-item:last-child { border-bottom: none; }

  .kvkk-info { padding: 56px 16px; }
  .kvkk-info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feat-card-sm-grid { grid-template-columns: 1fr; }

  .how { padding: 56px 16px; }
  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 100%;
  }
  .step { text-align: left; display: flex; gap: 16px; align-items: flex-start; }
  .step-num { margin: 0; flex-shrink: 0; }
  .step-content { flex: 1; padding-top: 4px; }

  .who { padding: 56px 16px; }
  .who-grid { grid-template-columns: 1fr; }

  .cta-band { padding: 56px 16px; }
  .cta-band h2 { font-size: 24px; }
  .btn-cta { width: 100%; }

  .contact { padding: 56px 16px; }
  .contact-header { margin-bottom: 40px; }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title { font-size: 24px; }
  .section-sub { font-size: 13px; }

  .footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 24px 16px;
  }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }

  .demo-modal-inner {
    grid-template-columns: 1fr !important;
    max-height: 90vh;
    overflow-y: auto;
  }
  .demo-modal-left { display: none !important; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 24px; }
  .badge { font-size: 11px; padding: 4px 10px; }
  .stat-band-num { font-size: 28px; }
}
