@charset "UTF-8";
/* =========================
   Renk Değişkenleri
========================= */
/* === Brand (turuncu + beyaz) + accent === */
/* =========================
   Navbar
========================= */
/* modern-header tarzı: her zaman cam (blur) + yarı saydam beyaz */
:root {
  --nav-h: 72px;
}

.pay-navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  height: var(--nav-h);
  padding-block: 1.2rem;
  /* #ffffff4d = rgba(255,255,255,0.30) */
  background-color: rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  /* cam/blur */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.25s ease, backdrop-filter 0.25s ease, -webkit-backdrop-filter 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  /* Backdrop desteklemeyen tarayıcılar için okunabilirlik */
}
@supports not ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  .pay-navbar {
    background-color: rgba(255, 255, 255, 0.85);
  }
}

/* Scroll’da biraz koyulaştır (opsiyonel) */
.pay-navbar.is-scrolled {
  background-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pay-navbar {
  --brand-size: 40px;
}

.pay-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-block: 0.25rem;
  line-height: 1;
}

.pay-navbar .navbar-brand .brand-logo {
  height: var(--brand-size);
  display: block;
  -o-object-fit: contain;
     object-fit: contain; /* jpg kare değilse taşmayı düzgün kırpar */
  border-radius: 0%; /* köşeleri hafif yumuşat – tam daire istersen 50% yap */
  image-rendering: auto;
  transition: transform 0.15s ease, opacity 0.2s ease;
  filter: brightness(0);
}

.pay-navbar .navbar-brand:hover .brand-logo {
  transform: translateY(-1px); /* çok hafif hover efekti */
}

.pay-navbar.scrolled .navbar-brand .brand-logo {
  filter: invert(61%) sepia(88%) saturate(2409%) hue-rotate(359deg) brightness(98%) contrast(105%);
}

/* ====== NAV / MEGA — MOBİL (<=991.98px) ====== */
/* =========================
   Segment Link Görünümü
========================= */
.seg-link {
  padding: 0.5rem 1rem;
  font-weight: 700;
  color: #000;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  margin-right: 0.5rem;
}
.seg-link:hover {
  color: #ff6200; /* Turuncu renk */
  text-decoration: none; /* Altı çizgili olmamasını sağlar */
}

/* =========================
   Mega Dropdown
========================= */
.dropdown.mega {
  position: static;
}

/* Mega Dropdown – OPak yüzey, arkası görünmesin */
.dropdown.mega > .dropdown-menu {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 2100;
  background-color: #0b0f16;
  color: #000;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  mix-blend-mode: normal;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dropdown.mega:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-link.sanal-pos:hover + .dropdown-menu,
.nav-link.online-islemler:hover + .dropdown-menu,
.nav-link.iletisim:hover + .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Sadece fare/hover olan cihazlarda hover ile aç */
@media (hover: hover) and (pointer: fine) {
  .dropdown.mega:hover > .dropdown-menu,
  .dropdown.mega > .nav-link:hover + .dropdown-menu,
  .dropdown.mega > .nav-link:focus + .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
/* Sadece dropdown'lı item (Business) için sağa minik ok */
.pay-navbar .dropdown.mega > .nav-link {
  position: relative;
}

/* yan chevron */
.pay-navbar .dropdown.mega > .nav-link::after {
  content: "▾"; /* küçük caret */
  display: inline-block;
  margin-left: 6px;
  font-size: 0.85em; /* metinden biraz küçük */
  line-height: 1;
  color: currentColor; /* metin rengiyle aynı */
  opacity: 0.55;
  transform: translateY(-1px); /* hizalamayı düzelt */
  transition: opacity 0.15s ease, transform 0.15s ease;
}

/* hover/açıkken biraz belirginleşsin */
.pay-navbar .dropdown.mega:hover > .nav-link::after,
.pay-navbar .dropdown.mega.show > .nav-link::after,
.pay-navbar .dropdown.mega > .nav-link:focus-visible::after {
  opacity: 0.95;
  transform: translateY(-2px);
}

/* menü açıkken yukarı baksın */
.pay-navbar .dropdown.mega.show > .nav-link::after {
  content: "▴";
}

.pay-navbar .dropdown.mega > .dropdown-menu {
  position: absolute;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 100vw;
  border-radius: 0;
}

/* Mega dropdown koyu tema kontrast düzeltmesi */
.pay-navbar .dropdown.mega > .dropdown-menu {
  background-color: #0b0e14; /* koyu zemin */
  color: #fff; /* genel metin rengi */
}

.pay-navbar .mega-dropdown .menu-heading {
  color: #ff8a3d !important; /* başlık – markanın turuncusu gibi bir vurgu */
}

.pay-navbar .mega-dropdown .left-link,
.pay-navbar .mega-dropdown .mega-item {
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none;
}

.pay-navbar .mega-dropdown .left-link:hover,
.pay-navbar .mega-dropdown .mega-item:hover {
  color: #ff8a3d !important;
}

.mega-dropdown::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

.mega-dropdown .menu-heading {
  color: #cc5200;
  font-weight: bold;
}

.mega-dropdown .left-link {
  color: #000;
  text-decoration: none;
}
.mega-dropdown .left-link:hover {
  color: #ff6600;
}

.mega-dropdown .mega-item {
  display: block;
  padding: 0.25rem 0;
  color: #000;
}
.mega-dropdown .mega-item:hover {
  color: #ff6600;
}

/* Aside kart uyumu */
.mega-dropdown .aside-card {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mega-dropdown .aside-title {
  color: #cc5200;
}

.mega-dropdown .btn-outline-light {
  color: #cc5200;
  border-color: #cc5200;
}
.mega-dropdown .btn-outline-light:hover {
  background-color: #ff6600;
  color: #ffffff;
}

.mega-dropdown::before {
  height: 20px;
}

/* Sadece link hover olduğunda menü açılsın */
.dropdown.mega > .nav-link:hover + .dropdown-menu,
.dropdown.mega > .nav-link:focus + .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 28px;
}

/* 3 kolon: SOL / ORTA / SAĞ   */
.mega-grid {
  display: grid;
  grid-template-columns: 360px 1fr 420px; /* sol / orta / sağ */
  grid-template-areas: "left mid aside";
  -moz-column-gap: 32px;
       column-gap: 32px;
  align-items: start;
}

.col-left {
  grid-area: left;
}

.col-mid {
  grid-area: mid;
}

.col-aside {
  grid-area: aside;
  place-self: start end; /* üste ve sağa hizala */
}

.col-left::after,
.col-mid::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.15) 15%, rgba(255, 255, 255, 0.15) 85%, transparent);
}

/* =========================
   Aside Card
========================= */
.aside-card {
  width: 100%;
  max-width: 420px;
  min-height: 240px;
  /* Şeffaf koyu taban + hafif turuncu parıltı */
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.06) 0%, rgba(23, 28, 32, 0.6) 30%, rgba(23, 28, 32, 0.4) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* Yumuşak gölge ve iç parlama */
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #ffffff;
  /* Kart kenarına turuncu “glow” halkası */
  position: relative;
  /* Hover’da hafif yükselme ve vurgu */
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}
.aside-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(255, 102, 0, 0.25), 0 0 24px rgba(255, 102, 0, 0.15);
}
.aside-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.08) 0%, rgba(23, 28, 32, 0.62) 35%, rgba(23, 28, 32, 0.45) 100%);
}

.aside-card--sm {
  max-width: 360px;
  min-height: 200px;
  padding: 18px;
  border-radius: 16px;
}

.aside-card--accent {
  border-color: rgba(255, 102, 0, 0.35);
}
.aside-card--accent::after {
  box-shadow: 0 0 0 1px rgba(255, 102, 0, 0.45), 0 0 28px rgba(255, 102, 0, 0.22);
}

.aside-card .aside-img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 12px;
}

