:root {
  --orange: #f45700;
  --orange-600: #d44a00;
  --orange-700: #b83d00;
  --orange-50: #fff7f2;
  --orange-100: #ffe8d9;
  --orange-glow: rgba(244, 87, 0, 0.15);
  --slate-950: #0b1220;
  --slate-900: #111827;
  --slate-800: #1e293b;
  --slate-700: #374151;
  --slate-600: #4b5563;
  --slate-500: #6b7280;
  --slate-400: #9ca3af;
  --slate-200: #e5e7eb;
  --slate-100: #f3f4f6;
  --slate-50: #f9fafb;
  --green: #059669;
  --amber: #d97706;
  --blue: #2563eb;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.12);
  --shadow-orange: 0 12px 40px rgba(244, 87, 0, 0.22);
  --radius: 14px;
  --radius-lg: 20px;
  --max: 1200px;
  --header-h: 84px;
  --font: 'Poppins', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 48px); }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--slate-700);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
ul { margin: 0; padding: 0; }

.container { width: min(var(--max), calc(100% - 2.5rem)); margin-inline: auto; }

/* ── Top bar ── */
.top-bar {
  background: var(--slate-950);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  padding: 0.45rem 0;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.top-bar a { color: rgba(255, 255, 255, 0.9); }
.top-bar a:hover { color: var(--orange); }
.top-bar-links { display: flex; align-items: center; gap: 0.65rem; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1.5rem;
}
.brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.35rem 0;
  text-decoration: none;
}
.brand-icon {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  max-width: 56px !important;
  object-fit: contain !important;
  border-radius: 12px;
  flex-shrink: 0;
}
.brand-wordmark {
  font-family: var(--font);
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: var(--slate-950);
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
}
.brand-accent { color: var(--orange); }
.brand-tagline {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--slate-500);
  letter-spacing: 0.02em;
  margin-top: 0.2rem;
}
.brand-text-group { display: flex; flex-direction: column; }
/* Eski yatay logo — footer vb. */
.brand-logo {
  height: 56px !important;
  width: auto !important;
  min-width: 200px !important;
  max-width: 280px !important;
  object-fit: contain !important;
  object-position: left center !important;
}
.nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}
.nav a {
  padding: 0.45rem 0.75rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--slate-600);
  border-radius: 8px;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.nav a:hover { color: var(--orange); background: var(--orange-50); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--slate-700);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 1.25rem 1rem;
  border-top: 1px solid var(--slate-100);
  background: #fff;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-weight: 500;
  color: var(--slate-700);
  background: var(--slate-50);
}
.mobile-nav a:hover { background: var(--orange-50); color: var(--orange); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.35rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { background: var(--orange-600); }
.btn-ghost { background: transparent; color: var(--slate-700); }
.btn-ghost:hover { background: var(--slate-100); }
.btn-outline {
  background: #fff;
  color: var(--slate-900);
  border: 1.5px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.82rem; }
.btn-lg { padding: 0.95rem 1.75rem; font-size: 0.95rem; }
.btn-block { width: 100%; }
.link-orange { color: var(--orange); font-weight: 600; }

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 4.5rem;
  background:
    radial-gradient(ellipse 70% 55% at 85% 10%, var(--orange-glow), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(37, 99, 235, 0.05), transparent 55%),
    linear-gradient(180deg, var(--slate-50) 0%, #fff 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(15, 23, 42, 0.035) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}
.hero-copy { max-width: 580px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-50);
  border: 1px solid var(--orange-100);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-size: clamp(2rem, 4.8vw, 3.15rem);
  line-height: 1.12;
  font-weight: 800;
  color: var(--slate-950);
  letter-spacing: -0.03em;
  margin: 0 0 1.1rem;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-lead {
  font-size: 1.05rem;
  color: var(--slate-500);
  line-height: 1.8;
  margin: 0 0 1.75rem;
  max-width: 52ch;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-checks {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1rem;
  font-size: 0.82rem;
  color: var(--slate-500);
}
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-checks li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Hero visual */
.hero-visual { position: relative; }
.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 0.65rem 0.9rem;
  box-shadow: var(--shadow-md);
  font-size: 0.78rem;
  z-index: 2;
}
.hero-float strong { display: block; color: var(--slate-950); font-size: 0.82rem; }
.hero-float small { color: var(--slate-500); }
.float-icon { font-size: 1.25rem; }
.hero-float-1 { top: -12px; right: -8px; }
.hero-float-2 { bottom: 24px; left: -16px; }

/* Panel preview */
.panel-preview {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-lg);
  background: #fff;
}
.panel-preview-bar {
  background: var(--slate-900);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.panel-preview-bar .dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.panel-preview-bar .dot.red { background: #ef4444; }
.panel-preview-bar .dot.yellow { background: #f59e0b; }
.panel-preview-bar .dot.green { background: #22c55e; }
.panel-url {
  margin-left: 10px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 12px;
  border-radius: 6px;
}
.panel-preview-body { padding: 20px; background: var(--slate-50); }
.panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.panel-greeting { margin: 0; font-size: 17px; font-weight: 700; color: var(--slate-950); }
.panel-company { font-size: 12px; color: var(--slate-500); }
.panel-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: #ecfdf5;
  color: var(--green);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.panel-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.panel-stat {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  padding: 10px;
  border-left: 3px solid var(--slate-300);
}
.panel-stat.accent { border-left-color: var(--orange); }
.panel-stat b { display: block; font-size: 15px; color: var(--slate-950); }
.panel-stat span { font-size: 10px; color: var(--slate-500); }
.panel-clock {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.panel-clock strong { display: block; font-size: 13px; color: var(--slate-950); }
.panel-clock span { font-size: 11px; color: var(--slate-500); }
.panel-clock-btn {
  background: var(--orange);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.panel-feed { list-style: none; display: grid; gap: 6px; }
.panel-feed li {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 12px;
  color: var(--slate-700);
}
.panel-feed .ok { color: var(--green); font-weight: 700; margin-right: 5px; }
.panel-feed .warn { color: var(--amber); font-weight: 700; margin-right: 5px; }
.panel-feed .info { color: var(--blue); font-weight: 700; margin-right: 5px; }

/* ── Stats bar ── */
.stats-bar {
  background: var(--slate-950);
  color: #fff;
  padding: 2rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.stat-item strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}
.stat-item span { font-size: 0.85rem; color: rgba(255, 255, 255, 0.65); line-height: 1.5; }

/* ── Sections ── */
.section { padding: 5rem 0; }
.section-gray { background: var(--slate-50); }
.section-dark {
  background: linear-gradient(160deg, var(--slate-950) 0%, var(--slate-800) 100%);
  color: rgba(255, 255, 255, 0.85);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255, 255, 255, 0.7); }
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.65rem;
}
.section-tag.light { color: #ffb380; }
.section-header { max-width: 640px; margin-bottom: 3rem; }
.section-header.center { margin-inline: auto; text-align: center; }
.section-header h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 800;
  color: var(--slate-950);
  letter-spacing: -0.025em;
  margin: 0 0 0.85rem;
  line-height: 1.2;
}
.section-dark .section-header h2 { color: #fff; }
.section-header p { margin: 0; font-size: 1.02rem; color: var(--slate-500); line-height: 1.75; }

/* Split sections */
.split-section {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.split-copy h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: var(--slate-950);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  line-height: 1.25;
}
.section-dark .split-copy h2 { color: #fff; }
.split-copy > p {
  font-size: 1rem;
  color: var(--slate-500);
  line-height: 1.8;
  margin: 0 0 1.5rem;
}
.section-dark .split-copy > p { color: rgba(255, 255, 255, 0.7); }
.feature-list {
  list-style: none;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0.75rem;
}
.feature-list li {
  font-size: 0.92rem;
  color: var(--slate-600);
  padding-left: 1.35rem;
  position: relative;
  line-height: 1.65;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}
.feature-list.light li { color: rgba(255, 255, 255, 0.8); }
.feature-list strong { color: var(--slate-900); }
.section-dark .feature-list strong { color: #fff; }

/* Info cards */
.info-card-stack { display: grid; gap: 1rem; }
.info-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.info-card:hover { box-shadow: var(--shadow-md); border-color: var(--orange-100); }
.info-card-icon { font-size: 1.5rem; margin-bottom: 0.65rem; }
.info-card h3 { margin: 0 0 0.4rem; font-size: 1rem; color: var(--slate-950); }
.info-card p { margin: 0; font-size: 0.88rem; color: var(--slate-500); line-height: 1.65; }

/* QR demo */
.qr-demo { margin-top: 1.5rem; }
.qr-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.qr-pattern {
  width: 100px;
  height: 100px;
  background:
    linear-gradient(90deg, #fff 2px, transparent 2px) 0 0 / 12px 12px,
    linear-gradient(#fff 2px, transparent 2px) 0 0 / 12px 12px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
}
.qr-box span { font-size: 0.75rem; font-weight: 600; color: rgba(255, 255, 255, 0.8); letter-spacing: 0.05em; }
.qr-caption { font-size: 0.8rem; color: rgba(255, 255, 255, 0.55); margin: 0.75rem 0 0; }

/* Vertical steps */
.steps-vertical { display: grid; gap: 0; }
.step-v {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.step-v:last-child { border-bottom: none; }
.step-v-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.step-v h4 { margin: 0 0 0.25rem; font-size: 0.95rem; }
.step-v p { margin: 0; font-size: 0.85rem; }

/* Benefits */
.benefits-grid { display: grid; gap: 1.25rem; }
.benefit-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--orange-50);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.benefit-card h3 { margin: 0 0 0.5rem; font-size: 1.02rem; color: var(--slate-950); line-height: 1.4; }
.benefit-card p { margin: 0; font-size: 0.9rem; color: var(--slate-500); line-height: 1.7; }

/* Features grid */
.features-grid { display: grid; gap: 1rem; }
.feat-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feat-card:hover { border-color: var(--orange-100); box-shadow: var(--shadow-sm); }
.feat-num {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  display: block;
}
.feat-card h3 { margin: 0 0 0.4rem; font-size: 0.98rem; color: var(--slate-950); }
.feat-card p { margin: 0; font-size: 0.86rem; color: var(--slate-500); line-height: 1.65; }

/* Sectors */
.sectors-grid { display: grid; gap: 1.25rem; }
.sector-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.sector-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.sector-card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; color: var(--slate-950); }
.sector-card p { margin: 0; font-size: 0.9rem; color: var(--slate-500); line-height: 1.7; }

/* Case studies */
.cases-grid { display: grid; gap: 1.5rem; }
.case-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.case-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), var(--shadow-md);
}
.case-sector {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}
.case-header h3 { margin: 0.35rem 0 0; font-size: 1.15rem; color: var(--slate-950); line-height: 1.35; }
.case-problem, .case-solution { margin: 0; font-size: 0.9rem; color: var(--slate-600); line-height: 1.7; }
.case-results {
  list-style: none;
  margin: 0;
  display: grid;
  gap: 0.35rem;
}
.case-results li {
  font-size: 0.86rem;
  color: var(--slate-600);
  padding-left: 1.25rem;
  position: relative;
}
.case-results li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.case-quote {
  margin-top: auto;
  padding: 1rem 1.15rem;
  background: var(--slate-50);
  border-left: 3px solid var(--orange);
  border-radius: 0 10px 10px 0;
  font-size: 0.86rem;
  color: var(--slate-600);
  font-style: italic;
  line-height: 1.65;
}
.case-quote em { font-style: normal; font-weight: 600; color: var(--slate-500); display: block; margin-top: 0.35rem; }

/* Comparison table */
.compare-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--slate-200); }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: #fff;
}
.compare-table th, .compare-table td {
  padding: 0.9rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--slate-100);
}
.compare-table th {
  background: var(--slate-50);
  font-weight: 700;
  color: var(--slate-900);
  font-size: 0.85rem;
}
.compare-table td { color: var(--slate-600); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .highlight-col {
  background: var(--orange-50);
  color: var(--slate-900);
  font-weight: 600;
}
.compare-table th.highlight-col { background: var(--orange); color: #fff; }

/* KVKK */
.kvkk-grid { display: grid; gap: 3rem; align-items: start; }
.kvkk-copy h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: var(--slate-950);
  margin: 0 0 1rem;
  line-height: 1.25;
}
.kvkk-copy > p { font-size: 1rem; color: var(--slate-500); line-height: 1.8; margin: 0 0 1.5rem; }
.kvkk-links { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.kvkk-badges { display: grid; gap: 1rem; }
.badge-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.badge-card span { font-size: 1.5rem; flex-shrink: 0; }
.badge-card h4 { margin: 0 0 0.25rem; font-size: 0.95rem; color: var(--slate-950); }
.badge-card p { margin: 0; font-size: 0.84rem; color: var(--slate-500); line-height: 1.6; }

/* Steps */
.steps-row { display: grid; gap: 1.25rem; }
.step-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: center;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0 auto 1rem;
}
.step-card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; color: var(--slate-950); }
.step-card p { margin: 0; font-size: 0.9rem; color: var(--slate-500); line-height: 1.65; }

/* Pricing */
.pricing-row { display: grid; gap: 1.25rem; align-items: stretch; }
.price-box {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.price-box.popular {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), var(--shadow-md);
  position: relative;
}
.popular-tag {
  align-self: flex-start;
  background: var(--orange);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.price-box h3 { margin: 0; font-size: 1.1rem; color: var(--slate-950); }
.price-val { font-size: 2.5rem; font-weight: 800; color: var(--slate-950); margin: 0.75rem 0 0.15rem; letter-spacing: -0.02em; }
.price-val small { font-size: 1rem; font-weight: 500; color: var(--slate-500); }
.price-cap { font-size: 0.85rem; color: var(--slate-500); margin-bottom: 1.25rem; }
.price-box ul { margin: 0 0 1.5rem; padding: 0; list-style: none; flex: 1; }
.price-box li {
  font-size: 0.88rem;
  color: var(--slate-600);
  padding: 0.4rem 0 0.4rem 1.35rem;
  position: relative;
}
.price-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.pricing-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--slate-500);
  margin: 1.75rem 0 0;
}

/* FAQ */
.faq-wrap { max-width: 720px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--slate-200); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 0;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate-950);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  line-height: 1.45;
}
.faq-btn span { color: var(--orange); font-size: 1.25rem; transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-btn span { transform: rotate(45deg); }
.faq-body { display: none; padding: 0 0 1.2rem; font-size: 0.92rem; color: var(--slate-500); line-height: 1.75; }
.faq-item.open .faq-body { display: block; }

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--slate-950) 0%, #1a2744 50%, var(--slate-800) 100%);
  color: #fff;
  padding: 4.5rem 0;
}
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
}
.cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}
.cta-section p { color: rgba(255, 255, 255, 0.65); margin: 0; max-width: 48ch; font-size: 1rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* Footer */
.site-footer {
  background: var(--slate-950);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 0 1.5rem;
}
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin: 0.75rem 0; max-width: 32ch; }
.footer-brand a { font-size: 0.88rem; color: var(--orange); }
.footer-brand .brand-wordmark { color: #fff; font-size: 1.5rem; }
.footer-brand .brand-tagline { color: rgba(255,255,255,0.55); }
.footer-brand .brand { margin-bottom: 0.75rem; }
.site-footer a { display: block; font-size: 0.86rem; margin-bottom: 0.5rem; color: rgba(255, 255, 255, 0.6); }
.site-footer a:hover { color: #fff; }
.site-footer strong { color: #fff; display: block; margin-bottom: 0.75rem; font-size: 0.88rem; }
.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8rem;
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11, 18, 32, 0.6);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: min(460px, 100%);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--slate-100);
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--slate-600);
}
.modal-box h2 { margin: 0 0 0.35rem; font-size: 1.3rem; color: var(--slate-950); }
.modal-box > p, .modal-box #formStep > p { margin: 0 0 1.25rem; font-size: 0.9rem; color: var(--slate-500); }
.field { margin-bottom: 0.85rem; }
.field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--slate-700); margin-bottom: 0.3rem; }
.field input {
  width: 100%;
  border: 1.5px solid var(--slate-200);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font-size: 0.92rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244, 87, 0, 0.12);
}
.modal-success { text-align: center; padding: 1rem 0; }
.modal-success .ok-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ecfdf5;
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin: 0 auto 0.75rem;
}

