/* kvkkdesk static pages — main.css */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple: #534AB7;
  --purple-light: #EEEDFE;
  --purple-border: #AFA9EC;
  --text: #0a0a0f;
  --muted: #888;
  --border: #e8e8e8;
  --bg-soft: #fafafa;
  --green: #0F6E56;
  --green-light: #E1F5EE;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html { scroll-behavior: smooth; }
body { background: #fff; color: var(--text); font-family: var(--font); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; }

/* ── CONTAINER ── */
.container { max-width: 1100px; margin: 0 auto; }

/* ── NAV ── */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px; border-bottom: 0.5px solid var(--border);
  position: sticky; top: 0; background: #fff; z-index: 100;
}
.nav-logo { font-size: 18px; font-weight: 500; letter-spacing: -0.5px; color: var(--text); }
.nav-logo span { color: var(--purple); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 14px; color: var(--muted); }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.btn-ghost { font-size: 13px; color: #666; 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: var(--purple); 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; }

/* ── SECTION SHARED ── */
.section-eyebrow { font-size: 12px; color: var(--purple); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-size: 34px; font-weight: 500; letter-spacing: -1px; color: var(--text); margin-bottom: 12px; }
.section-sub { font-size: 15px; color: #999; max-width: 420px; line-height: 1.65; margin-bottom: 48px; }

/* ── HERO ── */
.hero { padding: 88px 48px 56px; text-align: center; }
.hero-inner { max-width: 900px; 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(--purple); margin-bottom: 28px;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple); flex-shrink: 0; }
.hero h1 { font-size: 50px; font-weight: 500; line-height: 1.15; letter-spacing: -1.5px; max-width: 660px; margin: 0 auto 20px; }
.hero h1 em { font-style: normal; color: var(--purple); }
.hero p { font-size: 17px; color: var(--muted); max-width: 460px; margin: 0 auto 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; justify-content: center; align-items: center; margin-bottom: 48px; }
.btn-hero { font-size: 15px; background: var(--purple); color: #fff; border: none; border-radius: 10px; padding: 13px 28px; cursor: pointer; font-weight: 500; font-family: var(--font); transition: opacity .15s; }
.btn-hero:hover { opacity: .88; }
.btn-hero-ghost { font-size: 15px; color: #444; background: #f5f5f5; border: 0.5px solid #e0e0e0; border-radius: 10px; padding: 13px 28px; cursor: pointer; font-family: var(--font); transition: background .15s; }
.btn-hero-ghost:hover { background: #ececec; }

/* ── TRUST BAR ── */
.trust { display: flex; gap: 28px; justify-content: center; align-items: center; margin-bottom: 56px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: #aaa; }
.trust-check { width: 16px; height: 16px; border-radius: 50%; background: var(--purple-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-check svg { width: 8px; height: 8px; stroke: var(--purple); fill: none; stroke-width: 2.5; }

/* ── DASHBOARD PREVIEW ── */
.dashboard-preview { background: #f8f8fb; border: 0.5px solid #e4e4ee; border-radius: 16px; padding: 2px; max-width: 900px; margin: 0 auto; overflow: hidden; }
.dash-topbar { background: #fff; border-bottom: 0.5px solid #eee; padding: 10px 20px; display: flex; align-items: center; gap: 8px; }
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dash-body { display: grid; grid-template-columns: 190px 1fr; min-height: 300px; }
.dash-sidebar { border-right: 0.5px solid #eee; padding: 16px 0; background: #fff; }
.dash-sidebar-item { padding: 8px 18px; font-size: 12px; color: #aaa; display: flex; align-items: center; gap: 10px; }
.dash-sidebar-item.active { color: var(--purple); background: var(--purple-light); border-right: 2px solid var(--purple); }
.si-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: .5; flex-shrink: 0; }
.dash-sidebar-item.active .si-dot { opacity: 1; }
.dash-content { padding: 18px; background: #f8f8fb; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 14px; }
.stat-card { background: #fff; border: 0.5px solid #eee; border-radius: 10px; padding: 12px; }
.stat-label { font-size: 11px; color: #bbb; margin-bottom: 6px; }
.stat-val { font-size: 20px; font-weight: 500; }
.stat-val.up { color: var(--green); }
.stat-val.warn { color: #BA7517; }
.stat-val.purple { color: var(--purple); }
.chart-area { background: #fff; border: 0.5px solid #eee; border-radius: 10px; padding: 14px; height: 122px; }
.chart-area-label { font-size: 11px; color: #ccc; margin-bottom: 10px; }
.bar-group { display: flex; align-items: flex-end; gap: 4px; height: 72px; }
.bar { border-radius: 3px 3px 0 0; flex: 1; }

/* ── FEATURES ── */
.features { padding: 88px 48px; background: var(--bg-soft); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border-radius: 16px; overflow: hidden; border: 0.5px solid var(--border); }
.feat-card { background: #fff; padding: 28px; }
.feat-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; margin-bottom: 14px; }
.feat-icon svg { width: 17px; height: 17px; stroke: var(--purple); fill: none; stroke-width: 1.5; }
.feat-title { font-size: 14px; font-weight: 500; margin-bottom: 7px; }
.feat-desc { font-size: 13px; color: #999; line-height: 1.65; }

/* ── HOW IT WORKS (nedir.html) ── */
.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(--purple); }
.step-title { font-size: 15px; font-weight: 500; margin-bottom: 8px; }
.step-desc { font-size: 13px; color: #999; line-height: 1.65; }

/* ── WHO FOR (nedir.html) ── */
.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: #999; line-height: 1.6; }

/* ── KVKK INFO (nedir.html) ── */
.kvkk-info { padding: 88px 48px; }

/* ── FEAT STRIP (nedir.php) ── */
.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: #999; line-height: 1.6; }

/* ── KVKK INFO NEW LAYOUT ── */
.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: #fafafa; 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: #555; line-height: 1.6; }
.feat-card-sm { background: #fafafa; 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: #999; line-height: 1.6; }
.feat-card-sm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; max-width: 900px; margin: 0 auto; }
.info-body { font-size: 15px; color: #666; line-height: 1.8; }
.info-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.info-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: #555; }
.info-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--purple); margin-top: 7px; flex-shrink: 0; }

/* ── CTA BAND ── */
.cta-band { padding: 88px 48px; background: var(--purple-light); border-top: 0.5px solid var(--purple-border); text-align: center; }
.cta-band h2 { font-size: 34px; font-weight: 500; letter-spacing: -1px; margin-bottom: 12px; }
.cta-band p { font-size: 15px; color: #666; margin-bottom: 32px; }

/* ── CONTACT (iletisim.html) ── */
.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: #666; 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 #ddd; border-radius: 8px; background: #fafafa; color: var(--text);
  outline: none; transition: border-color .15s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--purple-border); background: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit { font-size: 14px; background: var(--purple); color: #fff; border: none; border-radius: 8px; padding: 11px 24px; cursor: pointer; font-weight: 500; font-family: var(--font); transition: opacity .15s; }
.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(--purple); fill: none; stroke-width: 1.5; }
.ci-label { font-size: 12px; color: #bbb; margin-bottom: 3px; }
.ci-val { font-size: 14px; color: var(--text); }

/* ── KVKK CONSENT ── */
.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(--purple); width: 15px; height: 15px; cursor: pointer; }
.consent-label span { font-size: 12px; color: #777; line-height: 1.65; }
.consent-label span strong { color: #555; font-weight: 500; }

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

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero { padding: 60px 20px 40px; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 15px; }
  .dash-body { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .features, .how, .who, .kvkk-info, .contact, .cta-band { padding: 60px 20px; }
  .feat-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .section-title { font-size: 26px; }
  .footer { flex-direction: column; gap: 16px; text-align: center; padding: 24px 20px; }
}
