/* ============================================================
   KOLAYİKİ — Design System v5.0
   Minimal Light Mode — Apple / Linear inspired
   8px grid · Soft shadows · Pill CTAs · Borderless cards
   ============================================================ */

:root {
  /* ── Surfaces ── */
  --surface:    #FFFFFF;
  --surface-1:  #F8FAFC;
  --surface-2:  #F1F5F9;

  /* ── Text / Ink ── */
  --ink:        #0F172A;
  --ink-2:      #475569;
  --ink-3:      #94A3B8;

  /* ── Brand ── */
  --brand:      #E8003A;
  --brand-dark: #C0002E;
  --brand-ring: rgba(232,0,58,0.14);
  --brand-soft: rgba(232,0,58,0.05);

  /* ── Lines ── */
  --line:       #E2E8F0;
  --line-soft:  #F1F5F9;

  /* ── Shadows ── */
  --shadow-xs:  0 1px 2px rgba(15,23,42,0.04);
  --shadow-sm:  0 2px 8px rgba(15,23,42,0.06), 0 1px 3px rgba(15,23,42,0.04);
  --shadow-md:  0 8px 24px rgba(15,23,42,0.09), 0 2px 8px rgba(15,23,42,0.04);
  --shadow-lg:  0 24px 56px rgba(15,23,42,0.11), 0 8px 24px rgba(15,23,42,0.05);
  --shadow-brand: 0 8px 28px rgba(232,0,58,0.22), 0 2px 8px rgba(232,0,58,0.10);

  /* ── Radius ── */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   24px;
  --r-pill: 9999px;

  /* ── Layout ── */
  --nav-h:      58px;

  /* ── Backward-compat aliases (referenced in old HTML & JS) ── */
  --primary:        var(--brand);
  --primary-dark:   var(--brand-dark);
  --primary-bg:     var(--brand-soft);
  --primary-border: var(--brand-ring);
  --primary-light:  #FF3360;
  --dark:           var(--ink);
  --body-text:      var(--ink);
  --white:          var(--surface);
  --page-bg:        var(--surface);
  --text-dark:      var(--ink);
  --text-muted:     var(--ink-3);
  --gray-50:        var(--surface-1);
  --gray-100:       var(--surface-2);
  --gray-200:       var(--line);
  --gray-300:       #CBD5E1;
  --gray-400:       #94A3B8;
  --gray-500:       #64748B;
  --gray-600:       #475569;
  --success:        #10B981;
  --warning:        #F59E0B;
  --shadow-xs:      var(--shadow-xs);
  --shadow-sm:      var(--shadow-sm);
  --shadow-md:      var(--shadow-md);
  --radius-sm:      var(--r-xs);
  --radius-md:      var(--r-sm);
  --radius-lg:      var(--r-md);
  --radius-xl:      var(--r-lg);
  --transition:     all 0.15s ease;
  --border:         1px solid var(--line);
  --bg-light:       var(--surface-1);
  --total-top:      var(--nav-h);
  --topbar-h:       0px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink-2);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
a  { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }
.container { max-width: 1200px; }

/* ============================================================
   NAVBAR — floating island, 2025 metro
   ============================================================ */

/* Floating ada: sayfa üstünde asılı duran yuvarlak pill */
.kn-navbar {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1160px;
  z-index: 1000;
  height: 58px;
  /* Frosted glass — çok hafif ısılık */
  background: rgba(253,253,254,0.88);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow:
    0 2px 4px rgba(15,23,42,0.04),
    0 8px 24px rgba(15,23,42,0.08),
    0 24px 48px rgba(15,23,42,0.05),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

/* Content offset: floating nav yüksekliği + top gap */
body { padding-top: calc(var(--nav-h) + 14px); }

.kn-navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 12px;
}
.kn-navbar-logo {
  flex-shrink: 0;
}
.kn-navbar-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  transition: opacity .15s, transform .18s;
}
.kn-navbar-logo:hover img {
  opacity: .85;
  transform: scale(1.03);
}

/* Nav linkleri */
.kn-navbar-menu {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}
.kn-navbar-menu li a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 6px 13px;
  border-radius: var(--r-pill);
  letter-spacing: -0.01em;
  transition: color .14s, background .14s;
  white-space: nowrap;
  position: relative;
}
.kn-navbar-menu li a:hover {
  color: var(--ink);
  background: rgba(15,23,42,0.05);
}
/* Aktif link — kırmızı nokta göstergesi */
.kn-navbar-menu li a.active {
  color: var(--brand);
  font-weight: 600;
  background: var(--brand-soft);
}
.kn-navbar-menu li a.active::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--brand);
  border-radius: 50%;
}

/* CTA — ayırıcı çizgi + pill buton */
.kn-navbar-menu li:last-child {
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid var(--line);
}
.kn-navbar-cta {
  background: var(--brand) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: var(--r-pill) !important;
  padding: 8px 20px !important;
  font-size: 13.5px !important;
  letter-spacing: -0.015em !important;
  box-shadow: 0 2px 8px rgba(232,0,58,0.30), 0 4px 16px rgba(232,0,58,0.18) !important;
  transition: all .16s ease !important;
  border: none !important;
}
.kn-navbar-cta:hover {
  background: var(--brand-dark) !important;
  box-shadow: 0 4px 14px rgba(232,0,58,0.42), 0 8px 24px rgba(232,0,58,0.22) !important;
  transform: translateY(-1px) scale(1.02) !important;
}
.kn-navbar-cta:active {
  transform: translateY(0) scale(0.99) !important;
}

