/* Bileşenler — tasarımdaki inline stillerin sınıf karşılıkları */

/* ---------- Butonlar ---------- */
.dk-btn-accent {
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: var(--radius-btn);
  padding: 15px 26px;
  font-weight: 600;
  font-size: 16px;
}
.dk-btn-accent:hover { color: var(--accent-ink); filter: brightness(1.04); }

.dk-btn-outline {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 15px 26px;
  font-weight: 600;
  font-size: 16px;
}
.dk-btn-outline:hover { color: var(--ink); border-color: var(--accent); }

.dk-btn-forest {
  background: var(--forest);
  color: #fff;
  border-radius: var(--radius-btn);
  padding: 13px;
  font-weight: 700;
  font-size: 15px;
  width: 100%;
}
.dk-btn-forest:hover { color: #fff; filter: brightness(1.1); }

.dk-btn-sm { padding: 11px 20px; font-size: 15px; border-radius: var(--radius-btn); }
.dk-btn-lg { padding: 16px 32px; font-size: 17px; font-weight: 700; }
.dk-btn-full { width: 100%; }

.dk-arrow-link {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 13px;
  color: var(--accent2-text); padding: 0;
}
.dk-arrow-link:hover { color: var(--forest); }

/* ---------- Rozet / etiket ---------- */
.dk-eyebrow {
  font-size: 13px; font-weight: 700; color: var(--accent2-text);
  text-transform: uppercase; letter-spacing: .6px;
}
.dk-eyebrow-accent { color: var(--accent); }

/* Hero'daki hap rozetler (dk-badge-pill / dk-metric-badge) kaldırıldı — jenerik duruyordu.
   Liste bağlamında bilgi veren kart pill'i korunuyor. */
.dk-metric-pill {
  align-self: flex-start; font-size: 11px; font-weight: 700; color: var(--accent2-text);
  background: var(--accent-soft); padding: 4px 9px; border-radius: 999px;
}

/* ---------- Kartlar ---------- */
.dk-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--pad-card);
}

.dk-card-link {
  display: flex; flex-direction: column; text-align: left;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: var(--pad-card); cursor: pointer;
  color: inherit;
}

/* ---------- Tıklanabilir kartlar: ortak hover/odak dili ----------
   Kartın TAMAMI link; hover'da belirgin bir çerçeve (ring) + hafif kalkma verir,
   böylece tıklanabilir olduğu anlaşılır. Ring için box-shadow kullanılır —
   border kalınlığı değişmediğinden içerik kaymaz. */
.dk-card-link,
.dk-other-card,
.dk-cat-card,
.dk-post-card,
.dk-feature-post {
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
/* Yalnız hover yeteneği olan cihazlarda: dokunmatikte hover "yapışır" ve
   geri gelindiğinde kart vurgulu kalırdı.
   NOT: `pointer: fine` EKLEME — dokunmatik ekranlı dizüstülerde birincil işaretçi
   "coarse" raporlanır ve fare bağlı olsa bile hover tamamen kaybolur. */
@media (hover: hover) {
  .dk-card-link:hover,
  .dk-other-card:hover,
  .dk-cat-card:hover,
  .dk-post-card:hover,
  .dk-feature-post:hover {
    color: inherit;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent-soft);
    transform: translateY(-2px);
  }
}
/* Klavye erişilebilirliği: odakta da aynı çerçeve görünür */
.dk-card-link:focus-visible,
.dk-other-card:focus-visible,
.dk-cat-card:focus-visible,
.dk-post-card:focus-visible,
.dk-feature-post:focus-visible {
  outline: 2px solid var(--accent2-text);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .dk-card-link, .dk-other-card, .dk-cat-card, .dk-post-card, .dk-feature-post { transition: none; }
  .dk-card-link:hover, .dk-other-card:hover, .dk-cat-card:hover, .dk-post-card:hover, .dk-feature-post:hover { transform: none; }
}

.dk-card-title { font-family: var(--font-head); font-weight: 700; font-size: 19px; margin: 12px 0 0; color: var(--ink); }
.dk-card-desc { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 8px 0 0; flex: 1; }
.dk-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border);
}
.dk-card-price { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--ink); }
/* (dk-card-more kaldırıldı — kartın tamamı zaten link, ayrı "Detaylar →" gereksizdi.) */

/* Kategori ikon çipleri */
.dk-chip {
  display: flex; align-items: center; justify-content: center; flex: none;
  font-family: var(--font-head); font-weight: 800;
  background: var(--chip-soft, var(--accent-soft)); color: var(--chip-color, var(--forest));
}
.dk-chip-lg { width: 48px; height: 48px; border-radius: 13px; font-size: 18px; }
.dk-chip-md { width: 42px; height: 42px; border-radius: 12px; font-size: 15px; }
.dk-chip-sm { width: 34px; height: 34px; border-radius: 9px; font-size: 13px; }

