:root {
  --bg: #FFFFFF;
  --panel-bg: #FAFAFA;
  --white: #FFFFFF;
  --ink: #1E2025;
  --muted: #6C727F;
  --border: #EAECEF;
  --primary: #15324A;        /* Navy / Kurumsal */
  --primary-hover: #0F2436;
  --accent: #1769AA;         /* Mavi / Aksiyon */
  --teal: #18A6B8;           /* Turkuaz / Entegrasyon */
  --success: #1F8A5B;        /* Yeşil / Başarı */
  --warning: #E8891C;        /* Turuncu / Risk */
  --danger: #B42318;         /* Kırmızı / Kritik */
  --shadow-card: 0 12px 35px rgba(0, 0, 0, 0.05);
  --shadow-panel: 0 25px 70px rgba(0, 0, 0, 0.08);
  --stage-w: 1400px;
  --stage-h: 800px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================
   1. NAVBAR & MOBİL HAMBURGER MENÜ
   ========================================== */

/* Subpage Floating Fixed Container */
.navbar-fixed-container {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  pointer-events: none;
}

.navbar-fixed-container .nav {
  pointer-events: auto;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 1200px;
}

/* Base Nav Styling */
.nav {
  left: 40px;
  top: 24px;
  width: calc(100% - 80px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.3px;
}

.logo-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex-shrink: 0;
}

.logo-badge span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--white);
}

.logo-text {
  font-weight: 700;
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: #5B5D63;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
  padding: 4px 0;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--primary);
  font-weight: 600;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(21, 50, 74, 0.2);
}

/* Hamburger Toggle Button */
.hamburger-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 1002;
}

.hamburger-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer Overlay */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
}

.mobile-drawer a:hover,
.mobile-drawer a.active {
  color: var(--accent);
}

.mobile-drawer .mobile-cta {
  margin-top: 15px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
}


/* ==========================================
   2. HERO SCROLL MİMARİSİ (INDEX.HTML İÇİN KORUNAN)
   ========================================== */
.hero-scroll-container {
  width: 100%;
  height: calc(100vh + 1500px);
  position: relative;
}

#stageOuter {
  position: sticky;
  top: 0;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
}

#stage {
  position: relative;
  width: var(--stage-w);
  height: var(--stage-h);
  transform-origin: center center;
  flex-shrink: 0;
  margin: 0 auto;
}

.abs {
  position: absolute;
}

#heroText {
  left: 70px;
  top: 180px;
  width: 620px;
  z-index: 20;
}

.hero-h1 {
  font-size: 60px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -1.8px;
  margin-bottom: 20px;
  color: var(--ink);
}

.hero-p {
  font-size: 16px;
  line-height: 1.55;
  color: #5b5d63;
  margin-bottom: 28px;
  width: 440px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #2D3036 0%, #17191D 100%);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 14px 32px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 10px 24px rgba(20, 22, 30, 0.18);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(20, 22, 30, 0.25);
}

#busWrap {
  left: 450px;
  top: 80px;
  width: 920px;
  height: 620px;
  z-index: 10;
  pointer-events: none;
}

#busWrap img {
  width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  mask-image: linear-gradient(to bottom, #000 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 80%, transparent 100%);
  filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.08));
}

#dashboardCard {
  left: 184px;
  top: 42px;
  width: 1072px;
  height: 692px;
  display: flex;
  border-radius: 36px;
  box-shadow: var(--shadow-panel);
  background: var(--panel-bg);
  overflow: hidden;
  z-index: 15;
  border: 1px solid var(--border);
}

#sidebar {
  width: 76px;
  background: #F4F5F8;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 36px;
  gap: 20px;
  font-size: 18px;
  border-right: 1px solid var(--border);
}

.sb-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.sb-icon.active,
.sb-icon:hover {
  background: #1E2025;
  color: var(--white);
}

#panelContent {
  flex: 1;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ph-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.ph-sub {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.dot.live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

.ph-actions {
  display: flex;
  gap: 12px;
}

.dropdown {
  background: var(--white);
  border: 1px solid #E2E4E9;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
}

.round-btn.dark {
  background: var(--ink);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.m-card-slot {
  height: 116px;
  border-radius: 18px;
  border: 1.5px dashed #DCDFE6;
  background: transparent;
}

.m-card {
  height: 116px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border);
}

.m-label {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
}

.m-val {
  font-size: 28px;
  font-weight: 700;
  margin: 2px 0;
}

.m-sub {
  font-size: 11.5px;
  color: var(--muted);
}

.m-badge {
  font-size: 11px;
  color: #16A34A;
  font-weight: 700;
  background: #DCFCE7;
  padding: 2px 8px;
  border-radius: 999px;
  width: max-content;
}

.panel-body-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  flex: 1;
}