/* Hamburger */
.kn-hamburger {
  display: none;
  flex-direction: column;
  gap: 4.5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 10px;
  transition: background .14s;
}
.kn-hamburger:hover { background: rgba(15,23,42,0.06); }
.kn-hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu — floating ada'nın hemen altında */
.kn-mobile-menu {
  display: none;
  position: fixed;
  top: calc(14px + 58px + 6px); /* floating nav altı + boşluk */
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1160px;
  background: rgba(253,253,254,0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 16px;
  padding: 10px 12px 16px;
  box-shadow: 0 8px 32px rgba(15,23,42,0.12), 0 2px 8px rgba(15,23,42,0.06);
  z-index: 999;
}
.kn-mobile-menu.open { display: block; }
.kn-mobile-menu ul { display: flex; flex-direction: column; gap: 2px; margin-bottom: 12px; }
.kn-mobile-menu ul li a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 10px;
  transition: color .14s, background .14s;
}
.kn-mobile-menu ul li a:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

/* Tablet / mobil — ada genişliği daralt */
@media (max-width: 991px) {
  .kn-navbar {
    top: 10px;
    width: calc(100% - 24px);
    border-radius: 14px;
    height: 54px;
  }
  .kn-mobile-menu {
    top: calc(10px + 54px + 6px);
    width: calc(100% - 24px);
    border-radius: 14px;
  }
  body { padding-top: calc(var(--nav-h) + 10px); }

  /* Desktop menüyü gizle, hamburger göster */
  .kn-navbar-menu { display: none; }
  .kn-hamburger { display: flex; }
}

/* Küçük mobil ekranlar */
@media (max-width: 480px) {
  .kn-navbar {
    top: 8px;
    width: calc(100% - 16px);
    height: 52px;
    border-radius: 12px;
  }
  .kn-mobile-menu {
    top: calc(8px + 52px + 6px);
    width: calc(100% - 16px);
    border-radius: 12px;
  }
  .kn-navbar .container { padding: 0 14px; }
  .kn-navbar-logo img { height: 40px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.kn-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: all .18s ease;
  text-decoration: none;
  box-shadow: var(--shadow-brand);
}
.kn-btn-primary:hover {
  background: var(--brand-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(232,0,58,0.28);
}
.kn-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: var(--brand);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--brand);
  cursor: pointer;
  transition: all .18s ease;
  text-decoration: none;
}
.kn-btn-outline:hover { background: var(--brand-soft); }
.kn-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: var(--ink-2);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: var(--transition);
}
.kn-btn-ghost:hover { background: var(--surface-1); color: var(--ink); }

/* Bootstrap danger override → brand pill */
.btn-danger {
  background-color: var(--brand) !important;
  border-color: var(--brand) !important;
  border-radius: var(--r-pill) !important;
  font-weight: 600 !important;
  transition: all .18s ease !important;
  box-shadow: var(--shadow-brand) !important;
}
.btn-danger:hover, .btn-danger:active, .btn-danger:focus {
  background-color: var(--brand-dark) !important;
  border-color: var(--brand-dark) !important;
  transform: translateY(-1px) !important;
}

/* ============================================================
   HERO
   ============================================================ */
.kn-hero {
  background:
    linear-gradient(to right,
      rgba(255,255,255,0.92) 0%,
      rgba(255,255,255,0.78) 35%,
      rgba(255,255,255,0.30) 60%,
      rgba(255,255,255,0.08) 100%),
    url('../img/bg2.png') 65% center / cover no-repeat;
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--line-soft);
}
.kn-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.kn-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
  border: 1px solid var(--brand-ring);
  letter-spacing: .02em;
}
.kn-hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
.kn-hero h1 {
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.035em;
  margin-bottom: 18px;
  line-height: 1.08;
}
.kn-hero h1 span { color: var(--brand); }
.kn-hero-sub {
  font-size: 17px;
  color: var(--ink-3);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Hero form card */
.kn-hero-form {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  text-align: left;
  max-width: 600px;
  margin: 0 auto 32px;
}
.kn-hero-form-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-3);
  margin-bottom: 14px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.kn-hero-form .form-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.kn-hero-form select {
  flex: 1;
  height: 48px;
  padding: 0 36px 0 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--ink);
  background: var(--surface);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  font-family: 'Inter', sans-serif;
  transition: border-color .15s;
}
.kn-hero-form select:focus {
  border-color: var(--brand);
  outline: none;
  box-shadow: 0 0 0 3px var(--brand-ring);
}
.kn-hero-form select:disabled { background: var(--surface-1); color: var(--ink-3); }
.kn-hero-form button {
  height: 48px;
  padding: 0 22px;
  white-space: nowrap;
  border-radius: var(--r-pill);
  font-size: 14px;
}

/* Hero — mobil responsive */
@media (max-width: 560px) {
  .kn-hero {
    padding: 48px 0 40px;
  }
  .kn-hero-form .form-row {
    flex-direction: column;
    gap: 10px;
  }
  .kn-hero-form select {
    height: 52px;
    font-size: 16px; /* iOS zoom önleme */
    padding: 0 40px 0 16px;
    border-radius: 12px;
  }
  .kn-hero-form button {
    width: 100%;
    height: 52px;
    justify-content: center;
    font-size: 16px;
    border-radius: 12px;
  }
  .kn-hero-sub {
    font-size: 15px;
    margin-bottom: 28px;
  }
  .kn-hero-form {
    padding: 20px 18px;
  }
}

/* Hero trust chips */
.kn-hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.kn-hero-chip {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 5px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.kn-hero-chip::before {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--success);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  flex-shrink: 0;
}