/* ---------- Bölüm başlıkları ---------- */
.dk-h1 { font-family: var(--font-head); font-weight: 800; font-size: 42px; letter-spacing: -1.2px; color: var(--ink); margin: 0; }
.dk-section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.dk-section-head h2 { font-weight: 800; font-size: 36px; letter-spacing: -1px; }
.dk-section-head p { font-size: 17px; color: var(--muted); margin: 14px 0 0; }

/* Detay sayfası bölüm başlığı — TEK KAYNAK.
   Modül/hizmet/değer detaylarındaki her bölüm başlığı (Genel Bakış, Neler dahil?,
   Nasıl Çalışır, Diğer hizmetler…) bu sınıfı kullanır; ölçü/boşluk tek yerden değişir.
   Şablonlarda mb- / mt- utility'si EKLEME — Tailwind bu dosyadan önce yüklendiği için
   yazsan da ezilir. Altında açıklama paragrafı olan başlıklarda `is-tight` kullan. */
.dk-sec-title {
  font-family: var(--font-head); font-weight: 800; font-size: 28px;
  letter-spacing: -.6px; color: var(--ink); margin: 0 0 18px;
}
.dk-sec-title.is-tight { margin-bottom: 6px; }
.dk-sec-lead { font-size: 15px; color: var(--muted); margin: 0 0 18px; }

/* ---------- Pastel Ekip & İletişim CTA Bandı (DönüşenKobi Renk Paleti) ---------- */
.dk-cta-band-card {
  background: #F4F8EE;
  border: 1px solid #E2ECD5;
  border-radius: 32px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Mouse Takip Eden Yumuşak Lime Glow */
.dk-cta-band-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  background: radial-gradient(
    500px circle at var(--cta-mouse-x, 50%) var(--cta-mouse-y, 50%),
    rgba(130, 183, 53, 0.22) 0%,
    rgba(174, 222, 52, 0.12) 30%,
    rgba(25, 59, 47, 0.03) 60%,
    transparent 80%
  );
}

.dk-cta-band-card:hover .dk-cta-band-glow {
  opacity: 1;
}

.dk-cta-band-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 3;
}

.dk-cta-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid #DFEAD0;
  padding: 7px 18px;
  border-radius: 9999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #193B2F;
  margin-bottom: 22px;
  box-shadow: 0 2px 8px rgba(25, 59, 47, 0.04);
}

.dk-cta-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #82B735;
  display: inline-block;
  flex-shrink: 0;
}

.dk-cta-heading {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -1.2px;
  color: #0C1F18;
  margin: 0 0 32px;
}

.dk-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.dk-btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15.5px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(130, 183, 53, 0.25);
}

.dk-btn-cta-primary:hover {
  background: #C0ED54;
  transform: translateY(-1px);
  color: #06231A;
  box-shadow: 0 6px 18px rgba(130, 183, 53, 0.35);
}

.dk-btn-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  color: #193B2F;
  border: 1px solid #D7E4CB;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(25, 59, 47, 0.03);
}

.dk-btn-cta-phone i {
  color: #547722;
  font-size: 14px;
}

.dk-btn-cta-phone:hover {
  background: #FFFFFF;
  border-color: #82B735;
  color: #0C1F18;
}

/* Sağ Alan (Orbits & Avatars) */
.dk-cta-band-right {
  position: relative;
  width: 100%;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dk-cta-rings-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dk-cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(130, 183, 53, 0.22);
  pointer-events: none;
}

.dk-ring-1 { width: 140px; height: 140px; }
.dk-ring-2 { width: 240px; height: 240px; }
.dk-ring-3 { width: 340px; height: 340px; }
.dk-ring-4 { width: 440px; height: 440px; }

/* Rozet */
.dk-cta-badge-star {
  position: absolute;
  top: 15px;
  right: 25px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #D6E8BE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #547722;
  font-size: 22px;
  box-shadow: 0 6px 18px rgba(25, 59, 47, 0.08);
  z-index: 4;
}

/* Avatarlar & Konumları */
.dk-cta-avatar-item {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dk-cta-avatar-item:hover {
  transform: scale(1.08);
}

.dk-cta-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #FFFFFF;
  box-shadow: 0 8px 22px rgba(25, 59, 47, 0.12);
  background: #FFFFFF;
}