.aside-card {
  max-width: 240px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

/* Genişlik = kart içi - iki kenar boşluğu */
.aside-card :is(img, .aside-img) {
  display: block;
  width: calc(100% - 2 * 12px) !important;
  margin: 8px 12px 0 !important;
  aspect-ratio: 16/10;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: none !important;
  max-height: none !important;
  border-radius: 14px;
}

.aside-card__title {
  margin: 0;
  text-align: center;
  font-weight: 800;
  line-height: 1.25;
  font-size: clamp(16px, 1.2vw + 12px, 22px);
  color: #ffffff;
}

.aside-card__btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid rgba(255, 102, 0, 0.9);
  color: rgba(255, 102, 0, 0.95);
  background: transparent;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.aside-card__btn:hover {
  background: rgba(255, 102, 0, 0.1);
  box-shadow: 0 6px 18px rgba(255, 102, 0, 0.18);
  transform: translateY(-1px);
}
.aside-card__btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.aside-body {
  padding: 14px;
  text-align: center;
}

.aside-title {
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.25;
}

/* =========================
   Menü Başlık & Linkler
========================= */
.menu-heading {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.mega-left .left-link {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  padding: 0.6rem 0;
  color: #ffffff;
  opacity: 0.8;
  text-decoration: none;
  transition: 0.2s;
}
.mega-left .left-link:hover {
  opacity: 1;
}
.mega-left .left-link.active {
  position: relative;
  color: #ffffff;
}
.mega-left .left-link.active::after {
  content: "→";
  color: #ffffff;
  margin-left: 0.6rem;
  font-weight: 900;
}

.right-panels .panel {
  display: none;
}

.right-panels .panel.active {
  display: grid;
  gap: 0.5rem;
}

.mega-item {
  display: inline-block;
  padding: 0.6rem 0;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  opacity: 0.95;
}
.mega-item:hover {
  color: #ffffff;
}

/* =========================
   CTA Butonlar
========================= */
/* Marka turuncusu; sende varsa kendi $brand değişkenini kullan */
/* İletişim & Giriş Yap (ghost) */
.btn-ghost-cta {
  background: transparent;
  color: #111;
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-weight: 700;
  box-shadow: none;
  transition: color 0.2s ease;
}
.btn-ghost-cta:hover, .btn-ghost-cta:focus {
  color: #ff6600; /* hover’da turuncu yazı */
  background: transparent;
  border: none;
  box-shadow: none;
  text-decoration: none;
}

/* Hesap Oluştur (btn btn-primary get-account-cta) */
.pay-navbar .btn-primary.get-account-cta {
  /* Bootstrap değişkenlerini tamamen şeffaf ve border-sız yap */
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-color: #111;
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-hover-color: #ff6600;
  --bs-btn-active-bg: transparent;
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-color: #ff6600;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-disabled-color: #111;
  background: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
  color: var(--bs-btn-color);
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  font-weight: 700;
  box-shadow: none;
  filter: none;
  transition: color 0.2s ease;
}
.pay-navbar .btn-primary.get-account-cta:hover, .pay-navbar .btn-primary.get-account-cta:focus {
  background: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  color: var(--bs-btn-hover-color);
  box-shadow: none;
  text-decoration: none;
}

/* İsteğe bağlı: erişilebilir hafif focus yüzüğü */
.pay-navbar .btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

/* Hamburger'ı koyu yap ve üste al */
.pay-navbar .navbar-toggler {
  border: 0;
  outline: 0;
  z-index: 2200; /* overlay üstünde */
}

.pay-navbar .navbar-toggler-icon {
  width: 1.75rem;
  height: 1.75rem;
  background-size: 100% 100%;
  /* siyah hamburger (Bootstrap'ın beyazını override) */
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

/* =========================
   Defaults / Tokens
========================= */
:root {
  --nav-h: 72px; /* desktop navbar height */
  --radius: 16px;
  --radius-sm: 12px;
  --bg-overlay: #0b0e14; /* overlay zemin */
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.64);
  --stroke: rgba(255, 255, 255, 0.16);
  --accent: #ff6b00; /* "Get account" butonu rengi */
  --pill-bg: #232831; /* segment pasif arka planı */
  --pill-active-bg: #2b3039; /* segment aktif arka planı */
  --pill-active-color: #cfe589; /* segment aktif yazı (yeşilimsi) */
}

/* =========================
   Base navbar bits
========================= */
.pay-navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  height: var(--nav-h);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pay-navbar .seg-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pay-navbar .navbar-toggler {
  border: 0;
  outline: 0;
  z-index: 2200;
}

.pay-navbar .navbar-toggler-icon {
  width: 1.75rem;
  height: 1.75rem;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,.9)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

body.nav-scroll-locked {
  position: fixed; /* sayfayı sabitle */
  inset: 0;
  width: 100%;
  overflow: hidden; /* Android */
  touch-action: none; /* iOS overscroll azaltır */
}

/* =========================
   MOBILE (≤991.98px)
========================= */
@media (max-width: 991.98px) {
  /* ==== NAVBAR KABUĞU & GENEL ==== */
  .pay-navbar {
    height: auto !important;
    align-items: stretch !important;
    flex-wrap: wrap !important;
    width: 100% !important;
  }
  .pay-navbar .navbar-collapse.show,
  .pay-navbar .navbar-collapse.collapsing {
    position: fixed;
    inset: var(--nav-h) 0 0 0; /* header’dan sonrası */
    max-height: calc(100dvh - var(--nav-h)); /* sadece navbar alanı */
    overflow-y: auto; /* sadece navbar kayar */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .pay-navbar,
  .pay-navbar * {
    box-sizing: border-box;
  } /* padding yok */
  html,
  body {
    overflow-x: hidden;
  }
  /* Mega layout tek kolona */
  .pay-navbar .mega-grid {
    display: block !important;
  }
  .pay-navbar .col-left,
  .pay-navbar .col-mid {
    border-right: none !important;
    padding: 0 !important;
  }
  .pay-navbar .col-aside {
    display: none !important;
  }
  /* Genişlik %100 kalsın */
  .pay-navbar .container,
  .pay-navbar .navbar,
  .pay-navbar .navbar-collapse {
    width: 100% !important;
    max-width: 100% !important;
  }
  /* ==== COLLAPSE OVERLAY ==== */
  .pay-navbar .navbar-collapse {
    position: fixed !important;
    inset: var(--nav-h, 64px) 0 0 0 !important; /* header’dan başlat */
    height: calc(100dvh - var(--nav-h, 64px)) !important;
    max-height: none !important;
    overflow-y: auto !important;
    background: var(--bg-overlay);
    color: var(--text);
    padding: 16px !important;
    z-index: 2100;
    opacity: 1;
    transition: none !important;
    padding-top: 25px !important;
  }
  .pay-navbar .navbar-collapse.collapsing {
    position: fixed !important;
    inset: var(--nav-h, 64px) 0 0 0 !important;
    height: calc(100dvh - var(--nav-h, 64px)) !important;
    overflow-y: auto !important;
    opacity: 1;
    transition: none !important;
  }
  .pay-navbar .navbar-collapse.show {
    display: block !important;
  }
  /* Güvenli bölge (çentik) */
  @supports (padding: max(0px)) {
    .pay-navbar .navbar-collapse {
      padding-left: max(16px, env(safe-area-inset-left)) !important;
      padding-right: max(16px, env(safe-area-inset-right)) !important;
    }
  }
  /* Bootstrap nav-scroll helper kapalı */
  .pay-navbar .navbar-nav-scroll {
    max-height: none !important;
    overflow: visible !important;
  }
  .pay-navbar .navbar-nav,
  .pay-navbar .mega-grid {
    overflow: visible !important;
    max-height: none !important;
  }
  /* ==== ÜSTTEKİ 3 CTA BUTONU (İletişim/Giriş/Hesap) ==== */
  #mainNav > .d-flex.align-items-lg-center.gap-2 {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin: 8px 0 16px !important;
    width: 100% !important;
  }
  #mainNav > .d-flex.align-items-lg-center.gap-2 .btn {
    width: 100% !important;
    border-radius: var(--radius);
    padding: 14px 16px;
    font-weight: 700;
    font-size: 1.05rem;
  }
  #mainNav > .d-flex.align-items-lg-center.gap-2 .btn-ghost-cta {
    background: transparent;
    border: 1px solid var(--stroke);
    color: var(--text) !important;
  }
  #mainNav > .d-flex.align-items-lg-center.gap-2 .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }
  /* ==== SEGMENT (Business / Personal) – mevcut HTML ile ==== */
  /* Mobile segmented (Business / Personal) – boşluk YOK */
  .mobile-seg {
    display: flex !important;
    flex-direction: column; /* üst üste */
    gap: 0 !important; /* satırlar arası boşluk yok */
    margin: 0 !important; /* dış boşluk yok */
    width: 100%;
    padding: 0 8px; /* sadece yatay padding kalsın */
  }
  .mobile-seg .seg {
    flex: 1 1 auto;
    display: block;
    min-width: 0;
    text-align: center;
    padding: 7px 14px;
    white-space: nowrap;
    border-radius: var(--radius);
    font-weight: 700;
    background: var(--pill-bg);
    color: var(--muted);
    border: 1px solid transparent;
    margin: 0 !important; /* iç elemanlarda da margin olmasın */
  }
  /* İkinci seg’in üst boşluğu da kesin sıfırlansın */
  .mobile-seg .seg + .seg {
    margin-top: 0 !important;
  }
  .mobile-seg .seg.active {
    background: var(--pill-active-bg);
    color: var(--pill-active-color);
    box-shadow: inset 0 0 0 1px var(--stroke);
  }
  /* ==== Liste & Link tipografisi ==== */
  .menu-label {
    margin: 6px 8px 10px;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .menu-list {
    list-style: none;
    padding: 0 8px;
    margin: 0 0 14px;
  }
  .menu-list li {
    margin: 10px 0;
  }
  .menu-list a {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.25rem;
    line-height: 1.25;
    padding: 6px 0;
  }
  .menu-list a:hover {
    color: #fff;
  }
  /* Varsayılan kısa linkler */
  #mainNav > ul.navbar-nav {
    display: block !important;
    margin: 6px 0 12px;
  }
  #mainNav > ul.navbar-nav .nav-link {
    color: #fff !important;
    padding: 10px 8px;
    font-size: 1.05rem;
  }
  /* ==== MEGA DROPDOWN'u mobilde blokla (Bootstrap caret'i kapat) ==== */
  .pay-navbar .dropdown.mega > .nav-link::after {
    display: none;
  }
  .pay-navbar .dropdown.mega .dropdown-menu {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    display: none !important; /* Menü DOM’da sürekli var */
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    width: auto;
    max-width: none;
    margin: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .pay-navbar .dropdown.mega.show .dropdown-menu {
    display: block !important;
    padding: 10px !important; /* burada padding SIFIR olmasın */
  }
  .pay-navbar .dropdown.mega .dropdown-menu,
  .pay-navbar .dropdown.mega.show .dropdown-menu {
    display: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .pay-navbar .dropdown.mega .dropdown-menu::before,
  .pay-navbar .dropdown.mega .dropdown-menu::after {
    content: none !important;
  }
  .pay-navbar .navbar-collapse li.dropdown.mega + li {
    margin-top: 9px !important;
  } /* boşluk business/personal */
  /* ====== Business yanında küçük ok (dropdown göstergesi) ====== */
  .pay-navbar .dropdown.mega > .nav-link i,
  .pay-navbar .dropdown.mega > .nav-link .icon {
    display: none;
  } /* varsa */
  .pay-navbar .dropdown.mega > .nav-link::before {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg); /* kapalıyken sağ-aşağı */
    opacity: 0.95;
    transition: transform 0.18s ease;
  }
  .pay-navbar .dropdown.mega.show > .nav-link::before,
  .pay-navbar .dropdown.mega > .nav-link[aria-expanded=true]::before {
    transform: translateY(-50%) rotate(-135deg); /* açılınca yukarı-basa */
  }
  /* ============================================================
     *** ASIL İSTENEN DAVRANIŞ ***
     Business'a tıklayınca (dropdown .show):
     SADECE "BUSINESS ACCOUNT" etiketi + ilk 3 başlık görünsün.
     Diğer her şey gizli.
     HTML'e dokunmadan yaptığımız için,
     .dropdown-menu içeriğini varsayılan gizli tutuyor,
     .show varken "ilk label + hemen ardındaki liste"yi gösteriyoruz.
     ============================================================ */
  /* 0) Varsayılan: mega içeriğini gizle (mobilde boş dursun) */
  .pay-navbar .dropdown.mega .dropdown-menu .col-left > *,
  .pay-navbar .dropdown.mega .dropdown-menu .col-mid,
  .pay-navbar .dropdown.mega .dropdown-menu .col-aside {
    display: none !important;
  }
  /* 1) Business AÇILDIĞINDA: sadece ilk label + onu izleyen ilk liste açılsın */
  .pay-navbar .dropdown.mega.show .dropdown-menu .col-left > .menu-label:first-of-type,
  .pay-navbar .dropdown.mega.show .dropdown-menu .col-left > .menu-label:first-of-type + .menu-list {
    display: block !important;
  }
  /* 2) Fallback – markup farklıysa: (kolon sarmalayıcı yoksa da çalışsın) */
  .pay-navbar .dropdown.mega.show .dropdown-menu > .menu-label:first-of-type,
  .pay-navbar .dropdown.mega.show .dropdown-menu > .menu-label:first-of-type + .menu-list {
    display: block !important;
  }
  /* 3) 3 başlığın tipografisini biraz daha vurgula */
  .pay-navbar .dropdown.mega.show .dropdown-menu .menu-label:first-of-type {
    margin-top: 4px;
  }
  .pay-navbar .dropdown.mega.show .dropdown-menu .menu-label:first-of-type + .menu-list a {
    font-size: 1.35rem;
    padding: 8px 0;
  }
}
/* ===== GLOBAL: desktop’ta görünmesin, bullet yok ===== */
#biz-sub-panel,
#biz-pos-subpanel,
#biz-online-subpanel {
  display: none !important;
}

.mobile-seg {
  list-style: none;
  margin: 0;
  padding: 0;
}

#biz-sub-panel .menu-list,
#biz-online-subpanel .menu-list,
#biz-pos-subpanel .menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

#biz-sub-panel .menu-list a,
#biz-online-subpanel .menu-list a,
#biz-pos-subpanel .menu-list a {
  text-decoration: none;
  color: inherit;
}

/* ===== MOBİL ===== */
@media (max-width: 991.98px) {
  /* Business pill caret */
  .seg--business {
    position: relative;
    display: flex; /* metni kutu içinde ortala */
    align-items: center;
    justify-content: center;
    padding: 8px 44px !important; /* SOL = SAĞ eşit */
    text-align: center;
    cursor: pointer;
  }
  .seg--business::after {
    right: 16px;
  } /* ok sağ boşlukta kalsın */
  .seg--business::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 0.6rem;
    height: 0.6rem;
    pointer-events: none;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.18s ease;
  }
  .seg--business.is-open::after {
    transform: translateY(-50%) rotate(-135deg);
  }
  /* 1. panel (Business → 3 başlık) */
  #biz-sub-panel.biz-sub.show {
    display: block !important;
  }
  #biz-sub-panel {
    padding: 8px 8px 0;
  }
  #biz-sub-panel .menu-label {
    margin: 6px 8px 6px;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
  }
  #biz-sub-panel .menu-list {
    padding: 0 8px;
    margin: 0 0 8px;
  }
  #biz-sub-panel .menu-list li {
    margin: 10px 0;
  }
  #biz-sub-panel .menu-list a {
    display: block;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.25rem;
    line-height: 1.25;
    padding: 8px 0;
  }
  #biz-sub-panel .menu-list a:hover {
    color: #fff;
  }
  /* alt menü açan linklerde caret */
  #biz-sub-panel .menu-list a.has-caret {
    position: relative;
    padding-right: 28px;
  }
  #biz-sub-panel .menu-list a.has-caret::after {
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    width: 0.5rem;
    height: 0.5rem;
    opacity: 0.9;
    pointer-events: none;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.18s ease;
  }
  #biz-sub-panel .menu-list a.has-caret.is-open::after {
    transform: translateY(-50%) rotate(-135deg);
  }
  /* 2. ve 3. panel (POS ve Online altı) ortak stil */
  #biz-pos-subpanel.biz-sub2.show,
  #biz-online-subpanel.biz-sub2.show {
    display: block !important;
  }
  #biz-pos-subpanel,
  #biz-online-subpanel {
    display: none;
    padding: 0 8px 8px;
    margin-left: 8px;
    border-left: 1px solid var(--stroke, rgba(255, 255, 255, 0.12));
  }
  #biz-pos-subpanel .menu-list,
  #biz-online-subpanel .menu-list {
    padding-left: 12px;
  }
  #biz-pos-subpanel .menu-list li,
  #biz-online-subpanel .menu-list li {
    margin: 10px 0;
  }
  #biz-pos-subpanel .menu-list a,
  #biz-online-subpanel .menu-list a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.12rem;
    line-height: 1.2;
    padding: 6px 0;
  }
  .pay-navbar .navbar-collapse .mobile-seg {
    display: flex !important;
    flex-direction: column; /* üst üste */
    gap: 0 !important; /* satırlar arası boşluk yok */
    row-gap: 0 !important;
    -moz-column-gap: 0 !important;
         column-gap: 0 !important;
    margin: 0 !important; /* dış boşluk yok */
    padding: 0 8px; /* sadece yatay padding */
    width: 100%;
  }
  /* İç elemanların marginlerini de sıfırla (utility sınıflarını da ezer) */
  .pay-navbar .navbar-collapse .mobile-seg > *,
  .pay-navbar .navbar-collapse .mobile-seg [class*=mt-],
  .pay-navbar .navbar-collapse .mobile-seg [class*=mb-],
  .pay-navbar .navbar-collapse .mobile-seg [class*=my-] {
    margin: 0 !important;
  }
  .pay-navbar .navbar-collapse .mobile-seg .seg {
    display: block !important;
    width: 100% !important;
    min-width: 0;
    text-align: center;
    padding: 7px 14px;
    line-height: 1.15;
    white-space: nowrap;
    border-radius: var(--radius);
    font-weight: 700;
    background: var(--pill-bg);
    color: var(--muted);
    border: 1px solid transparent;
  }
  .pay-navbar .navbar-collapse .mobile-seg .seg + .seg {
    gap: 6.5px !important;
    row-gap: 6.5px !important;
  }
  /* Business oku biraz içerde kalsın */
  .seg--business {
    padding-right: 44px !important;
  }
  .seg--business::after {
    right: 20px;
  }
  /* Panel kapalıyken hiç yer kaplamasın */
  .seg--business + #biz-sub-panel:not(.show) {
    display: block;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
  }
}
/* === Hero alanı === */
.hero {
  padding: 80px 0;
  background: #0b0f16;
  color: #ffffff;
}