/* ============================================================
   RATINGS / SOCIAL PROOF STRIP
   ============================================================ */
.kn-ratings-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.kn-rating-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 32px;
}
.kn-ratings-divider {
  width: 1px;
  height: 40px;
  background: var(--line);
}
.kn-rating-logo {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--surface-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
}
.kn-rating-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.kn-rating-stars {
  font-size: 11px;
  color: #FBBF24;
  letter-spacing: 1px;
  line-height: 1;
}
.kn-rating-label {
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 2px;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.kn-section { padding: 80px 0; }
.kn-section-white { background: var(--surface); }
.kn-section-gray  { background: var(--surface-1); }
.kn-section-head  { text-align: center; margin-bottom: 56px; }
.kn-section-tag {
  display: inline-flex;
  align-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
  border: 1px solid var(--brand-ring);
}
.kn-section-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 14px;
}
.kn-section-sub {
  font-size: 16px;
  color: var(--ink-3);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   HOW IT WORKS — STEPS
   ============================================================ */
.kn-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.kn-step,
.kn-step-card {
  text-align: center;
  padding: 32px 22px 28px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #E7ECF3;
  position: relative;
  overflow: hidden;
  transition: box-shadow .22s, transform .22s, border-color .22s;
  box-shadow: 0 1px 6px rgba(15,23,42,0.04);
}

/* Hover: ince kırmızı üst çizgi belirginleşir */
.kn-step::before,
.kn-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: var(--brand);
  border-radius: 0 0 4px 4px;
  transition: width .25s ease;
}
.kn-step:hover::before,
.kn-step-card:hover::before {
  width: 100%;
  border-radius: 0;
}
.kn-step:hover,
.kn-step-card:hover {
  box-shadow: 0 8px 28px rgba(15,23,42,0.09);
  transform: translateY(-3px);
  border-color: #D4DCE8;
}

/* İkon dairesi — açık zemin, koyu outline ikon */
.kn-step-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #F4F7FB;
  border: 1.5px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: unset;
  line-height: 1;
  transition: background .2s, border-color .2s;
}
.kn-step:hover .kn-step-icon {
  background: #EEF2F8;
  border-color: #CBD5E1;
}
.kn-step-icon svg {
  width: 24px; height: 24px;
  stroke: #0B1630;
  flex-shrink: 0;
}

/* Adım numarası — kurumsal metin etiketi */
.kn-step-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  color: var(--brand);
  margin-bottom: 6px;
  line-height: 1;
}

.kn-step-title,
.kn-step-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  line-height: 1.3;
}
.kn-step-desc,
.kn-step-card p {
  font-size: 13px;
  color: #7B8497;
  line-height: 1.65;
  margin: 0;
}

/* Mobil: 4→2→1 sütun */
@media (max-width: 767px) {
  .kn-steps { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .kn-step-icon { width: 52px; height: 52px; }
  .kn-step-icon svg { width: 22px; height: 22px; }
  .kn-step, .kn-step-card { padding: 24px 16px 22px; }
}
@media (max-width: 420px) {
  .kn-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   TRUST / WHY US CARDS
   ============================================================ */
.kn-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Kompakt yatay kart: sol kırmızı accent + ikon + metin */
.kn-trust-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 20px 20px 22px;
  border: 1px solid #E7ECF3;
  border-left: 3px solid var(--brand);
  box-shadow: 0 1px 4px rgba(15,23,42,0.04);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.kn-trust-card:hover {
  box-shadow: 0 6px 20px rgba(15,23,42,0.08);
  transform: translateY(-2px);
}

/* Sade ikon — açık zemin, koyu outline */
.kn-trust-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #F4F7FB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: unset;
}
.kn-trust-icon svg {
  width: 20px; height: 20px;
  stroke: #0B1630;
  flex-shrink: 0;
}

.kn-trust-body { flex: 1; min-width: 0; }
.kn-trust-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
  line-height: 1.3;
}
.kn-trust-card p {
  font-size: 12.5px;
  color: #7B8497;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .kn-trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .kn-trust-grid { grid-template-columns: 1fr; gap: 10px; }
  .kn-trust-card { padding: 16px 16px 16px 18px; gap: 12px; }
  .kn-trust-icon { width: 36px; height: 36px; border-radius: 8px; }
  .kn-trust-icon svg { width: 18px; height: 18px; }
}

/* ============================================================
   ADVANTAGES PAGE
   ============================================================ */
.kn-adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .kn-adv-grid { grid-template-columns: 1fr; gap: 14px; }
  .kn-adv-card img { height: 200px; }
}
/* Image card — editorial overlay stili */
.kn-adv-card {
  border-radius: 16px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  position: relative;
  box-shadow: 0 4px 24px rgba(15,23,42,0.12);
  transition: box-shadow .25s, transform .25s;
}
.kn-adv-card:hover {
  box-shadow: 0 12px 40px rgba(15,23,42,0.20);
  transform: translateY(-4px);
  text-decoration: none;
}
/* Görsel */
.kn-adv-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.kn-adv-card:hover img {
  transform: scale(1.05);
}
/* Karanlık gradient overlay */
.kn-adv-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 20px 20px;
  background: linear-gradient(to top, rgba(10,15,30,0.88) 0%, rgba(10,15,30,0.4) 60%, transparent 100%);
  border-radius: 0 0 16px 16px;
}
.kn-adv-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.35;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
/* Küçük kırmızı çizgi accent */
.kn-adv-card-body::before {
  content: '';
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--brand);
  border-radius: 2px;
  margin-bottom: 8px;
}
.kn-adv-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  margin-top: 4px;
  margin-top: 6px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.kn-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.kn-testimonial-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.kn-testimonial-stars { color: #FBBF24; font-size: 14px; letter-spacing: 1px; margin-bottom: 10px; }
.kn-testimonial-text  { font-size: 14px; color: var(--ink-2); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.kn-testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.kn-testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-2);
  flex-shrink: 0;
}
.kn-testimonial-name  { font-size: 13px; font-weight: 600; color: var(--ink); }
.kn-testimonial-plate { font-size: 11px; color: var(--ink-3); margin-top: 1px; }