.dk-cta-avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Konumlandırmalar */
.dk-cta-avatar-item.is-main {
  left: 36%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.dk-cta-avatar-item.is-main:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.dk-cta-avatar-item.is-top {
  left: 45%;
  top: 6%;
}

.dk-cta-avatar-item.is-mid-right {
  left: 70%;
  top: 34%;
}

.dk-cta-avatar-item.is-bottom-right {
  left: 78%;
  top: 66%;
}

.dk-cta-avatar-item.is-left {
  left: 14%;
  top: 60%;
}

/* Responsive Kurallar */
@media (max-width: 1080px) {
  .dk-cta-band-card {
    grid-template-columns: 1fr;
    padding: 44px 36px;
    gap: 32px;
  }

  .dk-cta-heading {
    font-size: 32px;
  }

  .dk-cta-band-right {
    height: 280px;
  }
}

@media (max-width: 640px) {
  .dk-cta-band-card {
    padding: 36px 22px;
    border-radius: 24px;
  }

  .dk-cta-heading {
    font-size: 26px;
  }

  .dk-cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .dk-btn-cta-primary,
  .dk-btn-cta-phone {
    width: 100%;
    justify-content: center;
  }

  .dk-cta-band-right {
    height: 240px;
  }

  .dk-ring-4 { display: none; }
  .dk-ring-3 { width: 280px; height: 280px; }
  .dk-ring-2 { width: 200px; height: 200px; }
  .dk-ring-1 { width: 120px; height: 120px; }
}

/* ---------- Topbar ---------- */
.dk-topbar {
  background: #0e0f11;
  color: #ffffff;
  height: var(--topbar-height, 38px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  position: relative;
  z-index: 55;
}
.dk-topbar-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.dk-topbar-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.dk-topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.dk-topbar-link:hover {
  color: var(--accent);
}
.dk-topbar-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 7px #10b981;
  display: inline-block;
  animation: dkDotPulse 2s infinite ease-in-out;
}
@keyframes dkDotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
.dk-topbar-arrow {
  font-size: 11px;
  margin-left: 2px;
  transition: transform 0.15s ease;
}
.dk-topbar-link:hover .dk-topbar-arrow {
  transform: translateX(3px);
}

.dk-topbar-center {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.dk-marquee {
  display: inline-flex;
  white-space: nowrap;
  will-change: transform;
  animation: dkMarquee 38s linear infinite;
}
.dk-marquee:hover {
  animation-play-state: paused;
}
@keyframes dkMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.dk-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-right: 22px;
}
.dk-marquee-item {
  color: #c4cac7;
  font-size: 12.5px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.dk-marquee-bullet {
  color: #555e5a;
  font-size: 14px;
}

.dk-topbar-right {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.dk-topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.dk-topbar-phone:hover {
  color: var(--accent);
}
.dk-topbar-phone i {
  font-size: 12px;
  color: #ffffff;
}

/* ---------- Header ---------- */
.dk-header {
  position: sticky; top: 0; z-index: 50;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
  will-change: transform;
}
.dk-header.is-hidden {
  transform: translateY(-100%);
  box-shadow: none;
}
.dk-header.is-pinned {
  transform: translateY(0);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.dk-hdr-bar {
  background: #ffffff;
  border-bottom: none;
  height: var(--header-height, 75px);
  width: 100%;
}
.dk-hdr {
  max-width: 1440px; margin: 0 auto; padding: 0 32px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.dk-brand-group {
  display: flex; align-items: center; gap: 14px;
  flex-shrink: 0;
}
.dk-logo {
  display: flex; align-items: center; gap: 10px;
  background: none; border: none; cursor: pointer; padding: 0;
  text-decoration: none; flex-shrink: 0;
}
.dk-logo-img {
  max-height: 34px; height: 32px; width: auto; object-fit: contain; display: block;
}
.dk-badge-wrapper {
  display: inline-flex; align-items: center;
  padding-left: 14px; border-left: 1px solid var(--border);
  height: 36px;
}
.dk-badge-img {
  max-height: 36px; height: 36px; width: auto; object-fit: contain; display: block;
}
.dk-logo-mark {
  width: 34px; height: 34px; border-radius: 10px; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 17px; color: var(--accent-ink);
}
.dk-logo-text { font-family: var(--font-head); font-weight: 500; font-size: 19px; color: var(--ink); letter-spacing: -.4px; }
.dk-logo-text b { font-weight: 800; }

.dk-nav {
  display: flex; align-items: center; gap: 28px;
  margin-left: auto;
}
.dk-nav-item { position: relative; }
.dk-nav-btn {
  padding: 8px 0; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 14.5px; color: #000000; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none;
  transition: opacity .15s ease;
}
.dk-nav-btn:hover { color: #000000; opacity: 0.7; }
.dk-nav-btn.is-active { color: #000000; font-weight: 700; }
.dk-caret { display: inline-block; font-size: 10px; transition: transform .15s; }
.is-open > .dk-nav-btn .dk-caret { transform: rotate(180deg); }

.dk-hdr-actions {
  display: flex; align-items: center; gap: 14px; flex-shrink: 0;
}
.dk-hdr-quote-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all .15s ease;
  white-space: nowrap;
}
.dk-hdr-quote-link:hover {
  color: var(--forest);
  background: var(--surface-2);
}
.dk-star-sparkle {
  color: var(--accent); /* Lime yeşili (#AEDE34) */
  flex-shrink: 0;
  transition: transform .25s ease;
}
.dk-hdr-quote-link:hover .dk-star-sparkle {
  transform: rotate(45deg) scale(1.15);
}

@media (max-width: 900px) {
  .dk-hdr-quote-link {
    display: none !important;
  }
}

.dk-btn-meeting {
  background: #000000;
  color: #ffffff;
  border-radius: 9999px;
  padding: 10px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border: 1px solid #000000;
  cursor: pointer;
  line-height: 1.2;
  transition: all .18s ease;
}
.dk-btn-meeting:hover {
  background: #222222;
  color: #ffffff;
  border-color: #222222;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mega menü & Dropdown (Hover Desteği & Zengin Kart Düzeni) */
.dk-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

/* Hover ve Açık Durumda Mega Menü Gösterimi */
@media (min-width: 901px) {
  .dk-nav-item:hover .dk-mega,
  .dk-nav-item.is-open .dk-mega,
  .dk-nav-item:hover .dk-svc-menu,
  .dk-nav-item.is-open .dk-svc-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
}

.dk-mega {
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  z-index: 90;
  padding-top: 14px; /* Butondan menüye geçişte kesintisiz köprü alanı */
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s;
}

/* Görünmez köprü: fare butondan açılan menüye geçerken kapanmasını tamamen engeller */
.dk-mega::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}

.dk-mega-rich-inner {
  width: 660px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 24px 28px 0 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.dk-mega-rich-svc .dk-mega-rich-inner {
  width: 580px;
}

/* Bölüm Başlığı (Sade & Gri Büyük Harf) */
.dk-mr-section-label {
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #94A3B8;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* Üst Çözüm Kartları (2 Sütunlu) */
.dk-mr-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
}

.dk-mr-card {
  display: flex;
  flex-direction: column;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.18s ease;
}

.dk-mr-card:hover {
  background: #F8FAFC;
}

.dk-mr-card-title {
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 2px;
  transition: color 0.18s ease;
}

.dk-mr-card:hover .dk-mr-card-title {
  color: #193B2F;
}

.dk-mr-card-desc {
  font-size: 12.5px;
  line-height: 1.4;
  color: #64748B;
}

/* Ayırıcı İnce Çizgi */
.dk-mr-divider {
  height: 1px;
  background: #F1F5F9;
  margin: 18px 0;
}

/* Popüler Entegrasyonlar Izgarası */
.dk-mr-popular-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}

.dk-mr-pop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.18s ease;
}

.dk-mr-pop-item:hover {
  background: #F8FAFC;
}

.dk-mr-pop-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.dk-mr-pop-name {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  transition: color 0.18s ease;
}

.dk-mr-pop-item:hover .dk-mr-pop-name {
  color: #0F172A;
}

/* Alt Aksiyon Butonu / Footer Alanı */
.dk-mr-foot {
  margin-top: 20px;
  margin-left: -28px;
  margin-right: -28px;
  margin-bottom: 0;
}

.dk-mr-foot-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  background: #193B2F;
  border-radius: 0 0 19px 19px;
  color: #FFFFFF;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.dk-mr-foot-btn:hover {
  background: #122c23;
  color: #AEDE34;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.12);
}

.dk-mr-foot-btn i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.dk-mr-foot-btn:hover i {
  transform: translateX(4px);
}

/* Menü dış-tık kapama katmanı */
.dk-overlay { display: none; position: fixed; inset: 0; z-index: 40; }
.dk-overlay.is-visible { display: block; }

/* Burger */
.dk-burger {
  align-items: center; justify-content: center; width: 42px; height: 42px; flex: none;
  border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius-btn);
  cursor: pointer; font-size: 19px; color: var(--ink);
}

/* Full-Screen Modern Mobil Menü */
body.dk-menu-open {
  overflow: hidden !important;
  touch-action: none;
}

.dk-mobile-menu {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 9999;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s ease;
}

.dk-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dk-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #E2E8F0;
  flex: none;
  background: #FFFFFF;
}

.dk-mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  color: var(--ink);
  transition: all 0.15s ease;
}

.dk-mobile-close:hover {
  background: #E2E8F0;
}

.dk-mobile-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dk-mobile-label {
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 800;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 14px 6px 8px;
}

.dk-mobile-sep {
  border-top: 1px solid #E2E8F0;
  margin-top: 12px;
  padding-top: 12px;
}

.dk-mobile-link {
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 14px;
  border-radius: 10px;
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.dk-mobile-link:hover,
.dk-mobile-link:active {
  background: #F1F5F9;
  color: var(--forest);
}

.dk-mobile-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  cursor: pointer;
  padding: 12px 14px;
  border-radius: 10px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  transition: all 0.15s ease;
}

.dk-mobile-cat:hover {
  border-color: #CBD5E1;
  background: #F1F5F9;
}

.dk-mobile-cat .dk-caret {
  color: #64748B;
  font-size: 11px;
  transition: transform 0.2s ease;
}

.dk-mobile-cat.is-open {
  background: #FFFFFF;
  border-color: var(--forest);
}

.dk-mobile-cat.is-open .dk-caret {
  transform: rotate(180deg);
  color: var(--forest);
}

.dk-mobile-sub {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 4px 0 10px 12px;
  border-left: 2px solid #E2E8F0;
  margin-left: 14px;
  margin-bottom: 8px;
}

.dk-mobile-cat.is-open + .dk-mobile-sub {
  display: flex;
}

.dk-mobile-sub .dk-mobile-link {
  padding: 9px 12px;
  font-size: 14.5px;
  font-weight: 500;
  color: #475569;
}

.dk-mobile-sub .dk-mobile-link:hover {
  color: var(--forest);
  font-weight: 600;
}

/* ---------- Sticky alt bar (detay sayfaları) ---------- */
.dk-stickybar {
  position: sticky; top: 75px; z-index: 45;
  background: var(--surface); border-bottom: 1px solid var(--border);
}
.dk-stickybar-in {
  max-width: 1440px; margin: 0 auto; padding: 0 32px; height: 54px;
  display: flex; align-items: center; gap: 16px;
}
.dk-detailname { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--ink); white-space: nowrap; }
.dk-tabspacer { flex: 1; }
.dk-tabs { display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.dk-tabs::-webkit-scrollbar { display: none; }
.dk-tab {
  background: transparent; border: none; border-radius: 9px; padding: 8px 13px;
  cursor: pointer; white-space: nowrap; font-family: var(--font-body);
  font-size: 14px; font-weight: 500; color: var(--muted);
  text-decoration: none;
  transition: all 0.15s ease;
}
.dk-tab:hover { color: var(--ink); background: rgba(0, 0, 0, 0.04); }
.dk-tab.is-active { background: var(--accent-soft); font-weight: 700; color: var(--forest); }
.dk-tabpane { display: none; }
.dk-tabpane.is-active { display: block; }

/* ---------- Sticky Bottom Bar (Ürün Detay Alt Sabit Bar) ---------- */
.dk-bottombar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
  padding: 10px 0;
  transition: transform 0.25s ease;
}