/* Grid düzeni */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 991.98px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: clamp(16px, 4vw, 28px);
  }
}

/* Sol taraf yazılar */
.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
}
.hero-copy h1 .high {
  color: #bfc5d1;
}
.hero-copy h1 .accent {
  color: #ff6b00;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 20px 0 30px;
  max-width: 500px;
}

/* Butonlar */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.hero-ctas .btn-brand {
  background: linear-gradient(135deg, #ff6600, #cc5200);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.4);
  transition: all 0.3s ease;
}
.hero-ctas .btn-brand:hover {
  background: linear-gradient(135deg, rgb(229.5, 92.25, 0), rgb(229.5, 91.8, 0));
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 102, 0, 0.5);
}
.hero-ctas .btn-ghost {
  background: transparent;
  border: 2px solid #ff6600;
  color: #ff6600;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.hero-ctas .btn-ghost:hover {
  background: #ff6600;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 102, 0, 0.4);
}

.hero-art {
  position: relative;
  min-height: clamp(280px, 40vw, 540px);
  perspective: 1400px;
  isolation: isolate;
}

.hero-art .panel {
  position: absolute;
  inset: 0;
  margin: auto;
  width: clamp(210px, 32vw, 380px);
  height: clamp(290px, 42vw, 520px);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  animation: float 6s ease-in-out infinite;
  overflow: hidden;
  /* Yansıma efekti */
}
.hero-art .panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.15), transparent 70%);
  mix-blend-mode: overlay;
}

/* Hover ile 3D hareket */
.hero-art:hover .panel.mid {
  transform: translateZ(80px) rotateY(4deg) rotateX(2deg);
  transition: transform 0.4s ease;
}

.hero-art .panel.left {
  transform: rotateY(26deg) rotateZ(-2deg) translateX(-46%) translateY(6%);
  filter: brightness(0.9) saturate(0.9);
  animation-delay: -0.8s;
}

.hero-art .panel.right {
  transform: rotateY(-26deg) rotateZ(2deg) translateX(46%) translateY(8%);
  filter: brightness(0.9) saturate(0.9);
  animation-delay: -1.6s;
}

.hero-art .panel.mid {
  transform: translateZ(60px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 20px;
}

.credit-card {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
}
.credit-card .card-reflection {
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.15), transparent 60%);
  transition: transform 0.4s ease;
}
.credit-card .chip {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 30px;
  background: linear-gradient(135deg, gold, goldenrod);
  border-radius: 6px;
}
.credit-card .logo {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle at center, orange, darkorange);
  border-radius: 50%;
}
.credit-card .card-number {
  position: absolute;
  bottom: 60px;
  left: 20px;
  font-size: 1.2rem;
  letter-spacing: 3px;
  color: #ffffff;
}
.credit-card .card-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  justify-content: space-between;
  width: calc(100% - 40px);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
}

.panel.mid:hover .credit-card {
  transform: rotateY(5deg) rotateX(3deg);
}

.panel.mid:hover .credit-card .card-reflection {
  transform: translateX(30%);
}

/* QR'ı ortaya al ve şıklaştır */
.qr-wrap {
  --qr-size: 128px;
  --accent: #ff7a22;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 110px; /* butonun üstünde kalır; gerekirse 90–140 arası oyna */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 12px 8px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  z-index: 5;
}

/* küçük bir vurgu çerçevesi */
.qr-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 0 2px rgba(255, 122, 34, 0.18) inset;
}

.qr-wrap .qr {
  width: var(--qr-size);
  height: var(--qr-size);
  image-rendering: pixelated; /* küçük boyutta net görünür */
}

.qr-wrap small {
  color: #fff;
  opacity: 0.9;
  font-size: 0.82rem;
  letter-spacing: 0.2px;
}

.qr-wrap:hover {
  transform: translateX(-50%) translateY(-1px);
}

/* Mobilde biraz küçült, butondan daha yukarı al */
@media (max-width: 575.98px) {
  .qr-wrap {
    display: none;
  }
}
/* tablet + mobilin hepsinde gizle */
@media (max-width: 991.98px) {
  .qr-wrap {
    display: none !important;
  }
}
.pay-btn {
  margin-top: 20px;
  padding: 10px 20px;
  background: linear-gradient(90deg, orange, darkorange);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.5);
  transition: box-shadow 0.3s ease;
}

.pay-btn:hover {
  box-shadow: 0 0 25px rgba(255, 140, 0, 0.8);
}

/* Hafif yüzen animasyon */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
/* Orta panel iç detayları (basit şekiller) */
.panel.mid .badge {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ff6b00;
  color: #0c1118;
  display: grid;
  place-items: center;
  font-weight: 900;
  filter: drop-shadow(0 10px 25px rgba(198, 255, 46, 0.35));
}

.panel.mid .chip {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 68px;
  height: 68px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.panel.mid .bar {
  width: 70%;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  margin: 10px 0;
}

.panel.mid .bar-lg {
  height: 18px;
  width: 80%;
}

.panel.mid .pay-btn {
  margin-top: auto;
  align-self: end;
  justify-self: center;
  padding: 12px 18px;
  border-radius: 12px;
  background: #ff6600;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(255, 102, 0, 0.35);
}

/* Responsive */
@media (max-width: 991.98px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    text-align: left;
    margin: 32px;
  }
  .hero-art {
    order: -1;
    margin-bottom: 18px;
  }
  .btn-ghost {
    margin-left: 10px;
  }
  .hero-art .panel {
    height: auto !important;
    min-height: clamp(240px, 42vh, 340px) !important; /* kısaltıldı */
    padding: 18px 16px 26px !important;
    box-sizing: border-box;
  }
  /* İç ızgara: buton en alta otursun */
  .hero-art .panel.mid {
    grid-template-rows: auto 1fr auto;
    row-gap: 12px;
  }
  /* Buton: daha küçük ve sığacak şekilde */
  .panel.mid .pay-btn {
    align-self: center !important;
    width: min(70%, 260px);
    max-width: 260px;
    padding: 8px 14px !important;
    font-size: 0.9rem !important;
    line-height: 1.1;
    border-radius: 10px !important;
    margin: 6px 0 0 !important;
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.28) !important;
  }
}
@media (max-width: 575.98px) {
  .hero-art .panel {
    min-height: clamp(240px, 42vh, 340px) !important;
    padding-bottom: 20px !important;
  }
  .qr-wrap {
    display: none !important;
  }
}
/* SADE YÜKSEKLİK AYARI — sadece panel */
@media (max-width: 575.98px) {
  /* mobil */
  .hero-art .panel {
    min-height: 350px !important;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  /* tablet */
  .hero-art .panel {
    min-height: 380px !important;
  }
}
@media (hover: none), (pointer: coarse) {
  .qr-wrap {
    display: none !important;
  }
}
/* İstersen: yalnızca gerçek desktoplarda (mouse/hover) göster */
@media (hover: hover) and (pointer: fine) and (min-width: 992px) {
  .qr-wrap {
    display: flex !important;
  } /* senin kullandığın display tipine göre flex/block */
}
/* ===== Feature Strips ===== */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.feature-strips {
  background-color: #fff;
  color: #000;
  padding: 60px 0;
  z-index: 1;
}

.feature-strips .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.strip,
.strip.strip--alt {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 24px); /* küçük sabit boşluk */
  align-items: center;
  padding-block: clamp(28px, 4vw, 44px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.strip:last-child {
  border-bottom: 0;
}

/* Alternatif hizalama */
.strip--alt .strip__txt {
  order: 2;
}

.strip--alt .strip__media {
  order: 1;
}

.strip__title {
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.15;
  margin: 0 0 12px;
  color: #000; /* Siyah başlık */
}

.strip__title .accent {
  color: #ff6600; /* turuncu vurgulu kelime */
}

.strip__lead {
  color: #333; /* koyu gri */
  margin: 0 0 14px;
  max-width: 52ch;
}

.strip__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.strip__bullets li {
  position: relative;
  padding-left: 26px;
  margin: 8px 0;
  color: #444; /* koyu gri */
}

.strip__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff6600;
  font-weight: 900;
}

/* KUTU — oran burada */
.strip__media {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  margin-inline: auto;
}

.strip__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Learn more button */
.btn-learn {
  display: inline-block;
  border: 1.5px solid #ff6600;
  color: #ff6600;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-learn:hover {
  background-color: #ff6600;
  color: #fff;
  transform: translateY(-1px);
}

.btn-learn:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991.98px) {
  .strip,
  .strip--alt {
    grid-template-columns: 1fr !important; /* gerektiğinde ezsin */
  }
  .strip--alt .strip__txt,
  .strip--alt .strip__media {
    order: 0; /* mobilde normal sıra */
  }
}
@media (max-width: 575.98px) {
  .strip__media {
    aspect-ratio: 4/3;
    max-width: none;
  }
}
.wallet-dashboard {
  padding: 60px 20px;
  background: #0b0f16;
  color: #ffffff;
  text-align: center;
}
.wallet-dashboard .wallet-header {
  max-width: 800px;
  margin: 0 auto 40px;
}
.wallet-dashboard .wallet-header .wallet-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ff6600;
}
.wallet-dashboard .wallet-header .wallet-desc {
  font-size: 1.1rem;
  color: #bfc5d1;
  line-height: 1.6;
}
.wallet-dashboard .wallet-video-container {
  margin-bottom: 50px;
}
.wallet-dashboard .wallet-video-container .wallet-video {
  width: 100%;
  max-width: 720px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border: 2px solid #ff6600;
}
.wallet-dashboard .wallet-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.wallet-dashboard .wallet-features .wallet-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.2s ease;
}
.wallet-dashboard .wallet-features .wallet-card:hover {
  transform: translateY(-5px);
  background: #ff6600;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
.wallet-dashboard .wallet-features .wallet-card:hover .wallet-card-title,
.wallet-dashboard .wallet-features .wallet-card:hover .wallet-card-text {
  color: #ffffff;
}
.wallet-dashboard .wallet-features .wallet-card .wallet-icon {
  width: 40px;
  margin-bottom: 15px;
  margin: 0 auto 20px auto;
}
.wallet-dashboard .wallet-features .wallet-card .wallet-card-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ff6600;
  font-weight: 700;
}
.wallet-dashboard .wallet-features .wallet-card .wallet-card-text {
  font-size: 0.95rem;
  color: #bfc5d1;
}