/* ============================================================
   FAQ
   ============================================================ */
.kn-faq { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.kn-faq-item {
  background: var(--surface);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}
.kn-faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .15s;
}
.kn-faq-q:hover { background: var(--surface-1); }
.kn-faq-q::after {
  content: '+';
  font-size: 18px;
  color: var(--ink-3);
  font-weight: 300;
  transition: transform .2s;
  flex-shrink: 0;
}
.kn-faq-item.open .kn-faq-q::after { transform: rotate(45deg); }
.kn-faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.7;
}
.kn-faq-item.open .kn-faq-a { display: block; }

/* ============================================================
   PAGE BANNER (inner pages: hakkımızda, iletişim, vb.)
   ============================================================ */
.kn-page-banner {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  padding: 22px 0 20px;
  position: relative;
  overflow: hidden;
}
.kn-page-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand, #E8003A), transparent);
}
.kn-page-banner-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.kn-page-banner h1 {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
}
.kn-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-3);
}
.kn-breadcrumb a { color: var(--ink-3); }
.kn-breadcrumb a:hover { color: var(--brand); }
.kn-breadcrumb .sep { color: var(--line); }

/* ============================================================
   ABOUT / CONTACT SECTION
   ============================================================ */
.kn-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.kn-about-img { border-radius: var(--r-lg); overflow: hidden; }
.kn-about-img img { width: 100%; }
.kn-about-text h2 { font-size: clamp(24px,3vw,36px); font-weight: 800; letter-spacing:-0.02em; margin-bottom: 16px; }
.kn-about-text p  { font-size: 15px; color: var(--ink-2); line-height: 1.75; margin-bottom: 12px; }

.kn-contact-section { max-width: 680px; margin: 0 auto; }
.kn-contact-section h2 { font-size: 28px; font-weight: 800; margin-bottom: 32px; text-align: center; }
.kn-contact-info { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.kn-contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--surface);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  font-size: 15px;
  color: var(--ink);
  transition: var(--transition);
}
.kn-contact-info-item:hover { box-shadow: var(--shadow-md); }
.kn-contact-info-item i { color: var(--brand); font-size: 18px; }

/* ============================================================
   FOOTER — Metro Corporate
   ============================================================ */
.kn-footer {
  background: #040A14;
  color: rgba(255,255,255,0.42);
  padding: 64px 0 0;
  position: relative;
  border-top: 1px solid rgba(232,0,58,0.20);
}
.kn-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(232,0,58,0.35) 30%, rgba(232,0,58,0.35) 70%, transparent 100%);
}

/* Brand column */
.kn-footer-brand img {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 8px;
}
.kn-footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: #8A94A6;
  max-width: 268px;
  margin-bottom: 0;
}

/* Social icons */
.kn-footer-social {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}
.kn-footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #8A94A6;
  transition: border-color .2s, color .2s, background .2s;
  text-decoration: none;
}
.kn-footer-social a:hover {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

/* Nav columns */
.kn-footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 20px;
}
.kn-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: none;
  padding: 0; margin: 0;
}
.kn-footer-col ul li a {
  font-size: 13.5px;
  color: #CBD5E1;
  transition: color .18s, padding-left .18s;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.55;
  text-decoration: none;
}
.kn-footer-col ul li a:hover {
  color: #fff;
  padding-left: 3px;
}
.kn-footer-col ul li a i {
  margin-top: 3px;
  flex-shrink: 0;
  opacity: 0.55;
  font-size: 12px;
}

/* Bottom bar */
.kn-footer-bottom {
  margin-top: 52px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.kn-footer-bottom p {
  font-size: 11.5px;
  color: #64748B;
  margin: 0;
}
.kn-footer-bottom-links { display: flex; gap: 22px; }
.kn-footer-bottom-links a {
  font-size: 11.5px;
  color: #64748B;
  transition: color .18s;
  text-decoration: none;
}
.kn-footer-bottom-links a:hover { color: #94A3B8; }

/* ============================================================
   WIZARD — Breadcrumb + Progress
   ============================================================ */
.kn-wizard-breadcrumb {
  background: var(--surface);
  border-bottom: 1px solid var(--line-soft);
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
}
.kn-wizard-breadcrumb-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.kn-wizard-breadcrumb-trail {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 10px 0 0;
  font-size: 12px;
  color: var(--ink-3);
  min-height: 32px;
}
.kn-wizard-breadcrumb-trail span.sep { color: var(--line); }
.kn-wizard-breadcrumb-trail span.done,
.kn-wizard-breadcrumb-trail .kn-bc-done {
  color: var(--ink-2);
  font-weight: 500;
  cursor: pointer;
}
.kn-wizard-breadcrumb-trail span.done:hover,
.kn-wizard-breadcrumb-trail .kn-bc-done:hover { color: var(--brand); }
.kn-wizard-breadcrumb-trail span.active {
  color: var(--ink);
  font-weight: 600;
}

/* Progress bar — thin brand line */
.kn-wizard-progress {
  height: 2px;
  background: var(--line);
  margin: 8px 0 0;
}
.kn-wizard-progress-fill {
  height: 2px;
  background: var(--brand);
  transition: width 0.4s cubic-bezier(.4,0,.2,1);
  width: 10%;
}

/* ============================================================
   WIZARD SECTION
   ============================================================ */
.kn-wizard-section {
  background: var(--surface);
  min-height: calc(100vh - var(--nav-h) - 56px);
  padding-bottom: 100px;
}
.kn-wizard-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 24px 0;
}

/* Step heading */
.kn-step-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.kn-step-back {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface-1);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--ink-2);
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}
.kn-step-back:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.kn-step-title-text {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

/* Search box */
.kn-step-search {
  width: 100%;
  max-width: 480px;
  height: 44px;
  padding: 0 16px 0 42px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 14px;
  color: var(--ink);
  background: var(--surface);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 14px center;
  font-family: 'Inter', sans-serif;
  margin-bottom: 20px;
  transition: border-color .15s;
}
.kn-step-search:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-ring);
}