.dk-bottombar-in {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dk-bottombar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.dk-bottombar-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  white-space: nowrap;
}

.dk-bottombar-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  color: var(--forest);
  background: var(--accent-soft);
  padding: 3px 9px;
  border-radius: 6px;
  white-space: nowrap;
}

.dk-bottombar-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dk-bottombar-actions {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .dk-bottombar-tabs {
    display: none;
  }
}

/* ---------- Liste kalıpları ---------- */
.dk-check-row {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-row); padding: var(--pad-row);
}
.dk-check-ico {
  width: 28px; height: 28px; flex: none; border-radius: 8px; background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--forest); font-size: 13px; font-family: var(--font-head);
}

.dk-how-row {
  display: flex; gap: 18px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-card); padding: var(--pad-card);
}
.dk-how-n {
  width: 40px; height: 40px; flex: none; border-radius: 50%; background: var(--forest); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 16px;
}

/* Sıkça Sorulan Sorular — Modern Akordeon Kartları */
.dk-faq-list,
.dk-faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.dk-faq-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.dk-faq-card:hover {
  background: #F1F5F9;
  border-color: #CBD5E1;
}

.dk-faq-card.is-open {
  background: #FFFFFF;
  border-color: #0F172A;
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.06);
}

.dk-faq-question {
  width: 100%;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #1E293B;
  user-select: none;
  transition: color 0.2s ease;
}