/* WhatsApp */
.wa-btn {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  background: #25d366;
  color: #fff;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.15s;
}
.wa-btn:hover { transform: scale(1.04); }

/* Legal pages */
.legal-page { padding: 3rem 0 5rem; max-width: 720px; }
.legal-page h1 { font-size: 1.75rem; color: var(--slate-950); margin-bottom: 0.5rem; }
.legal-page h2 { font-size: 1.1rem; margin-top: 2rem; color: var(--slate-900); }
.legal-page p, .legal-page li { font-size: 0.95rem; color: var(--slate-600); line-height: 1.75; }

/* ── Responsive ── */
@media (min-width: 640px) {
  .hero-checks { grid-template-columns: repeat(4, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .kvkk-badges { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .nav { display: flex; }
  .menu-btn { display: none; }
  .hero-grid { grid-template-columns: 1fr 1.05fr; gap: 2.5rem; }
  .split-section { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .split-section.reverse { direction: rtl; }
  .split-section.reverse > * { direction: ltr; }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .sectors-grid { grid-template-columns: repeat(3, 1fr); }
  .cases-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-row { grid-template-columns: repeat(4, 1fr); }
  .pricing-row { grid-template-columns: repeat(3, 1fr); }
  .kvkk-grid { grid-template-columns: 1.1fr 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .cta-inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    align-items: center;
  }
  .cta-btns { flex-shrink: 0; }
}

@media (max-width: 899px) {
  .hero-float { display: none; }
  .panel-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
  .hero { padding: 2.5rem 0 3rem; }
  .section { padding: 3.5rem 0; }
  .header-actions .btn-ghost { display: none; }
  .top-bar-inner span:first-child { font-size: 0.72rem; }
  .brand-tagline { display: none; }
  .brand-icon { width: 48px !important; height: 48px !important; min-width: 48px !important; max-width: 48px !important; }
}

/* ── SEO landing pages ── */
.seo-hero {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(180deg, var(--slate-50) 0%, #fff 100%);
  border-bottom: 1px solid var(--slate-200);
}
.seo-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--slate-950);
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  line-height: 1.15;
  max-width: 18ch;
}
.seo-hero-lead {
  font-size: 1.08rem;
  color: var(--slate-500);
  line-height: 1.8;
  max-width: 62ch;
  margin: 0 0 1.5rem;
}
.breadcrumb {
  font-size: 0.8rem;
  color: var(--slate-500);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--orange); font-weight: 500; }
.seo-content { padding: 3rem 0 4rem; max-width: 780px; }
.seo-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--slate-950);
  margin: 2.5rem 0 0.85rem;
  line-height: 1.3;
}
.seo-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--slate-900);
  margin: 1.75rem 0 0.5rem;
}
.seo-content p, .seo-content li {
  font-size: 0.98rem;
  color: var(--slate-600);
  line-height: 1.8;
}
.seo-content ul, .seo-content ol { margin: 0.75rem 0 1rem; padding-left: 1.35rem; }
.seo-content li { margin-bottom: 0.4rem; }
.seo-cta-box {
  margin: 2.5rem 0;
  padding: 1.75rem;
  background: var(--orange-50);
  border: 1px solid var(--orange-100);
  border-radius: var(--radius);
}
.seo-cta-box h2 { margin-top: 0 !important; }
.related-pages {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--slate-200);
}
.related-pages a {
  display: block;
  padding: 1rem 1.15rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  font-weight: 600;
  color: var(--slate-800);
  transition: border-color 0.15s, background 0.15s;
}
.related-pages a:hover { border-color: var(--orange); background: var(--orange-50); color: var(--orange-700); }
.related-pages a small { display: block; font-weight: 400; color: var(--slate-500); margin-top: 0.2rem; font-size: 0.85rem; }