/* ============================================================
   SMARTWIZARD OVERRIDES
   ============================================================ */
.sw-main .nav.nav-tabs.step-anchor { display: none !important; }
#smartwizard {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.sw-main.sw-theme-dots { background: transparent !important; border: none !important; }
.tab-pane.step-content { padding: 0 !important; background: transparent !important; }

/* Step h3 override */
.tab-pane.step-content h3,
.tab-pane.step-content > h3,
.tab-pane.step-content > form > h3 {
  font-size: clamp(20px,2.5vw,30px) !important;
  font-weight: 800 !important;
  color: var(--ink) !important;
  background: none !important;
  text-shadow: none !important;
  text-align: left !important;
  padding: 0 0 24px !important;
  margin: 0 !important;
  border: none !important;
  letter-spacing: -0.025em !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

/* ============================================================
   SELECTION CARDS (brand / model / year / etc.)
   ============================================================ */
.tab-pane.step-content .step_content.row { margin: 0 -6px !important; justify-content: flex-start !important; }
.tab-pane.step-content .step_content.row > div { padding: 6px !important; margin-bottom: 0 !important; }

.tab-pane.step-content .step_content.row > div > a,
.step_content a {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--surface) !important;
  border: 1.5px solid transparent !important;
  border-radius: var(--r-md) !important;
  padding: 16px 10px 14px !important;
  min-height: 80px !important;
  text-decoration: none !important;
  color: var(--ink) !important;
  text-align: center !important;
  gap: 6px !important;
  cursor: pointer !important;
  transition: all 0.18s ease !important;
  width: 100% !important;
  box-shadow: var(--shadow-sm) !important;
  white-space: normal !important;
  overflow: visible !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}
.tab-pane.step-content .step_content.row > div > a:hover,
.step_content a:hover {
  border-color: var(--brand) !important;
  background: var(--brand-soft) !important;
  color: var(--brand) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-md) !important;
}
.tab-pane.step-content .step_content.row > div > a strong,
.step_content a strong {
  display: block !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  color: inherit !important;
  text-align: center !important;
  line-height: 1.3 !important;
}
.tab-pane.step-content .step_content.row > div > a img.make-logo {
  max-height: 32px !important;
  max-width: 60px !important;
  object-fit: contain !important;
  margin: 0 auto 2px !important;
}

/* ============================================================
   FLOATING / FIXED MOBILE CTA (wizard Devam button)
   ============================================================ */
.next-fixed-mobile {
  border-radius: var(--r-pill) !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  letter-spacing: 0.01em !important;
}
@media (max-width: 991px) {
  .next-fixed-mobile {
    position: fixed !important;
    bottom: 16px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 32px) !important;
    max-width: 480px !important;
    z-index: 200 !important;
    box-shadow: 0 8px 32px rgba(232,0,58,0.28) !important;
    padding: 15px 28px !important;
  }
}

/* ============================================================
   CONDITION FORM — Araç Genel Durumu
   ============================================================ */

/* Bool sorular — kompakt liste */
.kn-bool-list {
  margin-bottom: 8px;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.kn-bool-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 14px;
  background: var(--surface);
  border-bottom: 1px solid var(--line-soft);
}
.kn-bool-row:last-child { border-bottom: none; }
.kn-bool-row .kn-bool-label {
  flex: 1;
  font-size: 0.81rem;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.3;
}

/* Evet / Hayır toggle */
.kn-bool-toggle {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.kn-bool-toggle label { cursor: pointer; margin: 0; }
.kn-bool-toggle label input[type="radio"] { display: none; }
.kn-bool-toggle label span {
  display: block;
  text-align: center;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-3);
  background: var(--surface-1);
  transition: all .12s;
  white-space: nowrap;
}
.kn-bool-toggle label:hover span {
  border-color: var(--gray-300);
  color: var(--ink-2);
}
/* Evet seçili → yeşil */
.kn-bool-toggle label.kn-opt-evet input[type="radio"]:checked + span {
  background: var(--success);
  border-color: var(--success);
  color: #fff;
}
/* Hayır seçili → koyu gri */
.kn-bool-toggle label.kn-opt-hayir input[type="radio"]:checked + span {
  background: var(--ink-2);
  border-color: var(--ink-2);
  color: #fff;
}