.why-section {
  background: #0b0f16;
  padding: 50px 20px;
}
.why-section .why-header {
  max-width: 900px;
  margin: 0 auto 40px;
}
.why-section .why-header .why-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.why-section .why-header .why-desc {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
  align-items: stretch;
}
.cards-grid .card {
  border-radius: 12px;
  padding: 20px;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 160px;
  text-align: left;
}
.cards-grid .card img {
  width: 40px;
  margin-bottom: 10px;
  height: auto;
}
.cards-grid .card p {
  margin: 0;
}
.cards-grid .card strong {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 5px;
  display: block;
}
.cards-grid .card span {
  font-size: 0.85rem;
  color: #ccc;
}
.cards-grid .card-1,
.cards-grid .card-3 {
  background: #ff6b00;
  color: #fff;
}
.cards-grid .card-2,
.cards-grid .card-5 {
  background: #0e0f11;
  color: #fff;
}
.cards-grid .card-4,
.cards-grid .card-6 {
  background: #fff;
  color: #1a40ff;
}
.cards-grid .card-5 {
  grid-column: span 3;
  background: #0e0f11;
  display: flex;
  padding: 24px;
  border-radius: 12px;
}
.cards-grid .card-5 .licenses {
  display: flex;
  justify-content: space-around;
  width: 100%;
  gap: 20px;
  flex-wrap: wrap;
}
.cards-grid .card-5 .licenses .license-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.cards-grid .card-5 .licenses .license-item img {
  width: 40px;
  height: 40px;
}
.cards-grid .card-5 .licenses .license-item strong {
  color: #ff6b00;
  font-size: 15px;
  display: block;
}
.cards-grid .card-5 .licenses .license-item p {
  font-size: 13px;
  margin: 0;
}

.account-section {
  background: #fff;
  padding: 60px 20px;
  /* ======= Adım Kartları ======= */
}
.account-section .account-header {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 36px;
}
.account-section .account-header h2 {
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}
.account-section .account-header h2 .iq {
  color: #ff6600;
}
.account-section .account-header h2 .black {
  color: #000;
}
.account-section .account-header .subtitle {
  margin-top: 12px;
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 800;
  color: #111;
}
.account-section .account-header .subtitle .accent {
  color: #ff6600;
}
.account-section .account-header .desc {
  margin: 10px auto 0;
  color: #555;
  font-size: 1rem;
  max-width: 760px;
}
.account-section .account-header .account-buttons {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.account-section .account-header .account-buttons .btn-primary,
.account-section .account-header .account-buttons .btn-outline {
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.2s ease;
}
.account-section .account-header .account-buttons .btn-primary {
  background: #ff6600;
  color: #fff;
  border: 0;
}
.account-section .account-header .account-buttons .btn-primary:hover {
  background: #cc5200;
  transform: translateY(-1px);
}
.account-section .account-header .account-buttons .btn-primary:active {
  transform: translateY(0);
}
.account-section .account-header .account-buttons .btn-outline {
  background: transparent;
  color: #ff6600;
  border: 2px solid #ff6600;
}
.account-section .account-header .account-buttons .btn-outline:hover {
  background: rgba(255, 102, 0, 0.08);
  transform: translateY(-1px);
}
.account-section .account-header .account-buttons .btn-outline:active {
  transform: translateY(0);
}
.account-section .steps-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 991.98px) {
  .account-section .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .account-section .steps-grid {
    grid-template-columns: 1fr;
  }
}
.account-section .step-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.account-section .step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.09);
}
.account-section .step-card .step-circle {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #ff6600;
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
}
.account-section .step-card h3 {
  margin: 6px 0 10px;
  font-weight: 800;
  font-size: 1.2rem;
  color: #000;
}
.account-section .step-card p {
  margin: 0;
  color: #555;
  font-size: 0.98rem;
}

/*sanal.html*/
.sehero {
  position: relative;
  height: 100vh;
  color: #fff;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
}
.sehero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
.sehero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}
.sehero__content {
  max-width: 900px;
  padding: 0 20px;
}
.sehero__title {
  font-weight: 800;
  line-height: 1.1;
  font-size: clamp(2rem, 6vw, 4.5rem);
  letter-spacing: 0.5px;
}
.sehero--accent {
  color: #ff6b00;
}
.sehero__subtitle {
  margin: 18px 0 28px;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.65;
  opacity: 0.95;
}
.sehero__btn {
  display: inline-block;
  background: #ff6b00;
  color: #fff;
  text-decoration: none;
  padding: clamp(12px, 1.8vw, 14px) clamp(24px, 3vw, 28px);
  border-radius: 10px;
  font-weight: 700;
  font-size: clamp(0.95rem, 2vw, 1rem);
  transition: transform 0.25s ease, filter 0.25s ease, background-color 0.25s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.sehero__btn:hover {
  transform: scale(1.05) translateY(-2px);
  filter: brightness(0.95);
  background: rgb(229.5, 96.3, 0);
}
.sehero__btn:active {
  transform: scale(1);
}

.sefeatures {
  --card-bg: #fff;
  --card-fg: #111;
  --card-stroke: rgba(0, 0, 0, 0.08);
  --icon-bg: rgba(255, 107, 0, 0.12);
  --icon-fg: #ff6600;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: clamp(40px, 6vw, 80px) 0;
  background: radial-gradient(1200px 600px at 50% -200px, #fff7f0 0%, #f8f9fb 55%, #f8f9fb 100%);
}

.sefeatures.is-dark {
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-fg: #eaeef5;
  --card-stroke: rgba(255, 255, 255, 0.12);
  --icon-bg: rgba(255, 107, 0, 0.18);
  background: #171c20;
}

.sefeatures__container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.sefeatures__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

@media (max-width: 1199.98px) {
  .sefeatures__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639.98px) {
  .sefeatures__grid {
    grid-template-columns: 1fr;
  }
}
.sefeatures__card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
  color: var(--card-fg);
  border: 1px solid var(--card-stroke);
  border-radius: 16px;
  padding: 22px 22px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
  overflow: hidden;
}

.sefeatures__card::before {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  border-left: 4px solid transparent;
  transition: border-color 0.24s ease;
}

.sefeatures__card:hover,
.sefeatures__card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 107, 0, 0.25);
  background: linear-gradient(180deg, #ffffff 0%, #fff4eb 100%);
}

.sefeatures__card:hover::before,
.sefeatures__card:focus-within::before {
  border-left-color: #ff6b00;
}

.sefeatures__card:hover .sefeatures__icon,
.sefeatures__card:focus-within .sefeatures__icon {
  background: #ff6b00;
  color: #fff;
}

.sefeatures__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--icon-bg);
  color: var(--icon-fg);
  margin-bottom: 14px;
  font-size: 26px;
  transition: background-color 0.24s ease, color 0.24s ease;
}

.sefeatures__title {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  font-weight: 800;
  margin: 4px 0 8px;
  color: var(--card-fg);
}

.sefeatures__text {
  font-size: clamp(0.95rem, 1.4vw, 1rem);
  line-height: 1.65;
  color: color-mix(in srgb, var(--card-fg) 82%, #6b7280);
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .sefeatures__card {
    transition: none;
  }
  .sefeatures__icon {
    transition: none;
  }
}
/* ---------- HERO ---------- */
.linkhero {
  position: relative;
  /* Güvenli hero yüksekliği */
  min-height: 70vh;
  min-height: 70svh;
  display: grid;
  place-items: center;
  text-align: center;
  /* Güvenli yatay padding (safe area) */
  padding-top: clamp(24px, 4vw, 40px);
  padding-bottom: clamp(24px, 4vw, 40px);
  padding-left: 20px;
  padding-right: 20px;
  color: #fff;
  background-color: #0b0f16;
  background-image: url("../img/digitalt.jpg"); /* default görsel */
  background-size: cover;
  background-position: 65% center; /* masaüstünde konu biraz sağda */
  background-repeat: no-repeat;
}
@supports (min-height: 100dvh) {
  .linkhero {
    min-height: 70dvh;
  }
}
@supports (padding: max(0px)) {
  .linkhero {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
}

.linkhero.linkhero--visa {
  background-image: url("../img/visam.jpg");
}

/* Okunurluk overlay */
.linkhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

/* İçerik katmanı */
.linkhero__content {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

/* Başlık/alt başlık/CTA */
.linkhero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.linkhero--accent {
  color: #fff;
  background: #ff6b00;
  padding: 0 8px;
  border-radius: 6px;
}

.linkhero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-bottom: 30px;
  line-height: 1.6;
}

.linkhero__btn {
  display: inline-block;
  background: #ff6b00;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.linkhero__btn:hover {
  background: #e65a00;
  transform: translateY(-2px);
}

/* Hero kadrajını küçük ekranlarda yukarı al */
@media (max-width: 992px) {
  .linkhero {
    background-position: center top;
  }
}
/* Hareket tercih etmeyen kullanıcılar */
@media (hover: none) {
  .linkhero__btn:hover {
    transform: none;
  }
}
/* ---------- CONTENT SECTION ---------- */
.linksection {
  padding: clamp(40px, 6vw, 80px) 0;
  background: #fff;
  /* Kart */
  /* Görsel alanı */
  /* Metin alanı */
}
.linksection__container {
  width: min(1200px, 92%);
  margin-inline: auto;
}
.linksection__item {
  display: grid;
  grid-template-columns: 1fr 1.15fr; /* metin biraz geniş */
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fff8f3 100%);
  box-shadow: 0 14px 36px rgba(11, 15, 22, 0.08);
  padding: clamp(18px, 2.6vw, 28px);
  position: relative;
  overflow: hidden;
  /* Turuncu soft parlama */
  /* Sağ/solu tersine çevirme */
}
.linksection__item::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -30%;
  width: 900px;
  height: 380px;
  background: radial-gradient(closest-side, rgba(255, 107, 0, 0.12), transparent 70%);
  background: radial-gradient(closest-side, rgba(255, 107, 0, 0.12), transparent 70%);
  pointer-events: none;
}
.linksection__item.is-reverse {
  grid-template-columns: 1.15fr 1fr;
}
.linksection__item.is-reverse .linksection__media {
  order: 2;
}
.linksection__item.is-reverse .linksection__body {
  order: 1;
}
.linksection__item.is-reverse::before {
  left: auto;
  right: -30%;
}
.linksection__media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.linksection__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}
.linksection__body {
  color: #0b1220;
}
.linksection__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 10px;
}
.linksection p {
  font-size: clamp(1rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  color: #344054;
  margin: 0 0 12px;
}
@media (max-width: 992px) {
  .linksection .linksection__item,
  .linksection .linksection__item.is-reverse {
    grid-template-columns: 1fr;
  }
  .linksection .linksection__item.is-reverse .linksection__media {
    order: 1;
  }
  .linksection .linksection__item.is-reverse .linksection__body {
    order: 2;
  }
  .linksection .linksection__item.is-reverse::before {
    left: -30%;
    right: auto;
  }
}

.comingmini {
  --nav-h: 0px;
}

.comingmini {
  position: relative;
  /* Ekranı doldur (navbar varsa düş) */
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  place-items: center;
  text-align: center;
  color: #ffffff;
  background: #0b0f16;
  background-size: cover;
  background-position: center;
  margin: 0;
  padding: 0;
  /* okunurluk + alttan vignette */
  /* üstte turuncu yumuşak parıltı */
}
@supports (min-height: 100dvh) {
  .comingmini {
    min-height: calc(100dvh - var(--nav-h));
  }
}
.comingmini::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), radial-gradient(1200px 800px at 50% 120%, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0) 70%);
  z-index: 0;
}
.comingmini::after {
  content: "";
  position: absolute;
  inset: -22% -25% auto -25%;
  height: 46%;
  background: radial-gradient(700px 300px at 50% -140px, rgba(255, 107, 0, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Deluxe başlık + underline + orblar  */
.comingmini--deluxe .comingmini__title {
  position: relative;
  z-index: 1;
  font-weight: 900;
  line-height: 1.05;
  font-size: clamp(2.2rem, 8vw, 4.4rem);
  letter-spacing: 0.04em;
  margin: 0;
}
.comingmini--deluxe .comingmini__title span {
  background: linear-gradient(90deg, #ffffff 0%, #ffe7d6 20%, #ff6b00 50%, #ffffff 80%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  animation: titleShift 9s ease-in-out infinite;
}
.comingmini--deluxe .comingmini__title::after {
  content: "";
  display: block;
  width: clamp(120px, 36vw, 420px);
  height: 4px;
  margin: clamp(12px, 2.5vw, 18px) auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.95), transparent);
  background-size: 200% 100%;
  box-shadow: 0 10px 28px rgba(255, 107, 0, 0.35);
  animation: sweep 4s linear infinite;
}
.comingmini--deluxe .comingmini__orb {
  position: absolute;
  z-index: 0;
  width: clamp(180px, 28vw, 320px);
  height: clamp(180px, 28vw, 320px);
  filter: blur(32px);
  opacity: 0.25;
  pointer-events: none;
  background: radial-gradient(circle at 35% 35%, rgba(255, 107, 0, 0.6), rgba(255, 255, 255, 0.05) 60%, transparent 70%);
}
.comingmini--deluxe .comingmini__orb--tl {
  top: 8%;
  left: -4%;
  animation: float1 14s ease-in-out infinite alternate;
}
.comingmini--deluxe .comingmini__orb--br {
  bottom: -6%;
  right: -2%;
  animation: float2 16s ease-in-out infinite alternate;
}

/* Küçük animasyonlar */
@keyframes titleShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes sweep {
  0% {
    background-position: 200% 0;
    opacity: 0.9;
  }
  50% {
    background-position: 0 0;
    opacity: 1;
  }
  100% {
    background-position: -200% 0;
    opacity: 0.9;
  }
}
@keyframes float1 {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(20px, 18px);
  }
}
@keyframes float2 {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-24px, -16px);
  }
}
/* Hareket sevmeyen kullanıcılar */
@media (prefers-reduced-motion: reduce) {
  .comingmini--deluxe .comingmini__title span,
  .comingmini--deluxe .comingmini__title::after,
  .comingmini--deluxe .comingmini__orb {
    animation: none !important;
  }
}
/* Footer'la arada çizgi oluşursa (yalnız bu sayfada) */
.comingmini + .site-footer {
  margin-top: 0;
  border-top: 0;
}