.table-card,
.logs-card {
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}

.ops-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  text-align: left;
}

.ops-table th {
  padding: 10px;
  color: var(--muted);
  font-weight: 600;
  border-bottom: 1px solid #F0F2F5;
}

.ops-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #F0F2F5;
}

.status-pill {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.status-pill.green { background: #DCFCE7; color: #15803D; }
.status-pill.orange { background: #FFEDD5; color: #C2410C; }
.status-pill.red { background: #FEE2E2; color: #B91C1C; }
.status-pill.blue { background: #EBF5FF; color: var(--accent); }
.status-pill.teal { background: #E6F8F9; color: var(--teal); }
.status-pill.gray { background: #F3F4F6; color: #4B5563; }

.log-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.log-list li {
  font-size: 12px;
  line-height: 1.4;
  display: flex;
  gap: 10px;
}

.log-time {
  font-weight: 700;
  color: var(--muted);
  width: 40px;
}

.log-text b { color: var(--ink); }
.log-text.alert { color: var(--danger); }

.float-card {
  z-index: 30;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border);
  will-change: transform, left, top, width, height;
}

.float-card.warning { border-top: 3px solid var(--warning); }
.float-card.danger { border-top: 3px solid var(--danger); }

.fc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}


/* ==========================================
   3. BÖLÜM VE SAYFA HEROLARI (ALT SAYFALAR İÇİN)
   ========================================== */
.section-container {
  padding: 100px 24px;
  background: #FFFFFF;
}

.section-container.bg-light {
  background: #FFFFFF;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.text-center { text-align: center; }

/* Subpage Standard Hero Header */
.page-hero {
  padding: 170px 24px 90px 24px;
  background: linear-gradient(135deg, #15324A 0%, #0F2436 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #FFFFFF;
}

.page-hero .section-tag {
  color: #50B5FF;
  background: rgba(80, 181, 255, 0.12);
  padding: 6px 16px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1px;
}

.page-hero-title {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.15;
}

.page-hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: #A0B3C6;
  max-width: 760px;
  margin: 0 auto;
}

/* Minimal Feature Grid (Screenshot 2 Style) */
.minimal-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 24px;
  margin-top: 50px;
}

.minimal-feature-card {
  background: transparent;
  padding: 28px 20px;
  text-align: center;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  border-radius: 16px;
}

.minimal-feature-card:hover {
  background: #FFFFFF;
  border-bottom-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.minimal-feature-card .f-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #F0F4F8;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.minimal-feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.35;
}

.minimal-feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* Navy Blue Sade & Şık Problem Karşılaştırma Kutusu (Emoji Yok) */
.problem-hero-box {
  background: linear-gradient(135deg, #15324A 0%, #0F2436 100%);
  color: #FFFFFF;
  border-radius: 24px;
  padding: 48px 44px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 16px 40px rgba(15, 36, 54, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.problem-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #50B5FF;
  background: rgba(80, 181, 255, 0.12);
  border: 1px solid rgba(80, 181, 255, 0.25);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.phb-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
  color: #FFFFFF;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}

.phb-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #A0B3C6;
  margin: 0;
}

/* Minimal Karşılaştırma Kartı */
.phb-compare-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare-item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-item.servistakip {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
}

.ci-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.ci-tag {
  font-size: 11.5px;
  font-weight: 700;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ci-tag.green {
  color: #4ADE80;
}

.ci-time {
  font-size: 16.5px;
  font-weight: 800;
}

.ci-time.red { color: #F87171; }
.ci-time.green { color: #4ADE80; }

.ci-text {
  font-size: 13px;
  color: #CBD5E1;
  margin: 0;
  line-height: 1.45;
}

.compare-divider {
  display: flex;
  justify-content: center;
  color: #50B5FF;
  opacity: 0.7;
}

/* Gerçek Baloncuk Şeklinde Yüzen Chat Widget (Kusursuz Görünüm & Kapanış) */
.floating-problem-bar {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: calc(100% - 40px);
  max-width: 360px;
  background: rgba(21, 50, 74, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px 20px 6px 20px;
  padding: 18px 20px;
  box-shadow: 0 16px 40px rgba(15, 36, 54, 0.35);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  color: #FFFFFF;
}

.floating-problem-bar.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.fpb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.fpb-badge {
  font-size: 11px;
  font-weight: 800;
  background: rgba(80, 181, 255, 0.15);
  color: #50B5FF;
  border: 1px solid rgba(80, 181, 255, 0.3);
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.fpb-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.35;
  margin: 0;
}

.fpb-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: #E2E8F0;
  margin: 0;
}

.fpb-text strong {
  color: #50B5FF;
  font-weight: 700;
}

.fpb-actions {
  margin-top: 4px;
  width: 100%;
}

.fpb-actions .btn-primary.btn-sm {
  display: block;
  text-align: center;
  width: 100%;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  background: #1769AA;
  color: #FFFFFF;
  border-radius: 10px;
  text-decoration: none;
}

.fpb-close {
  background: transparent;
  border: none;
  color: #94A3B8;
  font-size: 22px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}

.fpb-close:hover {
  color: #FFFFFF;
}

/* Scroll Blur Animation Class */
.reveal-blur {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(30px);
  transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}

.reveal-blur.is-visible {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
}

.section-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 12px;
  display: inline-block;
}

.section-h2 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 14px;
  color: var(--ink);
}

.section-h2-lg {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  color: var(--ink);
}

.section-p {
  font-size: 16px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-p-lg {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 820px;
  margin: 0 auto;
}


/* ==========================================
   4. KARTLAR VE GRİDLER
   ========================================== */

/* 3 Step System */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.step-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
}

.step-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  background: #EBF5FF;
  padding: 4px 12px;
  border-radius: 999px;
  width: max-content;
  margin-bottom: 20px;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #F0F7FF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 18px;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}

.step-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
}

/* Feature Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.feature-card {
  background: var(--white);
  border-radius: 18px;
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
}

.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.f-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #F0F7FF;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}

.feature-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
}

/* Split Grid */
.split-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.benefit-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

.split-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.sc-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #F8F9FA;
  border: 1px solid #EAECEF;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.tag:hover {
  background: #F0F4F8;
  border-color: #DCE2E9;
  color: var(--accent);
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Integration Box */
.integration-box {
  background: var(--primary);
  color: var(--white);
  border-radius: 28px;
  padding: 56px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  box-shadow: 0 20px 40px rgba(21, 50, 74, 0.12);
}

.integration-box .section-tag { color: #50B5FF; }
.integration-box .section-h2 { color: var(--white); }
.integration-box .section-p { color: #A0B3C6; margin: 0; line-height: 1.6; }
.integration-disclaimer {
  font-size: 12.5px;
  color: #7E9BB8;
  margin-top: 14px !important;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(21, 50, 74, 0.25);
}

.btn-primary.btn-lg-fixed {
  background: var(--white);
  color: var(--primary);
  padding: 14px 28px;
  font-size: 14.5px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-primary.btn-lg-fixed:hover {
  background: #F4F5F8;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background: rgba(21, 50, 74, 0.05);
  transform: translateY(-1px);
}


/* ==========================================
   5. NASIL ÇALIŞIR - SÜREÇ SATIRLARI VE 7'Lİ DURUM MODELİ
   ========================================== */
.process-rows {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 50px;
}

.process-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: 24px;
  padding: 40px 44px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.process-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(23, 105, 170, 0.2);
}

/* Sol Tarafta Alternatif Ritim Çizgisi */
.process-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--accent);
}

.process-row:nth-child(even)::before {
  background: var(--primary);
}

.process-row:nth-child(4)::before {
  background: var(--danger);
}

.pr-step-num {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--accent);
  background: rgba(23, 105, 170, 0.08);
  padding: 5px 14px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 14px;
}

.process-row:nth-child(even) .pr-step-num {
  color: var(--primary);
  background: rgba(21, 50, 74, 0.08);
}

.pr-text h3 {
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.pr-text p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted);
}

/* Sağ Görsel Kart - Modern Dashboard Stili */
.simple-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: all 0.3s ease;
}

.simple-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 4px;
  background: var(--accent);
  border-radius: 0 4px 4px 0;
}

.simple-card.alert {
  border-left: 4px solid var(--danger);
  background: #FFF9F9;
  border-color: #FEE2E2;
}

.simple-card.alert::after {
  display: none;
}

.sc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.sc-label { font-size: 12.5px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.sc-val { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.4px; }
.sc-sub { font-size: 13.5px; color: var(--muted); font-weight: 500; }

.flow-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.flow-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.flow-item.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.flow-arrow { font-size: 18px; color: var(--accent); }

/* 7'li Durum Modeli - Dikkat Çekici & Canlı Dashboard Stili */
.status-clean-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.status-clean-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.status-clean-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

/* Renkli Üst Çizgi Vurguları */
.status-clean-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
}

.status-clean-card.card-gray::before { background: #9CA3AF; }
.status-clean-card.card-blue::before { background: #3B82F6; }
.status-clean-card.card-teal::before { background: #14B8A6; }
.status-clean-card.card-green::before { background: #22C55E; }
.status-clean-card.card-orange::before { background: #F97316; }
.status-clean-card.card-red::before { background: #EF4444; }
.status-clean-card.card-darkgray::before { background: #4B5563; }

/* 7. Kartı (İptal / Pasif) Gridin Ortasına Yerleştirme */
.status-clean-card.card-darkgray {
  grid-column: 2;
}

.status-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-gray { background: #9CA3AF; }
.dot-blue { background: #3B82F6; }
.dot-teal { background: #14B8A6; }
.dot-green { background: #22C55E; }
.dot-orange { background: #F97316; }
.dot-red { background: #EF4444; }
.dot-darkgray { background: #4B5563; }

.status-title {
  font-size: 17.5px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.status-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Kurulum & Onboarding Metodolojisi Grid (Docx Uyumlu) */
.onboarding-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.onboarding-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.onboarding-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
  border-color: rgba(23, 105, 170, 0.3);
}

.onboarding-num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--accent);
  background: #EBF5FF;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.onboarding-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.35;
}

.onboarding-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.onboarding-disclaimer-box {
  margin-top: 36px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  padding: 20px 24px;
  text-align: left;
}

.onboarding-disclaimer-box p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

.onboarding-disclaimer-box p strong {
  color: var(--primary);
}

/* Görsel 2 Uyumlu Dikey Kurulum Adımları (Vertical Steps Timeline) */
.vsteps-wrapper {
  max-width: 680px;
  margin: 32px auto 0 auto;
}

.vsteps-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.vsteps-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 21px;
  width: 2px;
  height: calc(100% - 48px);
  background: #E2E8F0;
  z-index: 1;
}

.vstep-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.vstep-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.vstep-item:hover .vstep-icon-box {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  transform: scale(1.08);
}

.vstep-content {
  flex: 1;
  padding-top: 2px;
}

.vstep-content h3 {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
}

.vstep-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}


/* ==========================================
   ROADMAP & STEPPER DESIGNS (GÖRSEL 2 VE 3)
   ========================================== */

/* Görsel 2: Sistem Durum Modeli Yol Haritası (Product Roadmap) Kartı - Jilet Gibi Hizalanmış */
.status-roadmap-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  margin-top: 40px;
}

.status-roadmap-rows {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 36px;
}

.status-roadmap-row-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.status-roadmap-row-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 82%;
  margin: 0 auto;
}

.status-roadmap-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

/* Noktalar - Her Durumun Kendi Renginde Parlayan (Görsel 2 Uyumlu) */
.status-roadmap-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 5px solid var(--dot-color, #9CA3AF);
  box-shadow: 0 0 16px var(--dot-glow, rgba(156, 163, 175, 0.4));
  margin-bottom: 18px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.status-roadmap-node:hover .status-roadmap-dot {
  transform: scale(1.3);
}

.status-roadmap-dot.dot-gray { --dot-color: #9CA3AF; --dot-glow: rgba(156, 163, 175, 0.4); }
.status-roadmap-dot.dot-blue { --dot-color: #3B82F6; --dot-glow: rgba(59, 130, 246, 0.4); }
.status-roadmap-dot.dot-teal { --dot-color: #14B8A6; --dot-glow: rgba(20, 184, 166, 0.4); }
.status-roadmap-dot.dot-green { --dot-color: #22C55E; --dot-glow: rgba(34, 197, 94, 0.4); }
.status-roadmap-dot.dot-orange { --dot-color: #F97316; --dot-glow: rgba(249, 115, 22, 0.4); }
.status-roadmap-dot.dot-red { --dot-color: #EF4444; --dot-glow: rgba(239, 68, 68, 0.4); }
.status-roadmap-dot.dot-darkgray { --dot-color: #4B5563; --dot-glow: rgba(75, 85, 99, 0.4); }

.status-roadmap-badge {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.status-roadmap-badge.gray { background: #F3F4F6; color: #4B5563; }
.status-roadmap-badge.blue { background: #EBF5FF; color: #2563EB; }
.status-roadmap-badge.teal { background: #CCFBF1; color: #0D9488; }
.status-roadmap-badge.green { background: #DCFCE7; color: #16A34A; }
.status-roadmap-badge.orange { background: #FFEDD5; color: #EA580C; }
.status-roadmap-badge.red { background: #FEE2E2; color: #DC2626; }
.status-roadmap-badge.darkgray { background: #E5E7EB; color: #374151; }

.status-roadmap-title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.status-roadmap-sub {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

.roadmap-sub {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}


/* Görsel 3: Horizontal Stepper Kurulum Yapısı */
.stepper-box {
  background: var(--white);
  border-radius: 24px;
  padding: 44px 36px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  margin-top: 40px;
}

.stepper-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 36px;
}

.stepper-wrapper::before {
  content: '';
  position: absolute;
  top: 17px;
  left: 12%;
  width: 76%;
  height: 2px;
  background: #E2E8F0;
  z-index: 1;
}

.stepper-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.stepper-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E2E8F0;
  color: #64748B;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s ease;
  border: 3px solid #FFFFFF;
}

.stepper-item.active .stepper-circle {
  background: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(21, 50, 74, 0.3);
}

.stepper-item.completed .stepper-circle {
  background: #10B981;
  color: #FFFFFF;
}

.stepper-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.stepper-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}


/* Staggered Dynamic Scroll Delays (Sıra Sıra Gelen Kartlar Ritim Efekti) */
.onboarding-grid .reveal-blur:nth-child(1),
.status-clean-grid .reveal-blur:nth-child(1),
.minimal-features-grid .reveal-blur:nth-child(1),
.roadmap-timeline .reveal-blur:nth-child(1),
.stepper-wrapper .reveal-blur:nth-child(1) {
  transition-delay: 0.05s;
}

.onboarding-grid .reveal-blur:nth-child(2),
.status-clean-grid .reveal-blur:nth-child(2),
.minimal-features-grid .reveal-blur:nth-child(2),
.roadmap-timeline .reveal-blur:nth-child(2),
.stepper-wrapper .reveal-blur:nth-child(2) {
  transition-delay: 0.18s;
}

.onboarding-grid .reveal-blur:nth-child(3),
.status-clean-grid .reveal-blur:nth-child(3),
.minimal-features-grid .reveal-blur:nth-child(3),
.roadmap-timeline .reveal-blur:nth-child(3),
.stepper-wrapper .reveal-blur:nth-child(3) {
  transition-delay: 0.31s;
}

.onboarding-grid .reveal-blur:nth-child(4),
.status-clean-grid .reveal-blur:nth-child(4),
.minimal-features-grid .reveal-blur:nth-child(4),
.roadmap-timeline .reveal-blur:nth-child(4),
.stepper-wrapper .reveal-blur:nth-child(4) {
  transition-delay: 0.44s;
}

.status-clean-grid .reveal-blur:nth-child(5) { transition-delay: 0.57s; }
.status-clean-grid .reveal-blur:nth-child(6) { transition-delay: 0.70s; }
.status-clean-grid .reveal-blur:nth-child(7) { transition-delay: 0.83s; }


/* ==========================================
   6. SSS ACCORDION & YASAL SEKMELER
   ========================================== */
.faq-list {
  max-width: 860px;
  margin: 40px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item.is-open {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(23, 105, 170, 0.08);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #F0F4F8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px 28px;
}

/* Legal Tabs */
.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background: #F4F5F8;
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.tab-content {
  display: none;
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  max-width: 900px;
  margin: 0 auto;
}

.tab-content.active {
  display: block;
}

.legal-article h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin: 24px 0 12px 0;
}

.legal-article p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 14px;
}


/* ==========================================
   7. İLETİŞİM / DEMO FORMU
   ========================================== */
.cta-form-wrapper {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.demo-form input[type="text"],
.demo-form input[type="email"],
.demo-form input[type="tel"],
.demo-form select.form-select,
.demo-form textarea {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 0 16px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  background: #FAFAFA;
  color: var(--ink);
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.demo-form textarea {
  height: 100px;
  padding: 14px 16px;
  resize: vertical;
}

.demo-form select.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236C727F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.demo-form input:focus,
.demo-form select.form-select:focus,
.demo-form textarea:focus {
  border-color: var(--accent);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(23, 105, 170, 0.1);
}

.kvkk-checkbox-label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-size: 12.5px !important;
  color: var(--muted) !important;
  text-align: left !important;
  margin: 4px 0 !important;
  cursor: pointer;
}

.kvkk-checkbox-label input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  margin-top: 2px !important;
  cursor: pointer;
  accent-color: var(--primary);
}

.kvkk-checkbox-label a {
  color: var(--accent);
  text-decoration: underline;
}

.btn-primary.full {
  width: 100%;
  height: 50px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 6px;
}


/* ==========================================
   8. FOOTER
   ========================================== */
/* ==========================================
   8. FOOTER (KUSURSUZ TEK SATIR HİZALAMA VE İKON ÜSTÜ ETİKET)
   ========================================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  background: var(--white);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand .logo-footer {
  font-weight: 800;
  font-size: 16px;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.footer-brand p {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.2;
}

/* Tüm Yasal Yazılar Tek Düz Çizgide */
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}

.footer-links a {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  color: #4B5563;
  transition: color 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--primary);
  font-weight: 600;
}

/* Sosyal Medya İkonları Yazılarla Tam Aynı Yatay Hizada, Etiket İkonların Üstünde */
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.social-label {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: center;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 20px;
}

.social-icon {
  background: transparent;
  border: none;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 0;
  line-height: 1;
}

.social-icon:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

/* Hero Altı Kartsız 30 Saniyede Özet Şeridi */
.quick-summary-section {
  background: #FFFFFF;
  padding: 64px 24px;
}

.qs-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.qs-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 44px auto;
  line-height: 1.6;
}

.qs-flow-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
}

.qs-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

.qs-icon-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.qs-icon-wrapper.red {
  border-color: rgba(239, 68, 68, 0.4);
  color: #EF4444;
  background: #FEF2F2;
}

.qs-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qs-num.alert {
  background: #EF4444;
}

.qs-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.qs-info p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.qs-arrow {
  color: #94A3B8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


/* Form Başarı Bildirimi Toast Banner (Alert Yerine Şık Baloncuk) */
.form-toast-success {
  position: fixed;
  top: 32px;
  right: 32px;
  transform: translateY(-40px);
  opacity: 0;
  visibility: hidden;
  background: rgba(6, 78, 59, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #FFFFFF;
  border: 1px solid rgba(52, 211, 153, 0.4);
  border-radius: 20px;
  padding: 18px 22px;
  box-shadow: 0 20px 48px rgba(6, 78, 59, 0.4);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: calc(100% - 40px);
  max-width: 420px;
  z-index: 9999999;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s ease;
}

.form-toast-success.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fts-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #10B981;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.fts-content {
  flex: 1;
}

.fts-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 4px 0;
}

.fts-content p {
  font-size: 13.5px;
  line-height: 1.5;
  color: #D1FAE5;
  margin: 0;
}

.fts-close {
  background: transparent;
  border: none;
  color: #A7F3D0;
  font-size: 22px;
  cursor: pointer;
  padding: 0;
  margin-left: 6px;
  line-height: 1;
  transition: color 0.2s;
}

.fts-close:hover {
  color: #FFFFFF;
}


/* ==========================================
   9. RESPONSIVE MEDIA QUERIES
   ========================================== */

/* Large Tablets & Small Laptops (max-width: 1199px) */
@media (max-width: 1199px) {
  .nav { 
    left: 20px; 
    width: calc(100% - 40px); 
  }
  .navbar-fixed-container .nav {
    max-width: 100%;
  }
  .steps-grid, 
  .features-grid, 
  .status-clean-grid, 
  .minimal-features-grid, 
  .onboarding-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .status-roadmap-row-top { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .status-roadmap-row-bottom { 
    grid-template-columns: repeat(2, 1fr); 
    max-width: 100%; 
  }
  .status-clean-card.card-darkgray { 
    grid-column: auto; 
  }
  .stepper-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
  .stepper-wrapper::before {
    display: none;
  }
  .qs-flow-ribbon {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .qs-arrow {
    transform: rotate(90deg);
    margin: 4px auto;
  }
}

/* Medium Tablets & Portrait Tablets (max-width: 991px) */
@media (max-width: 991px) {
  /* Hamburger button appears */
  .hamburger-toggle { display: flex; }
  .nav-links, .nav-cta { display: none; }
  
  .split-grid, 
  .process-row, 
  .problem-hero-box { 
    grid-template-columns: 1fr; 
    gap: 30px; 
  }
  .problem-hero-box { 
    padding: 40px 28px; 
  }
  .phb-title { 
    font-size: 26px; 
  }
  .integration-box { 
    flex-direction: column; 
    text-align: center; 
    padding: 40px 28px; 
  }
  .integration-box .btn-primary.btn-lg-fixed { 
    width: 100%; 
  }
  
  .page-hero {
    padding: 130px 20px 60px 20px;
  }
  .page-hero-title { 
    font-size: 32px; 
  }
  .page-hero-sub {
    font-size: 16px;
  }
  .section-h2 { 
    font-size: 28px; 
  }
  .section-h2-lg { 
    font-size: 30px; 
  }

  .footer-content { 
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    gap: 24px; 
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 20px;
  }

  .table-card {
    overflow-x: auto;
  }
  .ops-table {
    min-width: 540px;
  }

  /* Stage adjustments for hero scroll on tablet and mobile */
  .hero-scroll-container {
    height: calc(100vh + 1500px);
    position: relative;
  }
  #stageOuter {
    position: sticky;
    top: 0;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
  }
}

/* Mobile Devices (max-width: 767px) */
@media (max-width: 767px) {
  .section-container {
    padding: 60px 16px;
  }
  .container {
    padding: 0 8px;
  }
  .steps-grid, 
  .features-grid, 
  .status-clean-grid, 
  .minimal-features-grid,
  .onboarding-grid { 
    grid-template-columns: 1fr; 
    gap: 18px;
  }
  .status-roadmap-row-top,
  .status-roadmap-row-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .stepper-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-row {
    padding: 24px 20px;
  }
  .pr-text h3 {
    font-size: 20px;
  }

  .cta-form-wrapper { 
    padding: 24px 18px; 
  }
  .tab-content { 
    padding: 24px 18px; 
  }
  .tab-btn {
    padding: 10px 18px;
    font-size: 13.5px;
  }

  .page-hero {
    padding: 110px 16px 50px 16px;
  }
  .page-hero-title {
    font-size: 26px;
    letter-spacing: -0.5px;
  }
  .page-hero-sub {
    font-size: 14.5px;
  }
  .section-h2 {
    font-size: 23px;
  }
  .section-h2-lg {
    font-size: 25px;
  }

  .problem-hero-box {
    padding: 28px 18px;
    border-radius: 18px;
  }
  .phb-title {
    font-size: 21px;
  }

  .quick-summary-section {
    padding: 44px 16px;
  }
  .qs-title {
    font-size: 24px;
  }

  .floating-problem-bar {
    border-radius: 20px;
    padding: 14px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    bottom: 16px;
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none;
  }
  .fpb-content { 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 6px; 
  }
  .fpb-actions { 
    width: 100%; 
    justify-content: space-between; 
  }

  .form-toast-success {
    top: 16px;
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none;
  }

  .vsteps-wrapper {
    padding: 0 4px;
  }
  .vstep-item {
    gap: 14px;
  }
  .vstep-content h3 {
    font-size: 16px;
  }
}

/* Extra Small Phones (max-width: 480px) */
@media (max-width: 480px) {
  .nav {
    left: 12px;
    width: calc(100% - 24px);
    padding: 0 16px;
  }
  .navbar-fixed-container {
    top: 12px;
    padding: 0 12px;
  }
  .logo-text {
    font-size: 14px;
  }
  .btn-primary, .btn-outline {
    width: 100%;
    text-align: center;
  }
}