/* Araç rengi + Tramer satır */
.kn-inline-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--surface);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.kn-inline-field .kn-field-label {
  font-size: 0.81rem;
  font-weight: 600;
  color: var(--ink-2);
  min-width: 100px;
  white-space: nowrap;
}
.kn-inline-field .form-control {
  flex: 1;
  min-width: 120px;
  height: 38px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  padding: 0 12px;
  color: var(--ink);
  background: var(--surface);
  transition: border-color .15s;
}
.kn-inline-field .form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-ring);
  outline: none;
}
.kn-inline-field .kn-bool-toggle { flex: 1; }
.kn-tramer-amount .form-control { max-width: 200px; }

/* ============================================================
   ARAÇ RENGI + TRAMER — KOMPAKT ÜÇLÜ SATIR
   ============================================================ */
.kn-extra-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 12px;
}
.kn-extra-fields .kn-inline-field {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px !important;
  background: none !important;
  border: none !important;
  border-right: 1px solid var(--line-soft) !important;
  box-shadow: none !important;
}
.kn-extra-fields .kn-inline-field:last-child {
  border-right: none !important;
}
.kn-extra-fields .kn-field-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  white-space: nowrap;
  flex-shrink: 0;
}
/* Renk select — kompakt */
.kn-extra-fields #car_color_select {
  max-width: 140px;
  min-width: 0;
  font-size: 13px;
  padding: 4px 8px;
  height: 32px;
}
/* Tramer toggle + tutar satır içi */
.kn-extra-fields .kn-tramer-amount {
  flex: 1;
}
.kn-extra-fields .kn-tramer-amount .form-control {
  height: 32px;
  font-size: 13px;
  padding: 4px 10px;
  max-width: 160px;
}
@media (max-width: 600px) {
  .kn-extra-fields {
    flex-direction: column;
  }
  .kn-extra-fields .kn-inline-field {
    border-right: none !important;
    border-bottom: 1px solid var(--line-soft) !important;
  }
  .kn-extra-fields .kn-inline-field:last-child {
    border-bottom: none !important;
  }
  .kn-extra-fields #car_color_select { max-width: 100%; }
}

/* ============================================================
   ARAÇ GENEL DURUMU — TEK SÜTUN SATIR LİSTESİ
   ============================================================ */
.kn-bool-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
}
.kn-bool-cards .kn-bool-row {
  flex-direction: row !important;
  align-items: center !important;
  gap: 0 !important;
  background: var(--surface) !important;
  border: none !important;
  border-bottom: 1px solid var(--line-soft) !important;
  border-radius: 0 !important;
  padding: 11px 16px !important;
  box-shadow: none !important;
  transition: background 0.12s ease !important;
}
.kn-bool-cards .kn-bool-row:last-child {
  border-bottom: none !important;
}
.kn-bool-cards .kn-bool-row:hover {
  background: var(--surface-1) !important;
}
.kn-bool-cards .kn-bool-label {
  flex: 1 !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: var(--ink) !important;
  line-height: 1.4 !important;
}
.kn-bool-cards .kn-bool-toggle {
  width: auto;
  flex: 0 0 auto;
}

/* ============================================================
   KAPORTA PANELİ — kompakt overrides (Panel B)
   ============================================================ */
#condition-panel-b .kn-step-heading {
  margin-bottom: 10px;
}
#condition-panel-b .kn-step-title-text {
  font-size: 20px;
  font-weight: 700;
}
#condition-panel-b .kn-step-back {
  width: 30px;
  height: 30px;
  font-size: 12px;
}

/* ============================================================
   KAPORTA CHIP GRID
   ============================================================ */

/* Başlık satırı: "Tümü Orijinal" radio buton + etiket */
.kn-kaporta-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 4px;
}
.kn-all-orig-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.15s;
  user-select: none;
}
.kn-all-orig-btn:hover { color: var(--ink); }
.kn-all-orig-btn.all-original { color: var(--brand); }

/* Radio göstergesi */
.kn-radio-dot {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--surface);
  flex-shrink: 0;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.kn-all-orig-btn.all-original .kn-radio-dot {
  border-color: var(--brand);
  background: var(--brand);
  box-shadow: inset 0 0 0 4px var(--surface);
}

/* Layout: chip grid üstte tam genişlik, SVG altta ortalı */
.kn-kaporta-section .row {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  margin: 0;
  gap: 6px;
}
.kn-kaporta-section .col-xl-7 {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}
.kn-kaporta-section .col-xl-5 {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}

/* 2-sütun chip grid — gap trick */
.kn-kaporta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-soft);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 0;
}
.kn-kaporta-row {
  background: var(--surface);
  padding: 4px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  min-width: 0;
  overflow: hidden;
  transition: background 0.12s ease;
}
.kn-kaporta-row:hover { background: var(--surface-1); }
.kn-kaporta-name {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink);
  flex: 0 0 auto;
  max-width: 45%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kn-kaporta-chips {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
  flex-wrap: nowrap;
}
.kn-kaporta-chips input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.kn-chip {
  display: inline-block;
  padding: 2px 5px;
  font-size: 10px;
  font-weight: 500;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line);
  background: var(--surface-1);
  color: var(--ink-3);
  cursor: pointer;
  user-select: none;
  transition: background .1s, border-color .1s, color .1s;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.kn-chip:hover { border-color: var(--gray-300); background: var(--surface-2); color: var(--ink-2); }