:root {
  --primary: #0d1b44; /* ana marka rengi */
  --secondary: #ff6600; /* vurgu rengi */
  --bg-light: #f4f6f8; /* arka plan */
  --badge-bg: #e7edff; /* etiket arka plan */
  --badge-text: #334; /* etiket yazı */
}

.doc-wrap {
  background: var(--bg-light);
  padding: 48px 16px;
}

.doc-page {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

.doc-header {
  margin-bottom: 18px;
}

.doc-badge {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--badge-bg);
  color: var(--badge-text);
  font-weight: 600;
}

.doc-title {
  margin: 10px 0 0;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--primary);
}

.doc-figure {
  margin: 18px 0 0;
  text-align: center;
}

.doc-figure img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

@media (max-width: 575.98px) {
  .doc-page {
    padding: 38px 32px;
  }
  .doc-title {
    font-size: 1.4rem;
  }
}
.history-img {
  display: block;
  margin: 0 auto 16px;
  width: 100%;
  max-width: 280px;
  max-height: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 575.98px) {
  .history-img {
    max-width: 260px;
    max-height: 200px;
  }
}
.doc-page .doc-figure.flush {
  margin-left: -28px;
  margin-right: -28px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.doc-page .doc-figure.flush .history-img {
  box-shadow: none;
}

.highlight-box {
  background: transparent;
  border-left: 6px solid #ff6600;
  padding: 14px 18px;
  margin: 24px 0;
  border-radius: 0;
  box-shadow: none;
}

.highlight-box h2 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #ff6600;
}

.highlight-box p {
  margin: 0;
  line-height: 1.7;
  font-size: 1rem;
  color: #222;
}

@media (max-width: 575.98px) {
  .highlight-box {
    border-left-width: 4px;
    padding: 12px 14px;
    margin: 18px 0;
  }
  .highlight-box h2 {
    font-size: 1.1rem;
  }
  .highlight-box p {
    font-size: 0.95rem;
  }
}
.management-list {
  display: grid;
  gap: 28px;
  margin-top: 20px;
}

/* ===== Üye satırı ===== */
.member {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.member:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(34, 34, 34, 0.12);
  border-color: rgba(255, 102, 0, 0.35);
}

/* Fotoğraf alanı */
.member-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  background: #171c20;
  box-shadow: 0 8px 24px rgba(34, 34, 34, 0.08);
}
.member-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Metin alanı */
.member-info {
  display: grid;
  gap: 8px;
}

/* İsim */
.member-name {
  margin: 0;
  font-weight: 800;
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  letter-spacing: 0.2px;
  color: #222;
}

/* Ünvan “badge” hissi */
.member-role {
  display: inline-block;
  align-self: flex-start;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  font-weight: 700;
  font-size: 0.95rem;
  color: #ff6600;
  background: rgba(255, 102, 0, 0.08);
  border: 1px solid rgba(255, 102, 0, 0.25);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

/* Biyografi */
.member-bio {
  margin: 2px 0 0;
  line-height: 1.7;
  color: #222;
  opacity: 0.9;
}

/* Sosyal / meta */
.member-meta {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.member-meta .social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 102, 0, 0.06);
  color: #ff6600;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.member-meta .social:hover {
  background: #ff6600;
  color: #ffffff;
  border-color: transparent;
}

/* ===== Responsive ===== */
@media (max-width: 820px) {
  .member {
    grid-template-columns: 180px 1fr;
    gap: 18px;
  }
}
@media (max-width: 575.98px) {
  .member {
    grid-template-columns: 1fr;
    padding: 14px;
  }
  .member-photo {
    aspect-ratio: 4/5;
  }
  .member-role {
    font-size: 0.9rem;
  }
  .member-bio {
    font-size: 0.95rem;
  }
}
.doc-content p {
  line-height: 1.7;
  margin: 12px 0;
  color: #222;
}
.doc-content a {
  color: #ff6b00;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
.doc-content a:hover {
  color: rgb(214.2, 89.88, 0);
}
.doc-content a:focus-visible {
  outline: 2px solid #ff6b00;
  outline-offset: 2px;
  text-decoration: none;
}
.doc-content a:active {
  color: rgb(178.5, 74.9, 0);
}
.doc-content .doc-links {
  margin: 16px 0 0;
  padding-left: 20px;
}
.doc-content .doc-links li + li {
  margin-top: 8px;
}
.doc-content .doc-links a {
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 107, 0, 0.6);
  padding-bottom: 2px;
}
.doc-content .doc-links a:hover {
  border-bottom-style: solid;
  color: rgb(214.2, 89.88, 0);
}

.kvkk-content h2,
.kvkk-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #222;
}
.kvkk-content h2 {
  font-size: 1.4rem;
}
.kvkk-content h3 {
  font-size: 1.15rem;
  color: #ff6b00;
}
.kvkk-content p {
  margin: 12px 0;
  line-height: 1.7;
  color: #222;
}
.kvkk-content a {
  color: #ff6b00;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.kvkk-content a:hover {
  color: rgb(204, 85.6, 0);
}