.dk-faq-card.is-open .dk-faq-question {
  color: #0F172A;
  font-weight: 700;
}

.dk-faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #64748B;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.dk-faq-card.is-open .dk-faq-icon {
  transform: rotate(45deg);
  color: #0F172A;
}

.dk-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}

.dk-faq-card.is-open .dk-faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.dk-faq-answer-inner {
  overflow: hidden;
  padding: 0 18px 16px;
}

.dk-faq-answer-inner p {
  font-size: 14px;
  line-height: 1.6;
  color: #64748B;
  margin: 0;
}

.dk-faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); padding: var(--pad-card); }
.dk-faq-item h3 { font-weight: 700; font-size: 16px; }
.dk-faq-item p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 8px 0 0; }

.dk-int-chip {
  display: flex; align-items: center; gap: 10px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-row); padding: 12px var(--pad-row);
}
.dk-int-chip .dk-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.dk-int-chip span:last-child { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--ink); }

/* ---------- Switch / stepper (konfigüratör + ortak) ---------- */
.dk-switch {
  width: 46px; height: 26px; flex: none; border-radius: 999px; border: none; cursor: pointer;
  padding: 3px; display: flex; justify-content: flex-start; background: var(--border);
  transition: background .15s;
}
.dk-switch.is-on { justify-content: flex-end; background: var(--switch-color, var(--forest)); }
.dk-switch .dk-knob {
  width: 20px; height: 20px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 0 1px rgba(12, 31, 24, .18); display: block;
}