.kn-kaporta-chips input[type="radio"]:checked + .kn-chip.kn-chip-orig  { background: #94A3B8; border-color: #64748B; color: #fff; }
.kn-kaporta-chips input[type="radio"]:checked + .kn-chip.kn-chip-rep   { background: #f9355c; border-color: #d41d44; color: #fff; }
.kn-kaporta-chips input[type="radio"]:checked + .kn-chip.kn-chip-paint { background: #3B82F6; border-color: #1D4ED8; color: #fff; }
.kn-kaporta-chips input[type="radio"]:checked + .kn-chip.kn-chip-local { background: #F59E0B; border-color: #B45309; color: #fff; }

/* SVG panel — yatay araç görseli + sağda legend/not */
#svg-container {
  border: 1.5px solid var(--line) !important;
  border-radius: var(--r-md) !important;
  background: var(--surface) !important;
  padding: 12px 20px !important;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}

/* Landscape (yatay) araç SVG wrapper */
.svg-rotate-wrap {
  flex-shrink: 0;
  width: 280px;   /* landscape genişlik = portrait yükseklik */
  height: 187px;  /* landscape yükseklik = portrait genişlik × (400/600) */
  position: relative;
  overflow: hidden;
}
.svg-rotate-wrap svg.arac-svg {
  width: 187px;   /* portrait genişlik */
  height: 280px;  /* portrait yükseklik = 187 × 600/400 ≈ 281 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: center center;
  display: block;
}

/* SVG parça hover + tıklama */
.svg-rotate-wrap svg path[id] {
  cursor: pointer;
  transition: opacity 0.15s, filter 0.15s;
}
.svg-rotate-wrap svg path[id]:hover {
  opacity: 0.75;
  filter: drop-shadow(0 0 3px rgba(232,0,58,0.5));
  stroke: var(--brand);
  stroke-width: 1.5px;
}

/* Sağ: legend + not + devam butonu */
.kn-svg-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 0;
  align-self: stretch;
}

/* Legend + not — yan yana */
.kn-svg-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
}

/* Legend renk göstergeleri */
.kn-kaporta-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.kn-kaporta-legend .kn-leg-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
}
.kn-kaporta-legend .kn-leg-dot::before {
  content: '';
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 3px;
  flex-shrink: 0;
}
.kn-leg-orig::before  { background: #94A3B8; }
.kn-leg-rep::before   { background: #f9355c; }
.kn-leg-paint::before { background: #459df7; }
.kn-leg-local::before { background: #FFCB05; }

/* Devam butonu — tam genişlik */
.kn-kaporta-devam-btn {
  display: block;
  width: 100%;
  text-align: center;
}

/* Tıklama notu — sağda kart */
.kn-svg-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
  padding: 14px 16px;
  background: #F0F6FF;
  border: 1px solid #DBEAFE;
  border-radius: var(--r-md);
  flex: 1;
}
.kn-svg-note svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
  margin-top: 1px;
  color: #3B82F6;
  stroke: #3B82F6;
}

/* Popover — modern design system */
#condition-popover {
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  overflow: hidden;
  min-width: 148px;
}
.kn-popover-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--line-soft);
  padding: 8px 12px;
}
.kn-popover-header strong {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.kn-popover-options {
  display: flex;
  flex-direction: column;
}
.kn-popover-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 12px;
  border: none;
  border-bottom: 1px solid var(--line-soft);
  background: var(--surface);
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: background 0.1s;
}
.kn-popover-btn:last-child { border-bottom: none; }
.kn-popover-btn:hover { background: var(--surface-1); }
.kn-pop-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
  display: inline-block;
}

/* Tablo eski liste gizli */
.kn-kaporta-section .table { display: none; }
.kaporta-tablosu, .kaporta-parca-listesi { display: none !important; }

/* Mobil: SVG altına, chip grid tek sütun */
@media (max-width: 767px) {
  .kn-kaporta-section .row {
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .kn-kaporta-section .col-xl-7,
  .kn-kaporta-section .col-xl-5 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .kn-kaporta-grid { grid-template-columns: 1fr; }
  /* SVG container → dikey düzene geç */
  #svg-container {
    flex-direction: column !important;
    align-items: center !important;
    max-width: 100% !important;
    padding: 12px !important;
    gap: 12px !important;
    margin: 0 !important;
  }
  .svg-rotate-wrap {
    width: 220px;
    height: 147px;
  }
  .svg-rotate-wrap svg.arac-svg {
    width: 147px;
    height: 220px;
  }
  .kn-svg-info { width: 100%; }
  .kn-svg-info-row { flex-direction: column; gap: 8px; }

  /* Kaporta satır ismi — tek sütunda tam genişlik */
  .kn-kaporta-name { max-width: 60%; }
}

/* SVG legend badges */
.badge-custom {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
}
.badge-orjinal      { background: #E2E8F0; color: #475569; }
.badge-degisen      { background: #FEE2E2; color: #b91c1c; }
.badge-boyali       { background: #DBEAFE; color: #1d4ed8; }
.badge-lokal-boyali { background: #FEF3C7; color: #92400e; }

/* ============================================================
   CONTACT FORM (km + plaka + kişisel bilgiler)
   ============================================================ */
.kn-contact-form-wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 8px 0 16px;
}
.kn-contact-field { margin-bottom: 16px; }
.kn-contact-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.kn-contact-input {
  width: 100%;
  height: 48px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  font-size: 15px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--surface);
  font-family: 'Inter', sans-serif;
  transition: border-color .15s, box-shadow .15s;
}
.kn-contact-input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-ring);
}
.kn-contact-hint {
  font-size: 0.78rem;
  color: var(--ink-3);
  margin-top: 5px;
}
.kn-contact-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 480px) { .kn-contact-2col { grid-template-columns: 1fr; } }