/* Paletinizden */
.cookies-content {
  /* başlıklar */
  /* içindekiler */
}
.cookies-content p {
  margin: 12px 0;
  line-height: 1.7;
  color: #222;
}
.cookies-content h2 {
  margin: 26px 0 10px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #222;
  position: relative;
}
.cookies-content h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  background: #ff6b00;
  border-radius: 2px;
  margin-top: 6px;
}
.cookies-content .policy-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 10px 0 18px;
}
.cookies-content .policy-toc a {
  display: inline-block;
  font-size: 0.92rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 107, 0, 0.35);
  background: rgba(255, 107, 0, 0.08);
  color: #ff6b00;
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}
.cookies-content .policy-toc a:hover {
  background: rgba(255, 107, 0, 0.14);
  border-color: rgba(255, 107, 0, 0.5);
}
.cookies-content .note {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid #ff6b00;
  padding: 12px 14px;
  border-radius: 10px;
  margin: 8px 0 16px;
}
.cookies-content ul {
  padding-left: 20px;
}
.cookies-content li + li {
  margin-top: 6px;
}
.cookies-content .browser-links a {
  color: #ff6b00;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookies-content .browser-links a:hover {
  color: rgb(214.2, 89.88, 0);
}
.cookies-content a:not(.policy-toc a) {
  color: #ff6b00;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}
.cookies-content a:not(.policy-toc a):hover {
  color: rgb(214.2, 89.88, 0);
}
.cookies-content .cookie-btn {
  margin-top: 12px;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 107, 0, 0.4);
  background: rgba(255, 107, 0, 0.1);
  color: #ff6b00;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}
.cookies-content .cookie-btn:hover {
  background: rgba(255, 107, 0, 0.18);
}

@media (max-width: 575.98px) {
  .cookies-content h2 {
    font-size: 1.15rem;
  }
}
.doc-content .doc-subtitle {
  text-align: center;
}

.fees .doc-page {
  padding-top: 28px;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 18px;
  position: relative;
  margin: 22px 0 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tab {
  position: relative;
  padding: 12px 14px;
  font-weight: 700;
  border-radius: 12px;
  color: #222;
  text-decoration: none;
  transition: 0.2s ease;
}
.tab:hover {
  background: rgba(0, 0, 0, 0.04);
}
.tab.is-active {
  color: #ff6600;
}

.tab-underline {
  position: absolute;
  left: 12px;
  bottom: -1px;
  height: 3px;
  width: 96px;
  background: #ff6600;
  border-radius: 999px;
  transition: transform 0.3s ease, width 0.3s ease;
}

/* underline'ı basitçe tab aktifliğine göre konumlandırmak için: */
.tabpane.is-active ~ .tabs .tab-underline {
  transform: translateX(0);
}

/* Tabpanes – CSS only (basit) */
.tabpane {
  display: none;
}

.tabpane.is-active {
  display: block;
}

/* Fee list */
.fee-list {
  display: grid;
  gap: 12px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.fee-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 18px 16px 18px 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.fee-item__title {
  margin: 0 0 6px;
  font-weight: 800;
  color: #0f1222;
}

.fee-item__desc {
  margin: 0;
  color: #5b6070;
}

.fee-item__right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Pills */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.875rem;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.pill--free {
  color: #cc5200;
  background: rgba(255, 102, 0, 0.12);
  border: 1px solid rgba(255, 102, 0, 0.28);
}

.pill--fee {
  color: #0d5f71;
  background: #e8f6fa;
  border: 1px solid #c6eaf2;
}

/* Limits card */
.limits-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  margin-top: 14px;
}

.limits-row {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.limits-row:first-child {
  border-top: 0;
}
.limits-row:hover {
  background: rgba(0, 0, 0, 0.015);
}

.limits-title {
  margin: 0 0 6px;
  font-weight: 800;
  color: #0f1222;
}

.limits-note {
  margin: 0;
  color: #5b6070;
}

.limits-hint {
  display: inline-block;
  margin-top: 6px;
  color: #9aa1ae;
}

.limits-value {
  text-align: right;
  color: #232634;
}

.limits-value strong {
  font-size: 1.05rem;
}

.limits-footnote {
  padding: 16px 18px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}
.limits-footnote .muted {
  color: #9aa1ae;
  margin-top: 6px;
}

.icon-info {
  font-style: normal;
  margin-right: 6px;
  color: #ff6600;
}

/* Chips */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  background: rgba(0, 0, 0, 0.04);
  color: #222;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.chip--brand {
  background: rgba(255, 102, 0, 0.1);
  color: #cc5200;
  border-color: rgba(255, 102, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .limits-row {
    grid-template-columns: 1fr;
  }
  .limits-value {
    text-align: left;
  }
}
.kvkk-content .doc-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--stroke, #e6e8ef);
  border-radius: 12px;
}

.kvkk-content .doc-table th,
.kvkk-content .doc-table td {
  padding: 14px 16px;
  vertical-align: top;
  border-top: 1px solid var(--stroke, #e6e8ef);
}

.kvkk-content .doc-table thead th {
  background: rgba(0, 0, 0, 0.03);
  border-top: none;
  font-weight: 700;
}

.kvkk-content .table-scroll {
  overflow: auto;
}

:root {
  --iqm-orange: #de7a3a;
  --iqm-orange-dark: #c86836;
  --ink: #1b2430;
  --muted: #5c6678;
  --bg: #fff;
  --chip: #e8efff;
  --rule: #2c4c85;
  --info-bg: #e9f5ff;
  --info-bd: #9ad0ff;
  --note-bg: #fff7e7;
  --note-bd: #ffd38a;
  --warn-bg: #fdeaea;
  --warn-bd: #f3b8b8;
  --soft-bg: #fff8ec;
  --soft-bd: #ffe2b0;
  --card-bd: #e6ebf1;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --maxw: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font: 400 16px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

a {
  color: #1d5fd1;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3 {
  margin: 0 0 0.6rem;
  line-height: 1.2;
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0.25rem 0 1rem;
  padding-left: 1.2rem;
}

.iqm-topline {
  height: 6px;
  background: #1e4bff;
}

.iqm-page {
  width: min(100%, var(--maxw));
  margin: 0 auto;
  padding: 24px clamp(14px, 3vw, 28px) 80px;
}

.iqm-chip {
  display: inline-block;
  background: var(--chip);
  color: #27408b;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  margin: 8px 0 22px;
}

.iqm-hero {
  text-align: center;
  padding: 8px 0 6px;
}

.iqm-hero__logo {
  width: 160px;
  height: auto;
  margin-bottom: 8px;
}

.iqm-hero__heading {
  font-size: clamp(20px, 3.5vw, 26px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.iqm-banner {
  background: var(--iqm-orange);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 34px);
  text-align: center;
  margin: 18px 0 26px;
}

.iqm-banner__title {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
  text-transform: uppercase;
}

.iqm-banner__subtitle {
  margin: 4px 0 18px;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(14px, 2.2vw, 20px);
}

.iqm-info {
  background: var(--iqm-orange-dark);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  padding: 16px 18px;
  max-width: 1040px;
  margin: 0 auto;
}

.iqm-info__heading {
  margin: 2px 0 12px;
  font-weight: 800;
  font-size: clamp(16px, 2vw, 20px);
}

.iqm-info__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 992px) {
  .iqm-info__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .iqm-info__grid {
    grid-template-columns: 1fr;
  }
}
.iqm-info__label {
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 13px;
  font-weight: 800;
  opacity: 0.9;
  margin-bottom: 4px;
}

.iqm-info__text {
  margin: 0;
  font-weight: 600;
}

.iqm-toc {
  border: 1px solid var(--card-bd);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 14px 18px;
  margin: 20px 0;
}

.iqm-toc__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.iqm-toc__head h3 {
  color: var(--rule);
  letter-spacing: 0.4px;
}

.iqm-toc__rule {
  height: 2px;
  background: var(--rule);
  flex: 1;
  opacity: 0.7;
  border-radius: 2px;
}

.iqm-toc__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 20px;
  margin: 10px 0 0;
}

@media (max-width: 900px) {
  .iqm-toc__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .iqm-toc__list {
    grid-template-columns: 1fr;
  }
}
.iqm-article {
  margin: 28px 0;
}

.iqm-article__head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  background: var(--iqm-orange);
  color: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 12px 14px;
  margin-bottom: 14px;
}

.iqm-article__tag {
  background: rgba(0, 0, 0, 0.12);
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0.6px;
}

.iqm-article__title {
  text-transform: uppercase;
  font-weight: 900;
}

.iqm-subhead {
  font-weight: 800;
  margin: 0.3rem 0 0.6rem;
}

.iqm-contactbar {
  background: var(--iqm-orange-dark);
  color: #fff;
  border-radius: 10px;
  padding: 14px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 14px;
}

@media (max-width: 880px) {
  .iqm-contactbar {
    grid-template-columns: 1fr;
  }
}
.iqm-contactbar__label {
  text-transform: uppercase;
  font-size: 12.5px;
  opacity: 0.9;
  font-weight: 800;
  margin-bottom: 4px;
}

.iqm-contactbar__text {
  font-weight: 600;
}

.iqm-callout {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
  margin: 12px 0;
}

.iqm-callout--info {
  background: var(--info-bg);
  border-color: var(--info-bd);
}

.iqm-callout--note {
  background: var(--note-bg);
  border-color: var(--note-bd);
}

.iqm-callout--warn {
  background: var(--warn-bg);
  border-color: var(--warn-bd);
}

.iqm-callout--soft {
  background: var(--soft-bg);
  border-color: var(--soft-bd);
}

.iqm-h3 {
  margin: 16px 0 8px;
  font-size: 18px;
  font-weight: 800;
}

.iqm-bullets li {
  margin-bottom: 0.25rem;
}

.iqm-ordered {
  padding-left: 1.2rem;
}

.iqm-defs {
  display: grid;
  gap: 10px;
}

.iqm-def {
  border: 1px solid var(--card-bd);
  border-radius: 10px;
  padding: 12px;
  background: #fff;
}

.iqm-def__term {
  font-weight: 800;
  margin-bottom: 4px;
}

.iqm-def__desc {
  color: var(--muted);
}

.iqm-muted {
  color: var(--muted);
  font-style: italic;
}

.iqm-fine {
  opacity: 0.85;
  font-size: 13px;
  margin-top: 8px;
}

@media print {
  .iqm-topline,
  .iqm-chip {
    display: none !important;
  }
  .iqm-banner,
  .iqm-article__head,
  .iqm-callout,
  .iqm-toc {
    box-shadow: none;
  }
}
/* Sözleşme dip bloğu */
.iqm-page .iqm-legalbar {
  background: #2f3a48;
  color: #e8edf6;
  border-top: 6px solid var(--rule);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 28px clamp(16px, 3vw, 40px);
  text-align: center;
  margin: 28px 0 48px;
}

.iqm-legalbar .lb-title {
  font-weight: 900;
  font-size: clamp(18px, 3vw, 28px);
  margin-bottom: 14px;
}

.iqm-legalbar .lb-line {
  font-size: clamp(14px, 2.2vw, 20px);
  margin-bottom: 12px;
  opacity: 0.95;
}

.iqm-legalbar .lb-fine {
  font-size: clamp(13px, 1.9vw, 18px);
  opacity: 0.9;
  max-width: 980px;
  margin: 10px auto 0;
}

.iqm-legalbar a {
  color: #dbe6ff;
  text-decoration: underline;
}

/* Değişkenler: mevcut :root değişkenlerin varsa aynen kullanılır */
:root {
  --iqm-orange: #de7a3a;
  --iqm-orange-dark: #c86836;
  --ink: #1b2430;
  --muted: #5c6678;
  --bg: #fff;
  --rule: #2c4c85;
  --card-bd: #e6ebf1;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Genel */
.kvkk {
  /* --- Tablolar --- */
}
.kvkk .kvkk-hero {
  text-align: left;
  margin: 8px 0 18px;
}
.kvkk .kvkk-hero__title {
  font-weight: 900;
  font-size: clamp(26px, 4.2vw, 42px);
  letter-spacing: 0.2px;
  margin: 0 0 0.5rem;
}
.kvkk .kvkk-hero__brand {
  margin: 0;
  font-size: clamp(14px, 2vw, 18px);
  color: var(--muted);
  line-height: 1.5;
}
.kvkk .kvkk-hero__brand strong {
  color: var(--ink);
}
.kvkk .kvkk-section {
  margin: 28px 0;
}
.kvkk .kvkk-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  background: var(--iqm-orange);
  color: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 12px 14px;
  margin-bottom: 14px;
}
.kvkk .kvkk-head__tag {
  background: rgba(0, 0, 0, 0.12);
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0.6px;
  font-size: 12px;
}
.kvkk .kvkk-head__title {
  text-transform: uppercase;
  font-weight: 900;
  margin: 0;
  font-size: clamp(16px, 2.6vw, 20px);
}
.kvkk p {
  margin: 0 0 1rem;
}
.kvkk .kvkk-list {
  margin: 0.25rem 0 1rem 1.2rem;
}
.kvkk .kvkk-list li {
  margin: 0.25rem 0;
}
.kvkk .kvkk-callout {
  border: 1px solid var(--card-bd);
  background: #f7fbff;
  border-radius: 12px;
  padding: 12px 14px;
}
.kvkk .kvkk-consent {
  border: 1px dashed var(--iqm-orange);
  background: #fff8ec;
  color: #6b4a1c;
  border-radius: 10px;
  padding: 12px 14px;
  font-style: italic;
}
.kvkk .table-scroll {
  overflow: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.kvkk .kvkk-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid var(--card-bd);
  border-radius: 12px;
}
.kvkk .kvkk-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f7f9fc;
  color: var(--ink);
  font-weight: 800;
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--card-bd);
}
.kvkk .kvkk-table tbody tr:nth-child(2n) {
  background: #fcfdff;
}
.kvkk .kvkk-table tbody td {
  vertical-align: top;
  padding: 12px 16px;
  border-top: 1px solid var(--card-bd);
}
.kvkk .kvkk-table--two thead th:nth-child(1),
.kvkk .kvkk-table--two tbody td:nth-child(1) {
  width: 28%;
}
.kvkk .kvkk-table--three thead th:nth-child(1),
.kvkk .kvkk-table--three tbody td:nth-child(1) {
  width: 24%;
}
.kvkk .kvkk-table--three thead th:nth-child(2),
.kvkk .kvkk-table--three tbody td:nth-child(2) {
  width: 46%;
}
.kvkk .kvkk-table--three thead th:nth-child(3),
.kvkk .kvkk-table--three tbody td:nth-child(3) {
  width: 30%;
}
@media (max-width: 640px) {
  .kvkk .kvkk-table thead th,
  .kvkk .kvkk-table tbody td {
    font-size: 14px;
  }
}

/* ---- Tokens ---- */
/* ---- Mixins ---- */
/* ---- Base ---- */
.contact-page {
  background: #0b0f16;
  color: #ffffff;
  padding-block: clamp(32px, 5vw, 72px);
  position: relative;
}
.contact-page .container {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
}

/* ---- Header ---- */
.cp-head {
  margin-bottom: clamp(20px, 4.5vw, 44px);
}
.cp-head .cp-kicker {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.35px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.cp-head .cp-title {
  margin: 12px 0 0;
  font-size: clamp(28px, 4.8vw, 44px);
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
}

/* ---- Address Cards ---- */
.address-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  margin-bottom: clamp(24px, 4vw, 48px);
}
@media (min-width: 640px) {
  .address-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .address-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  border-radius: 22px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: clamp(18px, 2.5vw, 28px);
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
}
.contact-card .icon-bubble {
  width: 86px;
  height: 86px;
  margin-inline: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6600 0%, #ff6b00 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 15px 40px rgba(255, 102, 0, 0.35), 0 0 0 10px rgba(255, 255, 255, 0.04);
  margin-bottom: 14px;
}
.contact-card .icon-bubble svg {
  display: block;
}
.contact-card .card-title {
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 800;
  line-height: 1.25;
  margin: 8px 0 8px;
}
.contact-card .card-title span {
  display: block;
  font-weight: 700;
  opacity: 0.9;
}
.contact-card .card-body {
  margin: 0;
  font-style: normal;
  color: #bfc5d1;
  line-height: 1.5;
}

/* ---- Email & Phone cards ---- */
.info-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  margin: clamp(12px, 4vw, 28px) 0 clamp(24px, 5vw, 56px);
}
@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.info-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  border-radius: 22px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: clamp(18px, 2.5vw, 28px);
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 12px;
}
.info-card .ic {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6600 0%, #ff6b00 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 15px 40px rgba(255, 102, 0, 0.35);
}
.info-card .label {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.info-card .value {
  color: #bfc5d1;
  font-size: 1.05rem;
  word-break: break-word;
}

/* ---- Contact Form ---- */
.cp-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  border-radius: 22px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: clamp(18px, 2.7vw, 30px);
  margin-bottom: clamp(24px, 5vw, 56px);
  /* full width rows */
}
.cp-form .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) {
  .cp-form .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .cp-form .form-grid {
    gap: 16px;
  }
}
.cp-form .row-span-2 {
  grid-column: 1/-1;
}
.cp-form label {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: #bfc5d1;
}
.cp-form .form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: #ffffff;
  padding: 14px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.cp-form .form-control::-moz-placeholder {
  color: rgba(191, 197, 209, 0.7);
}
.cp-form .form-control::placeholder {
  color: rgba(191, 197, 209, 0.7);
}
.cp-form .form-control:focus {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.25);
  border-color: #ff6600;
  background: rgba(255, 255, 255, 0.08);
}
.cp-form textarea.form-control {
  min-height: 140px;
  resize: vertical;
}
.cp-form .btn-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6600 0%, #ff6b00 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.cp-form .btn-send:hover {
  transform: translateY(-2px);
  filter: brightness(0.98);
}
.cp-form .btn-send:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(255, 102, 0, 0.35);
}

/* butonu aşağı kaydır */
.cp-form .btn-send {
  margin-top: clamp(18px, 4vw, 44px);
}

/* ---- Map ---- */
.map-wrap {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  border-radius: 22px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 0;
  overflow: hidden;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: clamp(260px, 45vh, 480px);
  border: 0;
  filter: saturate(0.9) contrast(1.05);
}

/* ---- Utilities (optional) ---- */
.text-muted {
  color: #bfc5d1;
}