.dk-step-btn {
  width: 32px; height: 32px; flex: none; border-radius: 9px; border: 1px solid var(--border);
  background: var(--bg); cursor: pointer; font-family: var(--font-head); font-weight: 800;
  font-size: 17px; color: var(--ink); line-height: 1;
}
.dk-step-val {
  min-width: 30px; text-align: center; font-family: var(--font-head);
  font-weight: 800; font-size: 17px; color: var(--ink);
}

/* ---------- Form ---------- */
.dk-input {
  width: 100%; padding: 13px 14px; border-radius: var(--radius-btn);
  border: 1px solid var(--border); background: var(--bg);
  font-family: var(--font-body); font-size: 15px; color: var(--ink); outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
/* Odak göstergesi: --accent (#AEDE34) beyaz üzerinde 1.36:1 ile görünmüyordu.
   Koyu metin yeşili + yumuşak halka, WC alanlarıyla aynı dil. */
.dk-input:focus {
  border-color: var(--accent2-text);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* Etiketli alan sarmalayıcı — placeholder tek başına etiket yerine geçmez. */
.dk-field { display: flex; flex-direction: column; }
.dk-label {
  margin-bottom: 6px; font-family: var(--font-body);
  font-size: 13.5px; font-weight: 600; color: var(--ink);
}
.dk-label-opt { font-weight: 400; color: var(--muted); }

/* Bal küpü alanı: bot görür, insan ve ekran okuyucu görmez. */
.dk-hp-field {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ---------- Modern Ultra-Dark Footer (#0A1017) ---------- */
.dk-footer-modern {
  background: #0A1017;
  color: #94A3B8;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.dk-footer-modern .dk-wrap {
  position: relative;
  z-index: 2;
}

/* Üst Blok (Hero + İletişim / Eylem Izgarası) */
.dk-fm-top {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px 64px;
  padding: 84px 0 68px;
  align-items: start;
}

.dk-fm-brand-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.dk-fm-logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.dk-fm-logo-link {
  display: inline-flex;
  align-items: center;
  max-height: 38px;
}

.dk-fm-logo-img {
  height: 34px !important;
  max-height: 34px !important;
  max-width: 170px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block;
}

.dk-fm-partner-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 5px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #E2E8F0;
}

.dk-fm-hero-title {
  font-family: var(--font-head);
  font-size: 46px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -1.4px;
  color: #F8FAFC;
  margin: 0;
}

.dk-fm-highlight {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  color: #FFFFFF;
}

.dk-fm-underline-svg {
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 14px;
  color: #AEDE34;
  overflow: visible;
  pointer-events: none;
}

/* Sağ Bilgi & Eylem Izgarası (Doğal / Kart Olmayan Temiz Tasarım) */
.dk-fm-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
  padding: 0;
  background: none;
  border: none;
}

.dk-fm-info-block {
  display: flex;
  flex-direction: column;
}

.dk-fm-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #64748B;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.dk-fm-info-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: #E2E8F0;
  margin: 0;
}

.dk-fm-hover-link {
  text-decoration: none;
  transition: color 0.2s ease;
}

.dk-fm-hover-link:hover {
  color: #AEDE34;
}

.dk-fm-phone-huge {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

.dk-fm-phone-huge:hover {
  color: #AEDE34;
}

.dk-fm-cta-full {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.dk-fm-cta-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Headerdaki Toplantı Oluştur Butonunun Birebir Beyaz & Tam Genişlik Versiyonu */
.dk-btn-meeting-white {
  background: #FFFFFF;
  color: #000000;
  border-radius: 9999px;
  padding: 13px 20px;
  width: 100%;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border: 1px solid #FFFFFF;
  cursor: pointer;
  line-height: 1.2;
  transition: all .18s ease;
  box-sizing: border-box;
}

.dk-btn-meeting-white:hover {
  background: #E2E8F0;
  color: #000000;
  border-color: #E2E8F0;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.22);
}

/* Footer Hızlı Teklif Al Butonu (Cam/Outline Şık Tasarım) */
.dk-btn-quote-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  border-radius: 9999px;
  padding: 13px 20px;
  width: 100%;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  line-height: 1.2;
  transition: all .18s ease;
  box-sizing: border-box;
}

.dk-btn-quote-outline:hover {
  background: rgba(174, 222, 52, 0.15);
  border-color: #AEDE34;
  color: #AEDE34;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(174, 222, 52, 0.15);
}

@media (max-width: 640px) {
  .dk-fm-cta-buttons {
    grid-template-columns: 1fr;
  }
}

/* Orta Menü & Bülten Alanı */
.dk-fm-middle {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding: 56px 0 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.dk-fm-col-heading {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #F8FAFC;
  margin: 0 0 20px;
}

.dk-fm-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dk-fm-link {
  color: #94A3B8;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.dk-fm-link:hover {
  color: #AEDE34;
  transform: translateX(2px);
}

.dk-fm-subscribe-col {
  display: flex;
  flex-direction: column;
}

.dk-fm-sub-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: #94A3B8;
  margin: 0 0 16px;
}

.dk-fm-subscribe-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  padding: 4px 6px 4px 18px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.dk-fm-subscribe-form:focus-within {
  border-color: #AEDE34;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 14px rgba(174, 222, 52, 0.15);
}

.dk-fm-input {
  flex: 1;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 13.5px;
  outline: none;
  padding: 8px 0;
  font-family: inherit;
}

.dk-fm-input::placeholder {
  color: #64748B;
}

.dk-fm-submit-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #AEDE34;
  border: none;
  color: #0A1017;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.dk-fm-submit-btn:hover {
  background: #FFFFFF;
  transform: scale(1.05);
}

/* Alt Telif & Yasal Satır */
.dk-fm-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  background: rgba(0, 0, 0, 0.2);
}