.kn-kvkk-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--surface-1);
  border-radius: var(--r-md);
  margin-bottom: 16px;
}
.kn-kvkk-row input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--brand); flex-shrink: 0; }
.kn-kvkk-row label { font-size: 0.78rem; color: var(--ink-2); line-height: 1.5; }
.kn-kvkk-row label a { color: var(--brand); text-decoration: underline; }
.kn-info-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--surface-1);
  border-left: 3px solid var(--brand);
  border-radius: var(--r-sm);
  margin-bottom: 16px;
  font-size: 0.8rem;
  color: var(--ink-2);
  line-height: 1.55;
}

/* ============================================================
   INFO MODAL
   ============================================================ */
.purchase-disclaimer .fa-info-circle { color: var(--brand); }
#login_itech .btn-danger {
  background-color: var(--brand) !important;
  border-radius: var(--r-pill) !important;
}


/* ============================================================
   CTA BANNER — Premium kurumsal
   ============================================================ */
.kn-cta-banner {
  background: linear-gradient(160deg, #071327 0%, #020817 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  border-top: 2px solid rgba(232,0,58,0.40);
  overflow: hidden;
}
/* Hafif kırmızı glow — arka planda */
.kn-cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 200px;
  background: radial-gradient(ellipse, rgba(232,0,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.kn-cta-banner .container {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

/* Üst etiket */
.kn-cta-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(232,0,58,0.85);
  margin-bottom: 16px;
}

.kn-cta-banner h2 {
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.kn-cta-banner p {
  font-size: 15.5px;
  color: rgba(255,255,255,0.52);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Ana CTA butonu — güçlü kırmızı */
.kn-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 10px;
  text-decoration: none !important;
  letter-spacing: 0.01em;
  transition: background .18s, transform .12s, box-shadow .18s;
  box-shadow: 0 4px 28px rgba(232,0,58,0.40);
}
.kn-btn-white:hover {
  background: #C00030;
  transform: translateY(-2px);
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 8px 36px rgba(232,0,58,0.50);
}

/* Güven notu butonu altında */
.kn-cta-note {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.01em;
}

@media (max-width: 560px) {
  .kn-cta-banner { padding: 48px 20px; }
  .kn-cta-banner h2 { font-size: 22px; }
  .kn-btn-white { width: 100%; justify-content: center; padding: 14px 24px; }
}

/* ============================================================
   BTN WHITE — CTA Banner ve result sayfaları için
   ============================================================ */
.kn-btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all .18s;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.kn-btn-white:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
  text-decoration: none;
  border-color: rgba(255,255,255,0.35);
}

/* ============================================================
   MOBİL RESPONSIVE — Kapsamlı Düzeltmeler
   ============================================================ */

/* Wizard section taşmayı engelle */
.kn-wizard-section { overflow-x: hidden; }

/* ── Footer mobil ── */
@media (max-width: 575px) {
  .kn-footer { padding: 40px 0 0; }
  .kn-footer-brand { text-align: center; }
  .kn-footer-brand img { margin: 0 auto 16px; }
  .kn-footer-brand p { max-width: 100%; font-size: 12.5px; }
  .kn-footer-social { justify-content: center; }
  .kn-footer-col h4 { margin-top: 8px; }
  .kn-footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding: 14px 0;
    margin-top: 32px;
  }
  .kn-footer-bottom-links { gap: 14px; }
}

/* ── FAQ mobil ── */
@media (max-width: 575px) {
  .kn-faq { padding: 0 4px; }
  .kn-faq-q { padding: 14px 16px; font-size: 14px; }
  .kn-faq-a { padding: 0 16px 14px; font-size: 13px; }
}

/* ── 575px: Küçük telefon geneli ── */
@media (max-width: 575px) {
  /* Wizard body daha dar padding */
  .kn-wizard-body { padding: 16px 16px 0; }
  .kn-wizard-breadcrumb-inner { padding: 0 16px; }

  /* Adım başlığı — uzun başlıklar kırılsın */
  .kn-step-heading { gap: 8px; margin-bottom: 18px; }
  .kn-step-title-text { font-size: 17px !important; }

  /* Seçim kartları — 2 sütundan 1'e küçük telefonda (col-sm-6 override) */
  .tab-pane.step-content .step_content.row > div {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  /* Arama kutusu tam genişlik */
  .kn-step-search { max-width: 100%; }

  /* Bool sorular toggle yazısı */
  .kn-bool-toggle label span { padding: 4px 8px; font-size: 11px; }
  .kn-bool-cards .kn-bool-label { font-size: 12.5px !important; }

  /* Contact form kart iç boşluk */
  .contact-wizard-content > div { padding: 16px 14px 14px !important; }

  /* Hero banner altı form alanları */
  .kn-hero-form { padding: 18px 16px; }
}

/* ── 400px: En dar ekranlar (iPhone SE vb.) ── */
@media (max-width: 400px) {
  .kn-wizard-body { padding: 14px 12px 0; }
  .kn-wizard-breadcrumb-inner { padding: 0 12px; }

  /* Seçim kartları tek sütun */
  .tab-pane.step-content .step_content.row > div {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  /* Contact form kart iç boşluk daha dar */
  .contact-wizard-content > div { padding: 14px 12px 12px !important; }

  /* Kaporta chip — yazı küçük */
  .kn-chip { padding: 2px 4px; font-size: 9.5px; }
  .kn-kaporta-name { font-size: 11px; max-width: 55%; }

  /* Bool toggle */
  .kn-bool-toggle label span { padding: 3px 7px; font-size: 10.5px; }
}

/* ── Breadcrumb: uzun breadcrumb metnini küçük fontla göster ── */
@media (max-width: 575px) {
  .kn-wizard-breadcrumb-trail {
    font-size: 11px;
    gap: 3px;
    padding: 8px 0 0;
  }
}