.center {
  text-align: center;
}

/* ---- Small tweaks for very small screens ---- */
@media (max-width: 420px) {
  .info-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .info-card .ic {
    margin-inline: auto;
  }
  .contact-card {
    padding: 18px;
  }
}
/* ---- If you need dark page background wrapper ---- */
.page-bg {
  background: radial-gradient(1200px 600px at 10% -10%, rgba(255, 102, 0, 0.08), transparent 40%), radial-gradient(1200px 600px at 100% 0%, rgba(255, 107, 0, 0.07), transparent 40%), #0b0f16;
}

/* Base */
.wallet-page {
  padding: clamp(28px, 4vw, 48px) 0 clamp(40px, 6vw, 72px);
  background: #fff;
  color: #0f172a;
}

.wallet-container {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
}

/* HERO */
.wallet-hero {
  background: linear-gradient(135deg, #ff6600 0%, #ff6b00 100%);
  color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(255, 102, 0, 0.25);
  padding: clamp(24px, 5vw, 44px);
  text-align: center;
  margin: 0 auto clamp(32px, 6vw, 56px);
}

.wallet-kicker {
  display: inline-block;
  padding: 6px 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.wallet-hero-title {
  margin: 12px 0 18px;
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 800;
  line-height: 1.2;
}

.wallet-store-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.wallet-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.wallet-store-btn .wallet-icon {
  display: grid;
  place-items: center;
}
.wallet-store-btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}
.wallet-store-btn:active {
  transform: translateY(0);
}

/* FEATURES */
.wallet-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .wallet-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .wallet-feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.wallet-feat-card {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 24px 22px 28px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wallet-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.wallet-bubble {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6600 0%, #ff6b00 100%);
  display: grid;
  place-items: center;
  margin: -44px auto 16px;
  box-shadow: 0 16px 40px rgba(255, 102, 0, 0.25);
}

.wallet-feat-title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 6px 0 8px;
  color: #0b0f16;
}

.wallet-feat-text {
  color: #bfc5d1;
  line-height: 1.55;
  font-size: 0.98rem;
  margin: 0;
}

/* Renkler */
/* Dropdown menüde turuncu highlight */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item.active {
  background: #ff6600;
  color: #fff;
}

/* Modal görünümü */
.bireysel-modal .modal-content {
  border: 0;
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}
.bireysel-modal .modal-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.bireysel-modal .modal-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Marka butonu */
.btn-brand {
  background: #ff6600;
  border-color: #ff6600;
  color: #fff;
  font-weight: 800;
  border-radius: 12px;
  padding: 12px 22px;
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.25);
}
.btn-brand:hover {
  background: #cc5200;
  border-color: #cc5200;
}

.modal-backdrop {
  background: #222;
  opacity: 0.6 !important;
  z-index: 3000 !important;
}

#kurumsalModal.modal {
  z-index: 3050 !important;
}

/* ======================
   Modal görünümü (dark)
====================== */
#kurumsalModal .modal-dialog {
  max-width: 900px;
}
#kurumsalModal .modal-content {
  background: #171c20;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}
#kurumsalModal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(0deg, transparent, rgba(255, 255, 255, 0.02));
}
#kurumsalModal .modal-header .modal-title {
  font-weight: 700;
  color: #ffffff;
}
#kurumsalModal .modal-header .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 0.9;
}
#kurumsalModal .modal-header .btn-close:hover {
  opacity: 1;
}
#kurumsalModal .modal-header .btn-close:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.35);
}
#kurumsalModal .modal-body {
  padding-bottom: 1rem;
  max-height: calc(90dvh - 140px);
  overflow: auto;
}
#kurumsalModal .modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

/* ======================
   Form elemanları
====================== */
#kurumsalModal label,
#kurumsalModal .form-label {
  color: #bfc5d1;
  font-weight: 600;
}
#kurumsalModal .form-label:has(+ input[required], + select[required])::after {
  content: " *";
  color: #ff6b00;
}
#kurumsalModal .form-control,
#kurumsalModal .form-select {
  background: #0f141a;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}
#kurumsalModal .form-control::-moz-placeholder, #kurumsalModal .form-select::-moz-placeholder {
  color: rgba(255, 255, 255, 0.45);
}
#kurumsalModal .form-control::placeholder,
#kurumsalModal .form-select::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
#kurumsalModal .form-control:hover,
#kurumsalModal .form-select:hover {
  border-color: rgba(255, 102, 0, 0.55);
}
#kurumsalModal .form-control:focus,
#kurumsalModal .form-select:focus {
  background: #121820;
  border-color: #ff6600;
  box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
  color: #ffffff;
}
#kurumsalModal .form-control.is-invalid,
#kurumsalModal .form-select.is-invalid {
  border-color: #ff6464;
  box-shadow: 0 0 0 0.2rem rgba(255, 100, 100, 0.2);
}
#kurumsalModal .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23bfc5d1' d='M4.2 6.2 8 10l3.8-3.8.9.9L8 11.9 3.3 7.1z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 14px 14px;
  padding-right: 2.2rem;
}
#kurumsalModal .form-check {
  margin-top: 0.5rem;
}
#kurumsalModal .form-check .form-check-input {
  width: 1.05rem;
  height: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
}
#kurumsalModal .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.15rem rgba(255, 102, 0, 0.25);
}
#kurumsalModal .form-check .form-check-input:checked {
  background-color: #ff6600;
  border-color: #ff6600;
}
#kurumsalModal .form-check .form-check-label {
  color: #bfc5d1;
  font-weight: 500;
  line-height: 1.35;
  white-space: normal;
}
#kurumsalModal .form-check .form-check-label a {
  color: #ff6600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
#kurumsalModal .form-check .form-check-label a:hover {
  color: #cc5200;
}

/* ======================
   Butonlar
====================== */
.btn-primary {
  background: #ff6600;
  border-color: #ff6600;
  color: #fff;
}
.btn-primary:hover {
  background: #cc5200;
  border-color: #cc5200;
}
.btn-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 102, 0, 0.3);
}
.btn-primary:disabled {
  background: rgba(255, 102, 0, 0.55);
  border-color: rgba(255, 102, 0, 0.55);
}

.btn-secondary {
  background: transparent;
  color: #bfc5d1;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-color: rgba(255, 102, 0, 0.5);
}
.btn-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 102, 0, 0.25);
}