.dk-fm-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.dk-fm-copyright {
  font-size: 13px;
  color: #64748B;
}

.dk-fm-legal {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.dk-fm-legal a {
  font-size: 12.5px;
  color: #64748B;
  text-decoration: none;
  transition: color 0.2s ease;
}

.dk-fm-legal a:hover {
  color: #AEDE34;
}

/* Mobil / Tablet Uyumluluğu */
@media (max-width: 1024px) {
  .dk-fm-top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 0 48px;
  }

  .dk-fm-hero-title {
    font-size: 36px;
  }

  .dk-fm-middle {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .dk-fm-hero-title {
    font-size: 28px;
  }

  .dk-fm-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .dk-fm-middle {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .dk-fm-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Eski sınıflar için geriye dönük uyumluluk */
.dk-footer { background: #0A1017; color: rgba(255,255,255,.72); }
.dk-foot-brand { display: flex; align-items: center; gap: 10px; }
.dk-logo-mark-sm { width: 32px; height: 32px; border-radius: 9px; }
.dk-logo-text-sm { font-size: 18px; }
.dk-footer .dk-logo-text { color: #fff; }
.dk-foot-tagline { font-size: 14px; line-height: 1.6; margin: 16px 0 0; max-width: 280px; }
.dk-foot-head {
  font-family: var(--font-head); font-weight: 700; font-size: 14px; color: #fff;
  margin-bottom: 14px; background: none; border: none; padding: 0; width: 100%;
  display: flex; align-items: center; justify-content: space-between; text-align: left;
}
.dk-foot-link {
  display: block; background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.72); font-size: 14px; padding: 5px 0; text-align: left;
  font-family: var(--font-body);
}
.dk-foot-link:hover { color: #fff; }
.dk-foot-text { display: block; color: rgba(255,255,255,.72); font-size: 14px; padding: 5px 0; }
.dk-foot-bottom { border-top: 1px solid rgba(255,255,255,.12); }
.dk-foot-bottom-in {
  max-width: 1440px; margin: 0 auto; padding: 20px 32px;
  font-size: 13px; color: rgba(255,255,255,.62);
}
.dk-foot-caret { transition: transform .15s; font-size: 11px; }
.dk-foot-col.is-open .dk-foot-caret { transform: rotate(180deg); }

/* ---------- Doküman sayfaları (yasal metinler) ---------- */
.dk-doc-body { font-size: 15.5px; line-height: 1.75; color: var(--ink); }
.dk-doc-body h2 { font-family: var(--font-head); font-weight: 800; font-size: 21px; letter-spacing: -.4px; margin: 36px 0 12px; }
.dk-doc-body p { margin: 0 0 16px; color: var(--muted); }
.dk-doc-body ul { margin: 0 0 16px; padding-left: 22px; color: var(--muted); }
.dk-doc-body li { margin-bottom: 8px; }
.dk-doc-body a { font-weight: 600; }
.dk-doc-body table { width: 100%; border-collapse: collapse; margin: 0 0 20px; font-size: 14px; }
.dk-doc-body th, .dk-doc-body td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
.dk-doc-body th { background: var(--bg); font-weight: 700; }
.dk-doc-body strong { color: var(--ink); }

/* Split düzen marka paneli: orman zemin üzerinde iki yumuşak marka ışığı. */
.dk-split-brand {
  background:
    radial-gradient(1100px 600px at -10% -10%, rgba(174, 222, 52, .16), transparent 55%),
    radial-gradient(900px 500px at 110% 110%, rgba(130, 183, 53, .14), transparent 55%),
    var(--forest);
}

/* ---------- İkonlar ----------
   Aile: 24×24 ızgara, 1.75px çizgi, currentColor (renk kapsayıcıdan gelir —
   kategori çipleri --chip-color ile çalışmaya devam eder). Kaynak: inc/icons.php.
   Varsayılan ölçü em tabanlıdır; kapsayıcı font-size verdiyse ikon onunla ölçeklenir. */
.dk-icon {
  width: 1.15em; height: 1.15em;
  flex: none; display: block;
}

/* Kapsayıcıya göre sabit ölçüler — çiplerde ikon, kutunun ~%45'i olmalı. */
.dk-chip-lg .dk-icon { width: 22px; height: 22px; }
.dk-chip-md .dk-icon { width: 20px; height: 20px; }
.dk-chip-sm .dk-icon { width: 16px; height: 16px; }
.dk-value-icon .dk-icon { width: 22px; height: 22px; }
.dk-value-icon-lg { width: 48px; height: 48px; border-radius: 13px; }
.dk-value-icon-lg .dk-icon { width: 24px; height: 24px; }
.dk-check-ico .dk-icon { width: 16px; height: 16px; }
.dk-how-n .dk-icon { width: 18px; height: 18px; }
.dk-svc-icon .dk-icon { width: 18px; height: 18px; }
.dk-why-badge .dk-icon { width: 17px; height: 17px; }

/* Arayüz ikonları */
.dk-caret { display: inline-flex; align-items: center; }
.dk-caret .dk-icon { width: 15px; height: 15px; }
.dk-foot-caret .dk-icon { width: 15px; height: 15px; }
.dk-burger .dk-icon { width: 21px; height: 21px; }
.dk-mobile-close .dk-icon { width: 19px; height: 19px; }
.dk-mobile-cat .dk-caret .dk-icon { width: 16px; height: 16px; }

/* Split marka paneli özellik ikonu */
.dk-split-icon {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; flex: none;
  border-radius: 10px;
  background: rgba(174, 222, 52, .15); color: var(--accent);
}
.dk-split-icon .dk-icon { width: 18px; height: 18px; }

/* Eski/yeni model satır işaretleri */
.dk-old-row .dk-x .dk-icon,
.dk-new-row .dk-check .dk-icon { width: 18px; height: 18px; }
.dk-oldnew-arrow .dk-icon { width: 24px; height: 24px; }
.dk-demo-success-icon .dk-icon { width: 30px; height: 30px; }
.dk-inc-icon .dk-icon { width: 20px; height: 20px; }
.dk-other-svc-icon .dk-icon { width: 18px; height: 18px; }

/* Satır içi ikonlar: metinle aynı hizada, iki yanında tek boşluk.
   Ok/geri linklerinde glif yerine ikon kullanılır — hizası ve ölçüsü tahmin edilebilir olsun. */
.dk-arrow-link,
.dk-back-link,
.dk-quote-cta,
.dk-inline-arrow,
.dk-secure-note {
  display: inline-flex; align-items: center; gap: 6px;
}
.dk-arrow-link .dk-icon,
.dk-back-link .dk-icon,
.dk-quote-cta .dk-icon,
.dk-inline-arrow .dk-icon { width: 15px; height: 15px; }
.dk-secure-note .dk-icon { width: 15px; height: 15px; }

/* Sayfalama ok ikonları (WP paginate_links çıktısı) */
.dk-pagination .dk-icon { width: 15px; height: 15px; vertical-align: -2px; }

/* Adım göstergesinde tamamlanmış adım onayı */
.dk-step-done .dk-icon,
.dk-steps .dk-icon { width: 13px; height: 13px; }

/* Paket özelliği onay işareti */
.dk-feat-check {
  display: inline-flex; align-items: center; flex: none;
  margin-top: 2px; color: var(--accent2-text);
}
.dk-feat-check .dk-icon { width: 15px; height: 15px; }

/* Sayfa başlığının üst-etiketten sonraki boşluğu.
   NOT: h1'e `mt-*` utility'si YAZMA — base.css reset'i katmansız olduğu için
   Tailwind'in katmanlı utility'sini yener ve değer sessizce yok sayılır. */
.dk-h1-spaced { margin-top: 10px; }

/* "Nasıl çalışır" adım başlığı — numara dairesiyle optik hizalama.
   h3'e `mt-*` utility'si çalışmaz (bkz. .dk-h1-spaced notu). */
.dk-how-title { margin-top: 6px; }

/* Split panel marka kilidi (ödeme + hesap). Header 34px, footer 32px, burada 36px. */
.dk-logo-mark-md { width: 36px; height: 36px; border-radius: 11px; font-size: 18px; }
.dk-logo-text-md { font-size: 20px; color: #fff; }