/* ======================
   Küçük dokunuşlar
====================== */
#kurumsalModal .help-text,
#kurumsalModal small {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 576px) {
  #kurumsalModal .modal-dialog {
    margin: 0.75rem;
  }
  #kurumsalModal .modal-body {
    max-height: calc(95dvh - 140px);
  }
}
/* ====== IQ Docs (Bağımsız Denetim + Faaliyet Raporları) ====== */
/* Marka değişkenlerin */
/* Bu bölüm için yerel yüzey / metin tonları */
.iqdocs {
  /* bölüm boşlukları */
  padding-block: clamp(24px, 5vw, 56px);
  color: #0f1420;
  /* başlık */
  /* kart ızgarası */
  /* kart */
  /* pdf illüstrasyonu */
  /* doküman başlığı */
  /* indir linki */
  /* indir simgesi */
}
.iqdocs__title {
  margin: 0 0 clamp(18px, 3vw, 28px);
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15;
  color: #151a22;
  letter-spacing: -0.01em;
}
.iqdocs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(18px, 2.6vw, 32px);
}
.iqdocs__card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  justify-items: start;
  background: #fff;
  color: #0f1420;
  border: 1px solid rgba(34, 34, 34, 0.08);
  border-radius: 20px;
  padding: clamp(16px, 2.4vw, 28px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  /* odak erişilebilirliği */
}
.iqdocs__card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 34, 34, 0.14);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}
.iqdocs__card:focus-within {
  outline: 2px solid rgba(255, 102, 0, 0.6);
  outline-offset: 2px;
}
.iqdocs__icon {
  width: clamp(88px, 11vw, 128px);
  margin: 6px 0 10px;
}
.iqdocs__icon svg {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.iqdocs__item-title {
  margin: 6px 0 12px;
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.25;
  color: #0e1420;
}
.iqdocs__download {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
  color: #ff6600;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.iqdocs__download:hover {
  color: #cc5200;
  border-color: currentColor;
  transform: translateY(-1px);
}
.iqdocs__download:focus-visible {
  outline: 2px solid rgba(255, 102, 0, 0.55);
  outline-offset: 3px;
  border-color: transparent;
}
.iqdocs__dl {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

/* koyu zeminli sayfada kartlar kontrastlı dursun */
.iqdocs--audit .iqdocs__card,
.iqdocs--report .iqdocs__card {
  background: #fff;
}

/* Tablet altı düzenlemeler */
@media (max-width: 991.98px) {
  .iqdocs {
    padding-block: 32px;
  }
}
/* Küçük telefonlar */
@media (max-width: 575.98px) {
  .iqdocs__grid {
    gap: 16px;
  }
  .iqdocs__icon {
    width: 92px;
  }
}
/* Hareketi azalt tercihi */
@media (prefers-reduced-motion: reduce) {
  .iqdocs__card {
    transition: none;
  }
  .iqdocs__download {
    transition: none;
  }
}
/* ====== Brand vars (senin paletin) ====== */
/* Yerel yüzey/metin tonları (açık zemin kartlar) */
/* Bölüm ortak başlığı (yalnızca bu iki bölüm içinde) */
.info-section .docs-title,
.board-section .docs-title {
  margin: 0 0 clamp(18px, 3vw, 28px);
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15;
  color: #151a22;
  letter-spacing: -0.01em;
}

/* =========================================================
   3) BİLGİ TOPLUMU HİZMETLERİ ve 4) DENETİM BİLGİLERİ
   ========================================================= */
.info-section {
  padding-block: clamp(24px, 5vw, 56px);
  color: #0f1420;
  /* Key–Value grid */
  /* Küçük ekranlarda tek sütuna in */
}
.info-section .kv {
  display: grid;
  gap: clamp(10px, 1.4vw, 14px);
}
.info-section .kv-row {
  display: grid;
  grid-template-columns: minmax(200px, 320px) 1fr;
  align-items: start;
  padding: clamp(14px, 1.6vw, 18px) clamp(16px, 2.2vw, 22px);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
  /* sol tarafta ince marka şeridi */
  position: relative;
}
.info-section .kv-row::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 16px 0 0 16px;
  background: linear-gradient(180deg, #ff6600, #cc5200);
  opacity: 0.75;
}
.info-section .kv-row:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}
.info-section dt,
.info-section dd {
  margin: 0;
}
.info-section dt {
  padding-right: clamp(8px, 1.2vw, 14px);
  font-weight: 700;
  color: #475065;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.35;
}
.info-section dd {
  color: #0e1420;
  font-size: clamp(1rem, 1.9vw, 1.1rem);
  line-height: 1.5;
}
.info-section dd a {
  color: #ff6600;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 102, 0, 0.45);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.info-section dd a:hover {
  color: #cc5200;
  border-color: rgba(204, 82, 0, 0.7);
}
.info-section dd a:focus-visible {
  outline: 2px solid rgba(255, 102, 0, 0.55);
  outline-offset: 2px;
}
@media (max-width: 767.98px) {
  .info-section .kv-row {
    grid-template-columns: 1fr;
    row-gap: 6px;
  }
  .info-section .kv-row::before {
    height: 6px;
    width: 100%;
    inset: 0 0 auto 0;
    border-radius: 16px 16px 0 0;
  }
  .info-section dt {
    font-size: 0.95rem;
    color: #5b6475;
  }
}

/* =================================
   5) YÖNETİM KURULU
   ================================= */
.board-section {
  padding-block: clamp(24px, 5vw, 56px);
  /* Küçük ekran: dikey hizala */
}
.board-section .board-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(10px, 1.4vw, 14px);
}
.board-section .board-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(8px, 1.4vw, 16px);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: clamp(14px, 1.6vw, 18px) clamp(16px, 2.2vw, 22px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
  /* ince alt çizgi efekti */
  position: relative;
}
.board-section .board-list li::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -1px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 102, 0, 0), rgba(255, 102, 0, 0.35), rgba(255, 102, 0, 0));
  opacity: 0.4;
}
.board-section .board-list li:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}
.board-section .role {
  font-weight: 700;
  color: #1a2030;
  font-size: clamp(1rem, 1.9vw, 1.12rem);
}
.board-section .person {
  font-weight: 800;
  color: #0f1420;
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255, 102, 0, 0.08);
  border: 1px solid rgba(255, 102, 0, 0.18);
  white-space: nowrap;
}
@media (max-width: 575.98px) {
  .board-section .board-list li {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .board-section .board-list li::after {
    display: none;
  }
  .board-section .person {
    justify-self: start;
  }
}

.board-section {
  --badge-w: 240px;
} /* 220–260px arası deneyebilirsin */
/* 2) İkinci kolonu sabitle */
.board-section .board-list li {
  /* eskisi: grid-template-columns: 1fr auto; */
  grid-template-columns: 1fr var(--badge-w);
}

/* 3) Rozet içeride kolonu tamamen doldursun */
.board-section .person {
  width: 100%;
  text-align: center;
  justify-self: end; /* sağda hizalı kalsın */
  white-space: nowrap;
}

/* Mobilde tekrar akışa bırak */
@media (max-width: 575.98px) {
  .board-section .board-list li {
    grid-template-columns: 1fr;
  }
  .board-section .person {
    width: auto;
  }
}
/* Hareketi azalt tercihi */
@media (prefers-reduced-motion: reduce) {
  .info-section .kv-row,
  .board-section .board-list li {
    transition: none;
  }
}
/* ========================
   RESPONSIVE OVERRIDES card için tablet ve mobil sonda kalmalı
   ======================== */
/* ===== MOBILE (<=767.98px) ===== */
/* ===== MOBILE (<=767.98px) ===== */
@media (max-width: 767.98px) {
  html,
  body {
    height: auto;
    overflow-y: auto;
  }
  .why-section {
    min-height: 0 !important;
    padding: 12px 12px 20px !important;
  }
  .why-section .cards-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 0 !important;
    align-content: start;
  }
  /* Tüm kartlar için kısa taban yükseklik */
  .why-section .cards-grid > .card {
    --card-h-mobile: clamp(170px, 42vw, 220px);
    min-height: var(--card-h-mobile) !important;
    height: auto !important;
    grid-column: 1/-1 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
  /* 5. kart daha uzun + içerik yüksekliğe yayılsın */
  .why-section .cards-grid > .card.card-5,
  .why-section .cards-grid .card-5 {
    --card-h-mobile: clamp(360px, 84vw, 460px); /* görünür şekilde daha uzun */
    display: flex !important;
    flex-direction: column;
    padding: 16px 18px !important;
  }
  /* .licenses bloğu kartın kalan yüksekliğini doldursun */
  .why-section .cards-grid .card-5 .licenses {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* öğeleri dikeyde yay */
    margin: 0;
    padding: 0;
  }
  /* Her satır: ikon solda, metin sağda */
  .why-section .cards-grid .card-5 .license-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    -moz-column-gap: 12px;
         column-gap: 12px;
    align-items: center;
  }
  .why-section .cards-grid .card-5 .license-item img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    flex: 0 0 44px;
  }
  .why-section .cards-grid .card-5 .license-item > div {
    min-width: 0;
  }
  .why-section .cards-grid .card-5 .license-item > div strong {
    display: block;
    margin: 0 0 2px;
    line-height: 1.2;
    font-weight: 700;
  }
  .why-section .cards-grid .card-5 .license-item > div p {
    margin: 0;
    line-height: 1.35;
    opacity: 0.85;
  }
  /* Güvenlik: metin taşmalarını engelle */
  .why-section .cards-grid > .card * {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .why-section img,
  .why-section svg {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}
/* Palet */
:root {
  --brand: #ff6600;
  --brand-dark: #cc5200;
  --text: #fff;
  --dark: #171c20;
}

.site-footer {
  position: relative;
  background: #222;
  color: #fff;
  margin-top: 0px;
}
.site-footer a {
  color: #fff;
  text-decoration: none;
  opacity: 0.95;
}
.site-footer a:hover {
  opacity: 1;
  text-decoration: underline;
}
.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 32px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 40px;
  position: static;
}
@media (max-width: 991.98px) {
  .site-footer .footer-inner {
    grid-template-columns: 1fr;
  }
}
.site-footer .footer-socials {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 10px;
  z-index: 3;
}
.site-footer .footer-socials .social-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.site-footer .footer-socials .social-btn svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}
.site-footer .footer-socials .social-btn:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.28);
}
.site-footer .footer-socials .social-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}
@media (max-width: 575.98px) {
  .site-footer .footer-socials {
    position: static;
    justify-content: flex-end;
    margin-bottom: 10px;
  }
}
.site-footer .footer-brand .badges {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  grid-template-areas: "todeb tcmb" "ssl   pci";
  -moz-column-gap: 4px;
       column-gap: 4px;
  row-gap: 2px;
  align-items: center;
  justify-content: start;
  margin-bottom: 12px;
}
.site-footer .footer-brand .badges .badge {
  display: block;
  width: auto;
  height: auto;
  margin: 0;
}
.site-footer .footer-brand .badges .badge-todeb {
  grid-area: todeb;
  max-height: 50px;
}
.site-footer .footer-brand .badges .badge-tcmb {
  grid-area: tcmb;
  max-height: 50px;
}
.site-footer .footer-brand .badges .badge-ssl {
  grid-area: ssl;
  max-height: 42px;
}
.site-footer .footer-brand .badges .badge-pci {
  grid-area: pci;
  max-height: 42px;
}
.site-footer .footer-brand .foot-text {
  margin: 10px 0 16px;
  line-height: 1.6;
  max-width: 620px;
}
.site-footer .footer-brand .contacts {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
.site-footer .footer-brand .contacts li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.site-footer .footer-brand .contacts li .ico {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}
.site-footer .footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
@media (max-width: 575.98px) {
  .site-footer .footer-cols {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.site-footer .footer-cols .col h4 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 800;
  position: relative;
}
.site-footer .footer-cols .col h4::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  background: rgba(255, 255, 255, 0.55);
  margin-top: 8px;
}
.site-footer .footer-cols .col ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 8px;
}
.site-footer .footer-bottom .footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-footer .footer-bottom .footer-bottom-inner .logo-line img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.site-footer .footer-bottom .footer-bottom-inner p {
  margin: 0;
  opacity: 0.95;
}
@media (max-width: 575.98px) {
  .site-footer .footer-bottom .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

html,
body {
  overflow-x: clip;
} /* veya hidden */
.blog-wrap {
  background: #0b0f16;
  color: #ffffff;
  padding: clamp(24px, 4vw, 48px) 0;
}

.blog-container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 28px);
  align-items: stretch; /* kart yüksekliklerini eşitle */
  grid-auto-rows: 1fr;
}

@media (max-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
/* ==== Card ==== */
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%; /* grid-auto-rows ile birlikte hizalama için önemli */
  background: #171c20;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  overflow: clip;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* Image with overlay pill */
.card-media {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.card-media .pill {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ff6600;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
}

.card-media:hover img {
  transform: scale(1.06);
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
  padding: 18px clamp(16px, 2vw, 22px) 20px;
}

/* Title & link */
.card-title {
  margin: 0;
  font-size: clamp(18px, 1.4vw + 12px, 22px);
  line-height: 1.25;
  letter-spacing: 0.1px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}

.card-title a {
  color: #bfc5d1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-title a:hover {
  color: #ffffff;
}

/* Meta (date) — turuncu nokta kaldırıldı */
.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(191, 197, 209, 0.85);
  /* nokta artık görünmesin */
}

.card-meta .dot {
  display: none !important;
}

/* Excerpt */
.card-excerpt {
  margin: 0;
  color: rgba(191, 197, 209, 0.9);
  font-size: 15px;
  line-height: 1.6;
}

/* Read more button — daha belirgin, hover’da turuncu kalır */
.btn-read {
  align-self: flex-start;
  margin-top: auto; /* butonu kartın dibine sabitle */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px; /* daha büyük */
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  /* belirgin görünüm */
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-read:hover,
.btn-read:focus-visible {
  background: #cc5200; /* turuncu kalır */
  border-color: #cc5200;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}

.btn-read:active {
  background: #b34700;
  border-color: #b34700;
  transform: none;
}

/* Genel iskelet */
.post-wrap {
  background: #0b0f16;
  color: #ffffff;
  padding: clamp(24px, 4vw, 48px) 0;
}

.post-container {
  width: min(1000px, 92vw);
  margin-inline: auto;
}

/* Okuma ilerleme çubuğu (üstte ince turuncu) */
.post-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 4px;
  background: #ff6600;
  width: 0;
  z-index: 3000;
  transform-origin: left center;
}

/* Kicker (geri link + kategori) */
.post-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.post-kicker .post-back {
  color: rgba(191, 197, 209, 0.9);
  text-decoration: none;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.post-kicker .post-back:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.post-kicker .pill {
  display: inline-block;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ff6600;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* Hero görsel */
.post-hero {
  margin: 8px 0 18px;
  position: relative;
}

.post-hero figcaption {
  color: rgba(191, 197, 209, 0.8);
  font-size: 14px;
  margin-top: 10px;
}

.post-hero img {
  width: 100%;
  /* daha yüksek: masaüstünde 360–640px aralığı */
  height: clamp(360px, 48vh, 640px);
  /* aspect-ratio'u kaldırıyoruz ki height esas alınsın */
  -o-object-fit: cover;
  object-fit: cover; /* kutuyu doldurur, gerekiyorsa kırpar */
  display: block;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* Mobilde biraz daha alçak tut */
@media (max-width: 720px) {
  .post-hero {
    max-width: 100%;
  }
  .post-hero img {
    height: clamp(260px, 38vh, 420px);
  }
}
/* Başlık & meta */
.post-header {
  margin: 10px 0 18px;
}

.post-title {
  margin: 0;
  font-size: clamp(26px, 2.4vw + 16px, 40px);
  line-height: 1.15;
  color: #bfc5d1;
}

.post-meta {
  margin-top: 10px;
  color: rgba(191, 197, 209, 0.85);
  display: flex;
  gap: 10px;
  align-items: center;
}

.post-meta .sep {
  opacity: 0.65;
}

/* İçerik tipografisi */
.post-content {
  font-size: clamp(16px, 0.35vw + 15px, 18px);
  line-height: 1.75;
  color: rgba(191, 197, 209, 0.95);
}

.post-content h2,
.post-content h3,
.post-content h4 {
  color: #ffffff;
  margin: clamp(18px, 2.2vw, 28px) 0 10px;
  scroll-margin-top: 80px;
}

.post-content h2 {
  font-size: clamp(22px, 1.4vw + 18px, 28px);
}

.post-content h3 {
  font-size: clamp(18px, 1vw + 16px, 22px);
}

.post-content p {
  margin: 0 0 14px;
}

.post-content ul,
.post-content ol {
  padding-left: 1.2em;
  margin: 0 0 14px;
}

.post-content li {
  margin: 6px 0;
}

.post-content blockquote {
  margin: 14px 0;
  padding: 14px 16px;
  border-left: 4px solid #ff6600;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  color: rgba(191, 197, 209, 0.95);
}

.post-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.15em 0.35em;
  border-radius: 6px;
}

.post-content pre {
  background: #0f131a;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  overflow: auto;
  padding: 14px 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.post-content pre code {
  background: transparent;
  padding: 0;
}

.post-content img,
.post-content figure {
  max-width: 100%;
  height: auto;
}

.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.post-content table th,
.post-content table td {
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 10px;
}

.post-content table th {
  background: rgba(255, 255, 255, 0.05);
}

.post-content a {
  color: #ff6600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-content a:hover {
  color: #cc5200;
}

/* Footer */
.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: clamp(18px, 3vw, 36px);
}

.post-share {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.post-share .share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}

.post-share .share-btn:hover {
  background: #ff6600;
  border-color: #ff6600;
  transform: translateY(-1px);
}

.post-share .share-btn:active {
  background: #cc5200;
  border-color: #cc5200;
  transform: none;
}

/* Küçük ekran düzeni */
@media (max-width: 720px) {
  .post-container {
    width: min(96vw, 700px);
  }
}
@media (max-width: 991.98px) {
  .pay-navbar.mobile-sticky {
    position: fixed; /* mobilde en sağlamı */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030; /* navbar üstte kalsın */
  }
  /* İçeriğin zıplamaması için üst boşluk */
  body.has-nav-spacer {
    padding-top: var(--nav-h, 64px); /* JS bunu gerçek yükseklikle doldurur */
  }
  /* Açılan menü taşmasın */
  .pay-navbar.mobile-sticky .navbar-collapse {
    max-height: calc(100vh - var(--nav-h, 64px));
    overflow-y: auto;
  }
}/*# sourceMappingURL=style.css.map */