/* Referans: onlinekooperatif.netlify.app — indigo / teal / cyan kurumsal görünüm */

:root {
  color-scheme: light;
  --primary: #4f46e5;
  --secondary: #00a8a5;
  --accent: #06b6d4;
  --background: #ffffff;
  --foreground: #0a0a0a;
  --muted: rgba(10, 10, 10, 0.68);
  --border-soft: rgba(15, 23, 42, 0.08);
  --glass: rgba(255, 255, 255, 0.92);
  --shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, 0.18);
  --shadow-card: 0 10px 40px -10px rgba(15, 23, 42, 0.12);
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --header-min: 5.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

button,
a,
[role="tab"] {
  -webkit-tap-highlight-color: transparent;
}

button,
a,
[role="tab"] {
  background-clip: padding-box !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary);
  text-decoration-thickness: 1px;
}

a:hover {
  color: #4338ca;
}

/* Referans: max-w-screen-2xl (1536px) */
.container {
  width: min(1536px, 100% - 2rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--foreground);
  color: var(--background);
  padding: 0.5rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header — yapışkan (sticky): yüksekliği akışta kalır, içerik altına kaymaz */
/* backdrop-filter üst blokta değil; mobilde fixed menü viewport’a göre kilitlenir */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--border-soft);
}

.site-header__glass {
  position: absolute;
  inset: 0;
  z-index: 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: none;
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(79, 70, 229, 0.45),
    rgba(0, 168, 165, 0.35),
    transparent
  );
  pointer-events: none;
}

.header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(0.45rem, 1.15vw, 0.85rem);
  min-height: var(--header-min);
  padding: 0.5rem 0;
  flex-wrap: wrap;
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  z-index: 1;
}

.brand::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(
    circle,
    rgba(0, 168, 165, 0.28) 0%,
    rgba(6, 182, 212, 0.12) 45%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: -1;
}

.brand:hover::before {
  opacity: 1;
}

.brand-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 12px 24px rgba(15, 23, 42, 0.12));
  transition: transform 0.3s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.04);
}

/* Header bayrak / amblem — en sağda, menülerin sağında */
.header-flag {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
  line-height: 0;
}

.header-flag__img {
  width: auto;
  height: 48px;
  max-width: 72px;
  object-fit: contain;
  border-radius: 3px;
  filter: drop-shadow(0 2px 6px rgba(15, 23, 42, 0.10));
  transition: transform 0.3s ease;
}

.header-flag:hover .header-flag__img {
  transform: scale(1.04);
}

.header-flag__img--dark {
  display: none;
}

html[data-theme="dark"] .header-flag__img--light {
  display: none;
}

html[data-theme="dark"] .header-flag__img--dark {
  display: inline-block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

/* Kurum adı — iki satırlı referans başlık:
   üst satır kalın siyah, alt satır küçük gri SPACED CAPS. */
.brand-name--line1 {
  display: block;
  font-weight: 700;
  font-size: clamp(1.05rem, 2.45vw, 1.38rem);
  line-height: 1.18;
  letter-spacing: 0.04em;
  color: #000000;
  transition: color 0.2s ease;
}

.brand-name--line2 {
  display: block;
  margin-top: 0.2rem;
  font-weight: 400;
  font-size: clamp(0.54rem, 1.05vw, 0.68rem);
  line-height: 1.45;
  letter-spacing: 0.2em;
  color: #555555;
  max-width: 42rem;
  transition: color 0.2s ease;
}

.brand:hover .brand-name--line1 {
  color: #000000;
}

.brand:hover .brand-name--line2 {
  color: #444444;
}

@media (max-width: 640px) {
  .brand-name--line2 {
    font-size: 0.52rem;
    letter-spacing: 0.14em;
  }

  .brand-logo {
    width: 72px;
    height: 72px;
  }

  .header-flag__img {
    height: 36px;
    max-width: 54px;
  }
}

/* Nav toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  position: relative;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--foreground);
  position: absolute;
  left: 11px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-bar {
  top: 21px;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  left: 0;
}

.nav-toggle-bar::before {
  top: -6px;
}

.nav-toggle-bar::after {
  top: 6px;
}

.site-header.nav-open .nav-toggle-bar {
  background: transparent;
}

.site-header.nav-open .nav-toggle-bar::before {
  transform: translateY(6px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-bar::after {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem;
  justify-content: flex-end;
}

.nav-list__theme {
  display: flex;
  align-items: center;
  margin-left: 0.65rem;
  flex-shrink: 0;
}

.nav-list > li > a,
.sub-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(10, 10, 10, 0.72);
  text-decoration: none;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.nav-list > li > a:hover,
.sub-toggle:hover {
  color: var(--foreground);
  background: rgba(10, 10, 10, 0.04);
  border-color: rgba(10, 10, 10, 0.06);
}

.nav-list > li > a.is-active {
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary);
  border-color: rgba(79, 70, 229, 0.15);
}

.sub-toggle.is-active {
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary);
  border-color: rgba(79, 70, 229, 0.15);
}

.has-sub:hover .sub-toggle.is-active::after,
.has-sub:focus-within .sub-toggle.is-active::after {
  border-top-color: var(--primary);
}

.has-sub {
  position: relative;
}

.sub-toggle::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(10, 10, 10, 0.45);
  margin-left: 0.1rem;
  transition: border-top-color 0.2s ease;
}

.has-sub:hover .sub-toggle::after {
  border-top-color: var(--secondary);
}

.sub-menu {
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 16rem;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s;
  z-index: 60;
  overflow: hidden;
}

.sub-menu::before {
  content: "";
  display: block;
  height: 4px;
  margin: -0.5rem -0.5rem 0.35rem;
  background: linear-gradient(
    90deg,
    var(--secondary),
    var(--primary),
    var(--secondary)
  );
}

.has-sub:hover > .sub-menu,
.has-sub:focus-within > .sub-menu,
.has-sub.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li {
  position: relative;
}

.sub-menu a {
  display: block;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-xl);
  color: rgba(10, 10, 10, 0.78);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    padding-left 0.2s ease;
}

.sub-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 3px;
  border-radius: 2px;
  background: var(--secondary);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.sub-menu a:hover {
  background: rgba(10, 10, 10, 0.04);
  color: var(--foreground);
}

.sub-menu a:hover::before {
  opacity: 1;
}

.sub-menu a.is-active {
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary);
  font-weight: 600;
}

.sub-menu a.is-active::before {
  opacity: 1;
}

/* ============================================================
   Online İşlemler — özel buton + zengin dropdown
   ============================================================ */
.sub-toggle--online {
  color: #fff !important;
  background: linear-gradient(135deg, var(--primary, #4f46e5), var(--accent, #06b6d4)) !important;
  background-origin: border-box !important;
  background-clip: padding-box !important;
  border-color: transparent !important;
  font-weight: 700;
  gap: 0.4rem;
  padding: 0.55rem 1.15rem;
  box-shadow: 0 4px 14px -4px rgba(79, 70, 229, 0.45);
}

.sub-toggle--online::after {
  display: none !important;
}

.sub-toggle--online__chevron {
  transition: transform 0.22s ease;
  opacity: 0.85;
}

.has-sub--online:hover .sub-toggle--online__chevron,
.has-sub--online.is-open .sub-toggle--online__chevron {
  transform: rotate(180deg);
}

.sub-toggle--online:hover {
  color: #fff !important;
  background: linear-gradient(135deg, var(--primary, #4f46e5), var(--accent, #06b6d4)) !important;
  background-origin: border-box !important;
  background-clip: padding-box !important;
  border-color: transparent !important;
  filter: brightness(1.08);
  box-shadow: 0 6px 20px -4px rgba(79, 70, 229, 0.55);
}

.sub-menu--online {
  left: auto;
  right: 0;
  min-width: 17.5rem;
  padding: 0.6rem;
  gap: 0.25rem;
  display: flex;
  flex-direction: column;
}

.sub-menu--online::before {
  display: none;
}

.online-link {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem !important;
  border-radius: var(--radius-xl) !important;
  text-decoration: none;
  transition: background 0.18s ease;
}

.online-link::before {
  display: none !important;
}

.online-link:hover {
  background: rgba(10, 10, 10, 0.04);
}

.online-link__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  border: 1px solid rgba(79, 70, 229, 0.18);
  background: rgba(79, 70, 229, 0.06);
  color: #4f46e5;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.online-link__icon--calc {
  border-color: rgba(79, 70, 229, 0.22);
  background: rgba(79, 70, 229, 0.08);
  color: #4f46e5;
}
.online-link__icon--limit {
  border-color: rgba(6, 182, 212, 0.22);
  background: rgba(6, 182, 212, 0.08);
  color: #0891b2;
}
.online-link__icon--docs {
  border-color: rgba(16, 185, 129, 0.22);
  background: rgba(16, 185, 129, 0.08);
  color: #059669;
}
.online-link__icon--payment {
  border-color: rgba(245, 158, 11, 0.22);
  background: rgba(245, 158, 11, 0.08);
  color: #d97706;
}

.online-link:hover .online-link__icon {
  border-color: rgba(79, 70, 229, 0.35);
  background: rgba(79, 70, 229, 0.12);
  color: #4338ca;
}
.online-link:hover .online-link__icon--calc {
  border-color: rgba(79, 70, 229, 0.4);
  background: rgba(79, 70, 229, 0.14);
  color: #4338ca;
}
.online-link:hover .online-link__icon--limit {
  border-color: rgba(6, 182, 212, 0.4);
  background: rgba(6, 182, 212, 0.14);
  color: #0e7490;
}
.online-link:hover .online-link__icon--docs {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.14);
  color: #047857;
}
.online-link:hover .online-link__icon--payment {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.14);
  color: #b45309;
}

.online-link.is-active .online-link__icon {
  border-color: rgba(79, 70, 229, 0.3);
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary);
}

.online-link__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.online-link__title {
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--foreground);
  line-height: 1.3;
}

.online-link__desc {
  font-size: 0.75rem;
  font-weight: 450;
  color: rgba(10, 10, 10, 0.48);
  line-height: 1.35;
}

.online-link.is-active {
  background: rgba(79, 70, 229, 0.08) !important;
}

.online-link.is-active .online-link__title {
  color: var(--primary);
}

/* Main — header fixed değil; ekstra üst boşluk gerekmez */
.site-main {
  padding: 1.5rem 0 4rem;
}

/* Anasayfa: dış .container yok; içerik tam genişlik */
.site-main--flush {
  padding-top: 0;
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.site-main--flush > .page-home {
  margin-top: 0;
}

#main {
  scroll-margin-top: 0.75rem;
}

.lead {
  margin: 0 0 1.35rem;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 52ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #6366f1);
  color: #fff;
  box-shadow: 0 10px 28px -8px rgba(79, 70, 229, 0.55);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 0 14px 36px -8px rgba(79, 70, 229, 0.65);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(79, 70, 229, 0.35);
  color: var(--primary);
}

.btn-outline:hover {
  background: rgba(79, 70, 229, 0.06);
  color: #4338ca;
}

.announce-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.announce-list--stack {
  grid-template-columns: 1fr;
}

.announce-card {
  background: var(--background);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-2xl);
  padding: 1.15rem 1.25rem;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

.announce-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
  border-color: rgba(79, 70, 229, 0.12);
}

.announce-date {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.announce-title {
  display: inline-block;
  font-weight: 700;
  color: var(--foreground);
  text-decoration: none;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.announce-title:hover {
  color: var(--primary);
}

.announce-excerpt {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Sayfa içeriği */
.page {
  position: relative;
}

.page-header h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

.page-header .meta {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.duyuru-hero {
  margin: 1rem 0 0;
  padding: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(248, 250, 252, 0.9);
}

.duyuru-hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(52vh, 420px);
  object-fit: cover;
}

.page-body {
  margin-top: 1.1rem;
}

.prose p {
  margin: 0 0 1rem;
  color: rgba(10, 10, 10, 0.82);
}

.prose ul {
  padding-left: 1.2rem;
}

.list-links a {
  font-weight: 600;
}

.back {
  margin-top: 2rem;
}

.iletisim-hero {
  margin-bottom: 1.75rem;
}

/* Kanun .kanun-doc-grid ile aynı 1120px içinde iki sütun ritmi (gap aynı) */
.iletisim-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
}

.iletisim-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.iletisim-card {
  padding: 1.5rem 1.55rem 1.55rem;
  border-radius: calc(var(--radius-2xl) + 6px);
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.06);
}

.iletisim-card--address {
  background: linear-gradient(
    165deg,
    rgba(248, 250, 252, 0.98),
    rgba(224, 242, 254, 0.35)
  );
}

.iletisim-card--phone {
  background: linear-gradient(
    165deg,
    rgba(248, 250, 252, 0.98),
    rgba(237, 233, 254, 0.4)
  );
}

.iletisim-card--mail {
  background: linear-gradient(
    165deg,
    rgba(248, 250, 252, 0.98),
    rgba(204, 251, 241, 0.28)
  );
}

.iletisim-card-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.iletisim-card-head h2 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.iletisim-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 14px;
  border: 1px solid transparent;
}

.iletisim-icon--pin {
  color: var(--accent);
  background: rgba(6, 182, 212, 0.12);
  border-color: rgba(6, 182, 212, 0.22);
}

.iletisim-icon--phone {
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.18);
}

.iletisim-icon--mail {
  color: var(--secondary);
  background: rgba(0, 168, 165, 0.12);
  border-color: rgba(0, 168, 165, 0.2);
}

.iletisim-card-body {
  padding-left: 0.15rem;
}

.iletisim-text {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--foreground);
}

.iletisim-text:last-child {
  margin-bottom: 0;
}

.iletisim-text--accent {
  font-weight: 700;
  color: var(--accent);
}

.iletisim-strong {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
}

.iletisim-strong a {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 800;
}

.iletisim-strong a:hover {
  color: var(--primary);
}

.iletisim-note {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0.45rem 0 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--muted);
}

.iletisim-dot {
  display: block;
  width: 7px;
  height: 7px;
  margin-top: 0.35rem;
  flex-shrink: 0;
  border-radius: 999px;
}

.iletisim-note--phone .iletisim-dot {
  background: #7c3aed;
}

.iletisim-note--mail .iletisim-dot {
  background: var(--secondary);
}

.iletisim-sep {
  margin: 1rem 0;
  border: none;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.iletisim-map-wrap {
  position: relative;
  width: 100%;
  margin-top: 0;
  border-radius: calc(var(--radius-2xl) + 6px);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  background: rgba(248, 250, 252, 0.9);
}

.iletisim-map-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  left: auto;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 11px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(10, 10, 10, 0.78);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

.iletisim-map-badge svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Harita yüksekliği sol sütunle eşleşir (stretch) */
.iletisim-map-wrap {
  display: flex;
  flex-direction: column;
}

.iletisim-map-embed {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 320px;
}

.iletisim-map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  display: block;
}

@media (max-width: 960px) {
  .iletisim-layout {
    grid-template-columns: 1fr;
  }

  .iletisim-map-embed {
    flex: none;
    aspect-ratio: 16 / 10;
    min-height: 0;
    max-height: min(420px, 58vh);
  }
}

/* Footer — referans: onlinekooperatif.netlify.app (açık tema, 4 sütun) */
.site-footer {
  margin-top: 3rem;
}

.site-footer--ref {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem;
  background: var(--background);
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  overflow: hidden;
}

.site-footer__glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 600px 600px at -10% 120%, rgba(0, 168, 165, 0.12), transparent 55%),
    radial-gradient(ellipse 700px 700px at 110% 90%, rgba(79, 70, 229, 0.14), transparent 50%);
}

.site-footer__inner {
  position: relative;
  z-index: 1;
}

.site-footer__grid {
  display: grid;
  gap: 2.75rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3rem;
  }

  /* Marka her zaman 1. slot; aktif sağ kolonlar (Hızlı Erişim, Kanunlar,
     Bize Ulaşın) PHP tarafından --footer-col CSS değişkeni ile sağa
     paketlenmiş şekilde yerleştirilir. Bir bölüm pasif olunca araya boşluk
     girmez; tüm aktif olanlar sağda yan yana kalır. */
  .site-footer__col--brand { grid-column: 1; }
  .site-footer__col--quick,
  .site-footer__col--laws,
  .site-footer__col--contact {
    grid-column: var(--footer-col, auto);
  }
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  max-width: 100%;
}

/* Footer logosu = header ile aynı .brand-logo (boyut, gölge, mobil 72px) */
.site-footer__brand:hover .brand-logo {
  transform: scale(1.04);
}

.site-footer__brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.site-footer__brand-line1 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: var(--foreground);
}

.site-footer__brand-line2 {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.35;
  color: rgba(10, 10, 10, 0.55);
}

.site-footer__tagline {
  margin: 0;
  max-width: 28rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(10, 10, 10, 0.55);
}

.site-footer__col--brand .site-footer__tagline {
  margin-top: 1.25rem;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.site-footer__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(15, 23, 42, 0.04);
  color: rgba(10, 10, 10, 0.5);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.site-footer__social-btn:hover {
  color: #fff;
}

.site-footer__social-btn--fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 8px 24px rgba(24, 119, 242, 0.35);
}

.site-footer__social-btn--x:hover {
  background: #0f172a;
  border-color: #0f172a;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.35);
}

.site-footer__social-btn--ig:hover {
  background: #e4405f;
  border-color: #e4405f;
  box-shadow: 0 8px 24px rgba(228, 64, 95, 0.35);
}

.site-footer__social-btn--yt:hover {
  background: #ff0000;
  border-color: #ff0000;
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.35);
}

.site-footer__social-btn--li:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  box-shadow: 0 8px 24px rgba(10, 102, 194, 0.35);
}

.site-footer__social-btn--web:hover {
  background: #6366f1;
  border-color: #6366f1;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

.site-footer__heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--foreground);
}

.site-footer__heading-bar {
  width: 2rem;
  height: 4px;
  border-radius: 999px;
  flex-shrink: 0;
}

.site-footer__heading-bar--secondary {
  background: var(--secondary);
}

.site-footer__heading-bar--primary {
  background: var(--primary);
}

.site-footer__heading-bar--accent {
  background: var(--accent);
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links li + li {
  margin-top: 0.65rem;
}

.site-footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: rgba(10, 10, 10, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__chev,
.site-footer__arr {
  flex-shrink: 0;
  opacity: 0.55;
  transition: color 0.2s ease;
}

.site-footer__links a:hover {
  color: var(--secondary);
}

.site-footer__links a:hover .site-footer__chev {
  color: var(--secondary);
  opacity: 1;
}

.site-footer__links--laws a:hover {
  color: var(--primary);
}

.site-footer__links--laws a:hover .site-footer__arr {
  color: var(--primary);
  opacity: 1;
}

.site-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.site-footer__contact-row + .site-footer__contact-row {
  margin-top: 1.1rem;
}

.site-footer__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(15, 23, 42, 0.04);
}

.site-footer__contact-icon--pin {
  color: var(--secondary);
}

.site-footer__contact-icon--phone {
  color: var(--primary);
}

.site-footer__contact-icon--mail {
  color: var(--accent);
}

.site-footer__contact-text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.55);
}

.site-footer__contact-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(10, 10, 10, 0.55);
  text-decoration: none;
  align-self: center;
  transition: color 0.2s ease;
}

.site-footer__contact-link:hover {
  color: var(--foreground);
}

.site-footer__contact-link--email {
  word-break: break-all;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.site-footer__copy {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(10, 10, 10, 0.45);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .site-footer__legal {
    justify-content: flex-end;
  }
}

.site-footer__legal a {
  color: rgba(10, 10, 10, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__legal a:hover {
  color: var(--foreground);
}

/* Mobil menü */
@media (max-width: 900px) {
  .site-header {
    z-index: 110;
  }

  .header-inner {
    align-items: center;
    flex-wrap: wrap;
    row-gap: 0.35rem;
  }

  .header-inner .brand {
    flex: 1 1 0;
    min-width: 0;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    flex-shrink: 0;
    align-self: center;
    order: 2;
  }

  .header-flag {
    order: 3;
    margin-left: 0;
  }

  /* Tam genişlik katman; top = --site-header-offset (JS) veya fallback — ekstra boşluk yok */
  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--site-header-offset, calc(var(--header-min) + 1px));
    bottom: 0;
    width: 100%;
    max-width: none;
    flex: none;
    margin: 0;
    z-index: 100;
    display: block;
    padding: 0.65rem 1rem max(1.25rem, env(safe-area-inset-bottom));
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: none;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.38s ease,
      transform 0.46s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0s linear 0.42s;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 0.42s ease 0.05s,
      transform 0.48s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0s linear 0s;
  }

  html[data-theme="dark"] .site-nav {
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 1px solid var(--border-soft);
    margin-top: 0.35rem;
    margin-left: 0.25rem;
    display: none;
  }

  .sub-menu::before {
    margin: -0.5rem -0.5rem 0.35rem;
  }

  .has-sub.is-open > .sub-menu {
    display: block;
  }

  .has-sub:hover > .sub-menu {
    display: none;
  }

  .has-sub.is-open:hover > .sub-menu {
    display: block;
  }

  .has-sub.is-open > .sub-menu--online {
    display: flex;
  }

  .sub-menu--online {
    background: var(--glass);
  }

  /* Anasayfa: tek kolon, bloklar alt alta, yatay taşma yok */
  .page-home {
    overflow-x: hidden;
  }

  .page-home .container {
    width: 100%;
    max-width: 1120px;
    margin-inline: auto;
    padding-inline: 1rem;
    box-sizing: border-box;
  }

  .home-top {
    padding: clamp(1.25rem, 4vw, 1.75rem) 0 clamp(1.5rem, 5vw, 2.25rem);
  }

  .home-top__hero,
  .home-top__aside {
    width: 100%;
    min-width: 0;
  }

  .home-hero-ref__inner {
    text-align: left;
    margin-inline: 0;
    max-width: none;
    width: 100%;
  }

  .home-hero-ref__badge {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1rem;
    justify-content: flex-start;
    text-align: left;
    align-self: flex-start;
    max-width: 100%;
    font-size: 0.6rem;
    padding: 0.35rem 0.8rem;
    letter-spacing: 0.06em;
    white-space: normal;
    flex-wrap: wrap;
  }

  .home-hero-ref__title {
    font-size: clamp(1.65rem, 7.5vw, 2.2rem);
    margin-bottom: 0.85rem;
    line-height: 1.08;
  }

  .home-hero-ref__lead {
    margin-bottom: 1.25rem;
    padding: 0;
    font-size: 0.97rem;
    line-height: 1.62;
    max-width: none;
  }

  .home-hero-ref__actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    gap: 0.6rem;
  }

  .home-hero-ref__btn {
    justify-content: center;
    width: 100%;
    padding: 0.8rem 1.25rem;
    font-size: 0.92rem;
  }

  .home-announce-card {
    flex: none;
    width: 100%;
    min-height: 0;
    height: auto;
    padding: 1.15rem 1rem 1.25rem;
    border-radius: var(--radius-2xl);
    box-shadow:
      0 14px 36px -18px rgba(15, 23, 42, 0.14),
      0 0 0 1px rgba(255, 255, 255, 0.75) inset;
  }

  .home-announce-head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    margin-bottom: 0.95rem;
  }

  .home-announce-brand {
    min-width: 0;
    flex: 1;
  }

  .home-announce-heading {
    font-size: 1.18rem;
  }

  .home-announce-nav {
    align-self: auto;
    flex-shrink: 0;
    justify-content: flex-end;
    width: auto;
  }

  .home-announce-arrow {
    width: 44px;
    height: 44px;
  }

  .home-announce-slides[data-carousel-viewport] {
    flex: 0 1 auto;
    width: 100%;
  }

  .home-announce-slide {
    gap: 0.45rem;
  }

  .home-announce-slide.is-active .home-announce-empty {
    flex: 0 1 auto;
    min-height: 2.75rem;
    align-items: flex-start;
  }

  .home-announce-thumb-wrap {
    min-height: 0;
    height: auto;
    max-height: min(52vw, 220px);
    aspect-ratio: 16 / 9;
    margin-bottom: 0.55rem;
  }

  .home-announce-thumb-wrap--empty {
    aspect-ratio: 16 / 9;
    max-height: 140px;
  }

  .home-announce-item-title {
    min-height: 0;
    font-size: 1.08rem;
    line-clamp: 5;
    -webkit-line-clamp: 5;
  }

  .home-announce-excerpt {
    min-height: 0;
    font-size: 0.89rem;
    line-height: 1.52;
    -webkit-line-clamp: 10;
    line-clamp: 10;
  }

  .home-announce-read-more {
    margin-top: 0.5rem;
    padding: 0.4rem 0.95rem;
    font-size: 0.78rem;
  }

  .home-announce-dots {
    padding-top: 0.85rem;
    margin-top: 0.15rem;
  }

  .home-glimpse-ref {
    padding: clamp(1.35rem, 4vw, 1.85rem) 0 clamp(1.75rem, 6vw, 2.75rem);
  }

  .home-glimpse-ref__title {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
  }

  .home-glimpse-ref__rule {
    margin-bottom: 1.35rem;
  }

  .home-glimpse-card {
    width: 100%;
    padding: 1.2rem 1rem 1.3rem;
  }

  .home-glimpse-card:hover {
    transform: none;
  }

  .home-glimpse-card:active {
    transform: scale(0.995);
  }

  html[data-theme="dark"] .home-glimpse-card:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .page-home .container {
    padding-inline: 0.85rem;
  }

  .home-announce-slide .home-announce-meta {
    white-space: normal;
    flex-wrap: wrap;
  }

  .home-announce-thumb-wrap {
    max-height: min(56vw, 200px);
  }
}

@media (max-width: 900px) and (prefers-reduced-motion: reduce) {
  .site-nav,
  .site-nav.is-open {
    transition-duration: 0.01ms;
    transition-delay: 0s !important;
  }
}

/* ========== Anasayfa (referans: onlinekooperatif.netlify.app) ========== */
.page-home {
  overflow-x: clip;
}

/* İçerik genişliği Kanun ve Yönetmelikler ile aynı (1120px) — üst şerit .container kalır */
.page-home .container {
  width: min(1120px, 100% - 2rem);
}

.home-top {
  position: relative;
  padding: clamp(2.25rem, 6vw, 4rem) 0 clamp(2.75rem, 7vw, 4.5rem);
}

.home-top__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(79, 70, 229, 0.08), transparent 55%),
    radial-gradient(at 0% 0%, rgba(129, 140, 248, 0.15), transparent 45%),
    radial-gradient(at 100% 100%, rgba(6, 182, 212, 0.12), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* Üst bölüm: dar ekranda karşılama üstte, duyurular altta (tek sütun); geniş masaüstünde iki sütun */
.home-top__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: stretch;
}

.home-top__hero {
  min-width: 0;
}

.home-top__aside {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1101px) {
  .home-top__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
    min-height: clamp(560px, 58vh, 720px);
  }

  .home-top__hero {
    display: flex;
    align-items: center;
    min-height: 100%;
  }
}

.home-hero-ref__inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  text-align: left;
}

.home-hero-ref__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.35rem;
  padding: 0.38rem 0.95rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #4338ca;
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  border: 1px solid rgba(79, 70, 229, 0.12);
}

.home-hero-ref__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4f46e5;
}

.home-hero-ref__title {
  margin: 0 0 1.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-size: clamp(2.15rem, 6vw, 3.25rem);
}

.home-hero-ref__title-line {
  display: block;
}

.home-hero-ref__title-line--dark {
  color: var(--foreground);
}

.home-hero-ref__title-line--grad {
  background: linear-gradient(90deg, #2563eb, #06b6d4, #14b8a6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-hero-ref__lead {
  margin: 0 0 1.75rem;
  max-width: 38rem;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.65;
  color: var(--muted);
}

.home-hero-ref__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-start;
}

.home-hero-ref__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.82rem 1.65rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.home-hero-ref__btn:active {
  transform: scale(0.98);
}

.home-hero-ref__btn--primary {
  color: #fff;
  background: linear-gradient(90deg, #4f46e5, #06b6d4);
  background-origin: border-box;
  background-clip: padding-box;
  border-color: transparent;
  box-shadow: 0 4px 14px -4px rgba(79, 70, 229, 0.4);
}

.home-hero-ref__btn--primary:hover {
  color: #fff;
  background: linear-gradient(90deg, #5b52f0, #0ec5e0);
  background-origin: border-box;
  background-clip: padding-box;
  box-shadow: 0 6px 20px -4px rgba(6, 182, 212, 0.35);
}

.home-hero-ref__btn--ghost {
  color: var(--foreground);
  background: rgba(243, 244, 246, 0.95);
  border-color: rgba(15, 23, 42, 0.1);
}

.home-hero-ref__btn--ghost:hover {
  background: #fff;
  border-color: rgba(79, 70, 229, 0.2);
}

.home-hero-ref__btn-arrow {
  font-size: 1.1rem;
  line-height: 1;
}

.home-announce-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: unset;
  padding: clamp(1.35rem, 3vw, 1.75rem) clamp(1.35rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: calc(var(--radius-2xl) + 10px);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 24px 60px -24px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

@media (min-width: 1101px) {
  .home-announce-card {
    min-height: clamp(520px, 56vh, 680px);
    height: 100%;
  }
}

.home-announce-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
  flex-shrink: 0;
}

.home-announce-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.home-announce-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 168, 165, 0.1);
  border: 1px solid rgba(0, 168, 165, 0.2);
  color: var(--secondary);
}

.home-announce-heading {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.home-announce-sub {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.home-announce-live {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.home-announce-live.is-paused {
  background: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.28);
}

.home-announce-nav {
  display: flex;
  gap: 0.45rem;
  flex-shrink: 0;
}

.home-announce-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(248, 250, 252, 0.95);
  color: rgba(10, 10, 10, 0.72);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.home-announce-arrow:hover {
  background: #fff;
  border-color: rgba(79, 70, 229, 0.2);
  color: var(--primary);
}

.home-announce-slides[data-carousel-viewport] {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.home-announce-slides[data-carousel-viewport].is-dragging {
  cursor: grabbing;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.home-announce-track {
  display: flex;
  flex-direction: row;
  width: calc(var(--slide-count, 1) * 100%);
  transform: translate3d(
    calc(-100% * var(--carousel-index, 0) / var(--slide-count, 1) + var(--carousel-drag-x, 0px)),
    0,
    0
  );
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-announce-slides[data-carousel-viewport].is-dragging .home-announce-track {
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .home-announce-track {
    transition-duration: 0.01ms;
  }
}

.home-announce-slide {
  flex: 0 0 calc(100% / var(--slide-count, 1));
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.home-announce-slide.is-active .home-announce-empty {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  min-height: 4rem;
}

.home-announce-tag {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 0.75rem;
  padding: 0.22rem 0.55rem;
  border-radius: 8px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  flex-shrink: 0;
}

.home-announce-tag--default {
  color: #6d28d9;
  background: linear-gradient(135deg, #f3e8ff, #ede9fe);
  border: 1px solid rgba(124, 58, 237, 0.15);
}

.home-announce-thumb-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0.15rem 0 0.85rem;
  width: 100%;
  min-height: 200px;
  height: clamp(200px, 32vw, 300px);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(248, 250, 252, 0.95);
  box-sizing: border-box;
}

.home-announce-thumb-wrap--empty {
  border-style: dashed;
  border-color: rgba(15, 23, 42, 0.1);
  background: linear-gradient(145deg, rgba(248, 250, 252, 0.98), rgba(241, 245, 249, 0.85));
}

.home-announce-thumb {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.home-announce-meta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  color: var(--secondary);
  font-weight: 600;
  flex-shrink: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-announce-cal {
  display: flex;
  color: var(--secondary);
}

.home-announce-item-title {
  margin: 0 0 0.2rem;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  flex-shrink: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.home-announce-item-title a {
  color: inherit;
  text-decoration: none;
}

.home-announce-item-title a:hover {
  color: var(--primary);
}

.home-announce-excerpt {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
  flex: 1 1 auto;
  min-height: calc(3 * 1.55em);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.home-announce-read-more {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  gap: 0.3rem;
  margin-top: 0.35rem;
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  border: 1.5px solid color-mix(in srgb, var(--primary) 18%, transparent);
  border-radius: 9999px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.home-announce-read-more:hover {
  background: color-mix(in srgb, var(--primary) 15%, transparent);
  border-color: color-mix(in srgb, var(--primary) 35%, transparent);
}

.home-announce-read-more:active {
  transform: scale(0.97);
}

html[data-theme="dark"] .home-announce-read-more {
  color: var(--primary-light, var(--primary));
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  border-color: color-mix(in srgb, var(--primary) 25%, transparent);
}

html[data-theme="dark"] .home-announce-read-more:hover {
  background: color-mix(in srgb, var(--primary) 22%, transparent);
  border-color: color-mix(in srgb, var(--primary) 40%, transparent);
}

.home-announce-empty {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.home-announce-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1.35rem;
  flex-shrink: 0;
}

.home-announce-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.15);
  cursor: pointer;
  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.home-announce-dot.is-active {
  width: 1.55rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.home-glimpse-ref {
  padding: clamp(2rem, 5vw, 3rem) 0 clamp(3rem, 8vw, 5rem);
}

.home-glimpse-ref__title {
  margin: 0 0 0.65rem;
  text-align: center;
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.home-glimpse-ref__rule {
  width: 4rem;
  height: 4px;
  margin: 0 auto 2.25rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.home-glimpse-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.home-glimpse-card {
  flex: 1 1 100%;
  width: 100%;
  max-width: 100%;
  padding: 1.5rem 1.35rem 1.6rem;
  border-radius: calc(var(--radius-2xl) + 6px);
  background: rgba(248, 250, 252, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.home-glimpse-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.1);
  border-color: rgba(79, 70, 229, 0.12);
}

.home-glimpse-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 14px;
  border: 1px solid transparent;
}

.home-glimpse-icon--teal {
  background: rgba(0, 168, 165, 0.08);
  border-color: rgba(0, 168, 165, 0.18);
  color: var(--secondary);
}

.home-glimpse-icon--purple {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.15);
  color: #7c3aed;
}

.home-glimpse-icon--blue {
  background: rgba(14, 165, 233, 0.08);
  border-color: rgba(14, 165, 233, 0.2);
  color: #0284c7;
}

.home-glimpse-icon--amber {
  background: rgba(217, 119, 6, 0.1);
  border-color: rgba(217, 119, 6, 0.22);
  color: #d97706;
}

.home-glimpse-icon--rose {
  background: rgba(225, 29, 72, 0.08);
  border-color: rgba(225, 29, 72, 0.18);
  color: #e11d48;
}

.home-glimpse-icon--emerald {
  background: rgba(5, 150, 105, 0.09);
  border-color: rgba(5, 150, 105, 0.2);
  color: #059669;
}

.home-glimpse-icon--orange {
  background: rgba(234, 88, 12, 0.09);
  border-color: rgba(234, 88, 12, 0.2);
  color: #ea580c;
}

.home-glimpse-icon--indigo {
  background: rgba(79, 70, 229, 0.09);
  border-color: rgba(79, 70, 229, 0.18);
  color: #4f46e5;
}

.home-glimpse-card__title {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.home-glimpse-card__text {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.home-glimpse-link {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  min-height: 44px;
  padding: 0.35rem 0.15rem 0.35rem 0;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
}

.home-glimpse-link--teal {
  color: #0f766e;
}

.home-glimpse-link--purple {
  color: #6d28d9;
}

.home-glimpse-link--blue {
  color: #0369a1;
}

.home-glimpse-link--amber {
  color: #b45309;
}

.home-glimpse-link--rose {
  color: #be123c;
}

.home-glimpse-link--emerald {
  color: #047857;
}

.home-glimpse-link--orange {
  color: #c2410c;
}

.home-glimpse-link--indigo {
  color: #4338ca;
}

.home-glimpse-link:hover {
  text-decoration: underline;
}

@media (min-width: 1101px) {
  .home-glimpse-grid {
    gap: 1.15rem;
  }

  .home-glimpse-card {
    flex: 0 1 calc((100% - 2 * 1.15rem) / 3);
    max-width: calc((100% - 2 * 1.15rem) / 3);
    width: auto;
  }
}

/* Dar / mobil görünüm: Göz Atın kartları tam genişlik; okunabilir satır aralığı */
@media (max-width: 1100px) {
  .home-glimpse-card__title {
    font-size: 1.14rem;
    line-height: 1.28;
  }

  .home-glimpse-card__text {
    font-size: 0.96rem;
    line-height: 1.65;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-ref__btn,
  .home-announce-arrow,
  .home-announce-read-more,
  .home-glimpse-card,
  .home-announce-dot {
    transition: none;
  }
}

@keyframes home-spin {
  to {
    transform: rotate(360deg);
  }
}

/* —— Kredi Çeşitleri & Hesaplama (referans görünüm) —— */
.page-kredi {
  max-width: 900px;
  margin-inline: auto;
}

/* Kanun ve İletişim: .page-kredi (900px) — tek sınıf .page-iletisim bunun altında kalırdı */
.page-kredi.page-kanun-page,
.page-kredi.page-iletisim,
.page-kredi.page-faiz-page,
.page-kredi.page-legal,
.page-kredi.page-basvuru {
  max-width: 1120px;
}

.page-kredi-calc-page {
  max-width: 640px;
}

.kredi-hero {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-soft);
}

.kredi-hero--compact {
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}

.kredi-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--secondary);
}

.page-kredi .kredi-hero h1,
.page-kredi-calc-page .kredi-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--foreground);
}

.kredi-lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 52ch;
}

.kredi-calc-teaser {
  margin-bottom: 2.75rem;
}

.kredi-calc-teaser-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: calc(var(--radius-2xl) + 6px);
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.09) 0%,
    rgba(0, 168, 165, 0.1) 50%,
    rgba(255, 255, 255, 0.98) 100%
  );
  border: 1px solid rgba(79, 70, 229, 0.15);
  box-shadow: var(--shadow-card);
}

.kredi-calc-copy h2 {
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.kredi-calc-copy p {
  margin: 0 0 1.15rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 42ch;
}

.kredi-btn-calc {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #6366f1);
  box-shadow: 0 12px 32px -8px rgba(79, 70, 229, 0.55);
  transition:
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.kredi-btn-calc:hover {
  color: #fff;
  box-shadow: 0 16px 40px -6px rgba(79, 70, 229, 0.65);
}

.kredi-btn-calc:active {
  transform: scale(0.98);
}

.kredi-calc-visual {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.kredi-calc-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(79, 70, 229, 0.25);
  animation: home-spin 45s linear infinite;
}

.kredi-calc-icon {
  position: absolute;
  inset: 18%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-soft);
  color: var(--primary);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
}

.kredi-types-title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.kredi-types-deck {
  margin: 0 0 1.75rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.kredi-card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.15rem;
}

/* Tek sütun: kartlar satırı doldurup genişlemesin (yoksa dar ekranda da 3–4 yan yana oluşur). */
.kredi-card-grid > .kredi-type-card {
  box-sizing: border-box;
  flex: 0 1 100%;
  max-width: 100%;
  min-width: 0;
}

/* En fazla 3 sütun; flex-grow: 0 ile dördüncü kart alta kayar, justify-content ile ortalanır. */
@media (min-width: 640px) {
  .kredi-card-grid > .kredi-type-card {
    flex: 0 1 calc((100% - 2 * 1.15rem) / 3);
    max-width: calc((100% - 2 * 1.15rem) / 3);
  }
}

.kredi-type-card {
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: var(--radius-2xl);
  background: var(--background);
  border: 1px solid var(--border-soft);
  box-shadow: 0 6px 28px rgba(15, 23, 42, 0.06);
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.kredi-type-card:hover {
  border-color: rgba(79, 70, 229, 0.18);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.kredi-type-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0.85rem;
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(79, 70, 229, 0.12),
    rgba(6, 182, 212, 0.1)
  );
  color: var(--primary);
}

.kredi-type-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.kredi-type-lead {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.kredi-type-list {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.88rem;
  color: rgba(10, 10, 10, 0.78);
  line-height: 1.55;
}

.kredi-type-list li {
  margin-bottom: 0.35rem;
}

.kredi-disclaimer {
  margin-top: 2.5rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-xl);
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid var(--border-soft);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.kredi-disclaimer strong {
  color: var(--foreground);
}

.kredi-disclaimer a {
  font-weight: 600;
}

/* Kredi Çeşitleri sayfası (referans düzeni) */
.page-kredi-cesitleri {
  max-width: 1120px;
}

.kredi-type-icon--teal {
  background: rgba(0, 168, 165, 0.12) !important;
  border: 1px solid rgba(0, 168, 165, 0.22);
  color: var(--secondary) !important;
}

.kredi-type-icon--purple {
  background: rgba(124, 58, 237, 0.1) !important;
  border: 1px solid rgba(124, 58, 237, 0.18);
  color: #7c3aed !important;
}

.kredi-type-icon--blue {
  background: rgba(14, 165, 233, 0.1) !important;
  border: 1px solid rgba(14, 165, 233, 0.22);
  color: #0284c7 !important;
}

.kredi-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(10, 10, 10, 0.82);
}

.kredi-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.5rem;
}

.kredi-feature-list li:last-child {
  margin-bottom: 0;
}

.kredi-feature-check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.12rem;
  border-radius: 999px;
  color: #fff;
}

.kredi-feature-check svg {
  display: block;
}

.kredi-feature-check--teal {
  background: var(--secondary);
  box-shadow: 0 2px 8px rgba(0, 168, 165, 0.35);
}

.kredi-feature-check--purple {
  background: #7c3aed;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.35);
}

.kredi-feature-check--blue {
  background: #0ea5e9;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.35);
}

.kredi-type-icon--cyan {
  background: rgba(6, 182, 212, 0.14) !important;
  border: 1px solid rgba(6, 182, 212, 0.28);
  color: #0891b2 !important;
}

.kredi-feature-check--cyan {
  background: #06b6d4;
  box-shadow: 0 2px 8px rgba(6, 182, 212, 0.35);
}

.kredi-type-icon--sky {
  background: rgba(56, 189, 248, 0.14) !important;
  border: 1px solid rgba(56, 189, 248, 0.28);
  color: #0284c7 !important;
}

.kredi-feature-check--sky {
  background: #38bdf8;
  box-shadow: 0 2px 8px rgba(56, 189, 248, 0.35);
}

.kredi-type-icon--indigo {
  background: rgba(99, 102, 241, 0.12) !important;
  border: 1px solid rgba(99, 102, 241, 0.22);
  color: #4f46e5 !important;
}

.kredi-feature-check--indigo {
  background: #6366f1;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.35);
}

.kredi-type-icon--violet {
  background: rgba(139, 92, 246, 0.12) !important;
  border: 1px solid rgba(139, 92, 246, 0.22);
  color: #7c3aed !important;
}

.kredi-feature-check--violet {
  background: #8b5cf6;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.35);
}

.kredi-type-icon--fuchsia {
  background: rgba(217, 70, 239, 0.12) !important;
  border: 1px solid rgba(217, 70, 239, 0.22);
  color: #c026d3 !important;
}

.kredi-feature-check--fuchsia {
  background: #d946ef;
  box-shadow: 0 2px 8px rgba(217, 70, 239, 0.35);
}

.kredi-type-icon--rose {
  background: rgba(244, 63, 94, 0.12) !important;
  border: 1px solid rgba(244, 63, 94, 0.22);
  color: #e11d48 !important;
}

.kredi-feature-check--rose {
  background: #f43f5e;
  box-shadow: 0 2px 8px rgba(244, 63, 94, 0.35);
}

.kredi-type-icon--red {
  background: rgba(239, 68, 68, 0.12) !important;
  border: 1px solid rgba(239, 68, 68, 0.22);
  color: #dc2626 !important;
}

.kredi-feature-check--red {
  background: #ef4444;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.35);
}

.kredi-type-icon--orange {
  background: rgba(249, 115, 22, 0.12) !important;
  border: 1px solid rgba(249, 115, 22, 0.22);
  color: #ea580c !important;
}

.kredi-feature-check--orange {
  background: #f97316;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.35);
}

.kredi-type-icon--amber {
  background: rgba(245, 158, 11, 0.14) !important;
  border: 1px solid rgba(245, 158, 11, 0.26);
  color: #d97706 !important;
}

.kredi-feature-check--amber {
  background: #f59e0b;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
}

.kredi-type-icon--lime {
  background: rgba(132, 204, 22, 0.14) !important;
  border: 1px solid rgba(132, 204, 22, 0.28);
  color: #65a30d !important;
}

.kredi-feature-check--lime {
  background: #84cc16;
  box-shadow: 0 2px 8px rgba(132, 204, 22, 0.35);
}

.kredi-type-icon--emerald {
  background: rgba(16, 185, 129, 0.12) !important;
  border: 1px solid rgba(16, 185, 129, 0.24);
  color: #059669 !important;
}

.kredi-feature-check--emerald {
  background: #10b981;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);
}

.kredi-calc-teaser--below {
  margin-top: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0;
}

.kredi-calc-teaser-inner--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.15rem;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.25rem, 3vw, 2rem);
}

.kredi-calc-teaser-inner--centered .kredi-calc-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 36rem;
}

.kredi-calc-teaser-inner--centered .kredi-calc-copy h2 {
  margin-top: 0;
}

.kredi-calc-teaser-inner--centered .kredi-calc-copy p {
  margin-left: auto;
  margin-right: auto;
  max-width: 42ch;
}

.kredi-calc-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 18px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(79, 70, 229, 0.12);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.kredi-btn-calc--cyan {
  background: linear-gradient(90deg, #06b6d4, #14b8a6) !important;
  box-shadow: 0 12px 32px -8px rgba(6, 182, 212, 0.45) !important;
}

.kredi-btn-calc--cyan:hover {
  box-shadow: 0 16px 40px -6px rgba(6, 182, 212, 0.55) !important;
}

/* Kredi kullanım şartları (referans sayfa düzeni) */
.page-kredi-sartlari {
  max-width: 1120px;
}

.kredi-hero--sartlari {
  text-align: center;
  border-bottom: none;
  padding-bottom: 1.5rem;
  margin-bottom: 2.25rem;
}

.kredi-eyebrow--center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.kredi-eyebrow-line {
  display: block;
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.kredi-eyebrow-line--flip {
  background: linear-gradient(90deg, var(--accent), transparent);
}

.kredi-title-gradient {
  background: linear-gradient(90deg, var(--accent), var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kredi-hero--sartlari h1 {
  max-width: none;
}

.kredi-lead--center {
  margin-inline: auto;
  text-align: center;
  max-width: 42rem;
}

.kredi-hero-divider {
  margin: 2rem auto 0;
  width: min(18rem, 60%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.45), transparent);
}

.kredi-sart-block {
  margin-bottom: 2.75rem;
}

.kredi-sart-block:last-of-type {
  margin-bottom: 0;
}

.kredi-sart-heading {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.kredi-sart-heading--stack {
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}

.kredi-sart-heading-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(
    145deg,
    rgba(6, 182, 212, 0.14),
    rgba(79, 70, 229, 0.1)
  );
  color: var(--accent);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.kredi-sart-heading-icon--shield {
  color: var(--primary);
  background: linear-gradient(
    145deg,
    rgba(79, 70, 229, 0.12),
    rgba(0, 168, 165, 0.08)
  );
  border-color: rgba(79, 70, 229, 0.15);
}

.kredi-sart-heading h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.kredi-eligibility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  min-width: 0;
}

/* Tek başına kalan son satır (7 madde vb.): kartı bir sütun genişliğinde ortala */
@media (min-width: 769px) {
  .kredi-eligibility-grid > .kredi-eligibility-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: calc((100% - 1rem) / 2);
  }
}

.kredi-eligibility-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-2xl);
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid var(--border-soft);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.kredi-eligibility-card p {
  margin: 0;
  min-width: 0;
  max-width: 100%;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(10, 10, 10, 0.85);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.kredi-check-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.15);
  color: var(--accent);
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.kredi-teminat-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: calc(var(--radius-2xl) + 8px);
  border: 1px solid rgba(6, 182, 212, 0.22);
  background: linear-gradient(
    145deg,
    rgba(6, 182, 212, 0.06),
    rgba(79, 70, 229, 0.05) 45%,
    rgba(255, 255, 255, 0.96)
  );
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.kredi-teminat-lead {
  margin: 0 0 1.15rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.kredi-teminat-note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-xl);
  background: rgba(79, 70, 229, 0.07);
  border: 1px solid rgba(79, 70, 229, 0.12);
}

.kredi-teminat-note p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(10, 10, 10, 0.75);
}

.kredi-teminat-note-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  font-style: italic;
  background: rgba(79, 70, 229, 0.18);
  color: var(--primary);
}

.kredi-teminat-cards {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.kredi-teminat-card {
  margin: 0;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-xl);
  background: var(--background);
  border: 1px solid var(--border-soft);
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.05);
}

.kredi-teminat-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.kredi-teminat-card h3::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
  opacity: 0.85;
}

.kredi-teminat-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(10, 10, 10, 0.78);
}

.kredi-belge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.kredi-belge-card {
  padding: 1.25rem 1.35rem 1.4rem;
  border-radius: var(--radius-2xl);
  background: rgba(248, 250, 252, 0.98);
  border: 1px solid var(--border-soft);
  box-shadow: 0 6px 28px rgba(15, 23, 42, 0.05);
}

.kredi-belge-card h3 {
  margin: 0 0 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.02em;
}

.kredi-belge-card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.82);
}

.kredi-belge-card li {
  margin-bottom: 0.4rem;
}

.kredi-belge-card li::marker {
  color: var(--accent);
}

.kredi-sart-cta {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-soft);
  text-align: center;
}

.kredi-sart-cta-text {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 36rem;
  margin-inline: auto;
}

.kredi-btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2.25rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  box-shadow: 0 14px 36px -8px rgba(79, 70, 229, 0.45);
  transition:
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.kredi-btn-cta:hover {
  color: #fff;
  box-shadow: 0 18px 44px -6px rgba(79, 70, 229, 0.55);
}

.kredi-btn-cta:active {
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .kredi-eligibility-grid,
  .kredi-belge-grid,
  .kredi-teminat-shell {
    grid-template-columns: 1fr;
  }
}

/* Faiz oranları sayfası (referans: Desktop/referans) */
.page-faiz-page {
  max-width: 1120px;
}

.faiz-showcase {
  margin-bottom: 2rem;
}

.faiz-hero-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2.5rem);
  border-radius: calc(var(--radius-2xl) + 14px);
  border: 1px solid rgba(6, 182, 212, 0.18);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(224, 242, 254, 0.65) 42%,
    rgba(237, 233, 254, 0.55) 100%
  );
  box-shadow:
    0 20px 50px -18px rgba(15, 23, 42, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.faiz-rate-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #fff;
  background: linear-gradient(90deg, var(--accent), #22d3ee);
  box-shadow: 0 8px 24px -6px rgba(6, 182, 212, 0.55);
}

.faiz-rate-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  margin: 0 0 0.85rem;
  line-height: 1;
}

.faiz-rate-pct {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--foreground);
  opacity: 0.92;
}

.faiz-rate-num {
  font-size: clamp(3.5rem, 12vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--foreground);
}

.faiz-rate-caption {
  margin: 0;
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.faiz-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  margin-bottom: 1.75rem;
}

@media (max-width: 900px) {
  .faiz-detail-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.faiz-detail-card {
  padding: 1.35rem 1.4rem 1.45rem;
  border-radius: var(--radius-2xl);
  background: rgba(248, 250, 252, 0.98);
  border: 1px solid var(--border-soft);
  box-shadow: 0 6px 28px rgba(15, 23, 42, 0.05);
}

.faiz-detail-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.faiz-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 14px;
  border: 1px solid rgba(0, 168, 165, 0.2);
}

.faiz-detail-icon--calendar {
  background: rgba(0, 168, 165, 0.1);
  color: var(--secondary);
}

.faiz-detail-icon--percent {
  background: rgba(6, 182, 212, 0.12);
  color: var(--accent);
  border-color: rgba(6, 182, 212, 0.22);
}

.faiz-detail-head h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.faiz-detail-rows {
  margin: 0;
}

.faiz-detail-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.faiz-detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faiz-detail-row:first-child {
  padding-top: 0;
}

.faiz-detail-row dt {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(10, 10, 10, 0.72);
  font-weight: 500;
}

.faiz-detail-row dd {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--foreground);
  white-space: nowrap;
}

.faiz-info-banner {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  margin-bottom: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(6, 182, 212, 0.28);
  background: rgba(224, 242, 254, 0.55);
}

.faiz-info-banner p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.78);
}

.faiz-info-icon {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  font-style: italic;
  background: rgba(6, 182, 212, 0.25);
  color: #0369a1;
  border: 1px solid rgba(6, 182, 212, 0.35);
}

.faiz-cta {
  text-align: center;
}

.faiz-btn-calc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, var(--secondary), #14b8a6);
  box-shadow: 0 14px 36px -10px rgba(0, 168, 165, 0.55);
  transition:
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.faiz-btn-calc:hover {
  color: #fff;
  box-shadow: 0 18px 42px -8px rgba(0, 168, 165, 0.65);
}

.faiz-btn-calc:active {
  transform: scale(0.98);
}

.kanun-doc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  margin-bottom: 1.75rem;
  min-width: 0;
}

/* Tek başına kalan son kart (5 doküman vb.): bir sütun genişliğinde ortala */
@media (min-width: 769px) {
  .kanun-doc-grid > .kanun-doc-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: calc((100% - 1.15rem) / 2);
    width: 100%;
  }
}

.kanun-doc-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.35rem 1.25rem;
  border-radius: var(--radius-2xl);
  background: rgba(248, 250, 252, 0.98);
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

.kanun-doc-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.kanun-doc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: rgba(10, 10, 10, 0.55);
}

.kanun-badge {
  flex-shrink: 0;
  padding: 0.28rem 0.65rem;
  border-radius: 8px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.kanun-badge--sozlesme {
  color: #3730a3;
  background: rgba(79, 70, 229, 0.12);
  border: 1px solid rgba(79, 70, 229, 0.18);
}

.kanun-badge--kanun {
  color: #0f766e;
  background: rgba(0, 168, 165, 0.14);
  border: 1px solid rgba(0, 168, 165, 0.22);
}

.kanun-doc-title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--foreground);
}

.kanun-doc-meta {
  margin: 0 0 1.15rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--muted);
}

.kanun-doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
}

.kanun-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex: 1;
  min-width: 0;
  padding: 0.55rem 0.85rem;
  border-radius: 11px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    box-shadow 0.2s ease,
    background 0.2s ease,
    transform 0.15s ease;
}

.kanun-btn--ghost {
  color: rgba(10, 10, 10, 0.78);
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.kanun-btn--ghost:hover {
  background: rgba(15, 23, 42, 0.08);
}

.kanun-btn--primary {
  color: #fff;
  border: none;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  box-shadow: 0 10px 28px -8px rgba(79, 70, 229, 0.45);
}

.kanun-btn--primary:hover {
  color: #fff;
  box-shadow: 0 14px 34px -6px rgba(79, 70, 229, 0.55);
}

.kanun-btn--primary:active,
.kanun-btn--ghost:active {
  transform: scale(0.98);
}

.kanun-pdf-note {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft);
  background: rgba(248, 250, 252, 0.95);
}

.kanun-pdf-note p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

@media (max-width: 768px) {
  .kanun-doc-grid {
    grid-template-columns: 1fr;
  }

  .kanun-doc-actions {
    flex-direction: column;
  }

  .kanun-btn {
    justify-content: center;
    width: 100%;
  }
}

/* ===== Gizlilik Politikası / Kullanım Şartları ===== */
.legal-updated {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted, #64748b);
  margin-top: 0.35rem;
  margin-bottom: 0;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.legal-section {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--border, #e2e8f0) 60%, transparent);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section__number {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--primary, #4f46e5), var(--accent, #06b6d4));
  color: #fff;
  line-height: 1;
  margin-top: 0.15rem;
}

.legal-section__body {
  flex: 1;
  min-width: 0;
}

.legal-section__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text, #0f172a);
  line-height: 1.35;
}

.legal-section__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted, #475569);
}

@media (max-width: 640px) {
  .legal-section {
    flex-direction: column;
    gap: 0.75rem;
  }
  .legal-section__number {
    width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
  }
}

/* ===== Başvuru & Gerekli Evraklar ===== */
.basv-form-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid color-mix(in srgb, var(--border, #e2e8f0) 70%, transparent);
  background: var(--surface-elevated, #fff);
  box-shadow: 0 4px 24px -6px rgba(15, 23, 42, 0.08);
  margin-bottom: 2.5rem;
}

.basv-form-card__icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primary, #4f46e5), var(--accent, #06b6d4));
  color: #fff;
}

.basv-form-card__body {
  flex: 1;
  min-width: 0;
}

.basv-form-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--text, #0f172a);
}

.basv-form-card__desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted, #475569);
  margin: 0 0 1rem;
}

.basv-form-card__actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.basv-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  padding: 0.6rem 1.15rem;
  border-radius: 0.6rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.18s ease;
  border: 1px solid transparent;
}

.basv-btn--primary {
  background: linear-gradient(135deg, var(--primary, #4f46e5), var(--accent, #06b6d4));
  color: #fff;
  box-shadow: 0 2px 10px -3px rgba(79, 70, 229, 0.35);
}

.basv-btn--primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 4px 16px -4px rgba(79, 70, 229, 0.45);
}

.basv-btn--ghost {
  background: var(--surface-subtle, #f8fafc);
  color: var(--text, #0f172a);
  border-color: var(--border, #e2e8f0);
}

.basv-btn--ghost:hover {
  background: var(--surface-elevated, #fff);
  border-color: color-mix(in srgb, var(--primary, #4f46e5) 40%, var(--border, #e2e8f0));
}

.basv-docs {
  margin-bottom: 1rem;
}

.basv-docs__heading {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text, #0f172a);
  margin: 0 0 1.25rem;
}

.basv-docs__heading svg {
  color: var(--primary, #4f46e5);
  flex-shrink: 0;
}

.basv-docs__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* --- Kredi türü sekmeleri --- */
.basv-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.basv-tabs__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.15rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted, #64748b);
  background: rgba(99,102,241,0.04);
  border: 1.5px solid rgba(99,102,241,0.12);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.basv-tabs__btn:hover {
  color: var(--primary, #4f46e5);
  background: rgba(99,102,241,0.08);
  border-color: rgba(99,102,241,0.25);
}

.basv-tabs__btn--active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary, #4f46e5), var(--accent, #06b6d4));
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(79,70,229,0.25);
}

.basv-tabs__btn--active:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--primary, #4f46e5), var(--accent, #06b6d4));
  border-color: transparent;
}

.basv-tabs__btn svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.basv-tabs__btn--active svg {
  opacity: 1;
}

.basv-docs__panel {
  display: none;
}

.basv-docs__panel--active {
  display: block;
}

.basv-docs__empty {
  font-size: 0.9rem;
  color: var(--muted, #64748b);
  font-style: italic;
  padding: 1.5rem 0;
}

.basv-docs__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 0 0.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

@media (max-width: 480px) {
  .basv-docs__actions {
    flex-direction: column;
  }
  .basv-docs__actions .basv-btn {
    width: 100%;
    justify-content: center;
  }
}

.basv-doc-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--border, #e2e8f0) 60%, transparent);
}

.basv-doc-item:last-child {
  border-bottom: none;
}

.basv-doc-item__num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: color-mix(in srgb, var(--primary, #4f46e5) 10%, var(--surface-subtle, #f8fafc));
  color: var(--primary, #4f46e5);
  border: 1px solid color-mix(in srgb, var(--primary, #4f46e5) 20%, transparent);
}

.basv-doc-item__body {
  flex: 1;
  min-width: 0;
}

.basv-doc-item__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.2rem;
  color: var(--text, #0f172a);
}

.basv-doc-item__desc {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted, #64748b);
  margin: 0;
}

.basv-doc-item__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
  margin-top: 0.45rem;
}

.basv-doc-item__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary, #4f46e5);
  text-decoration: none;
  transition: color 0.15s ease;
}

.basv-doc-item__link:hover {
  color: var(--accent, #06b6d4);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .basv-form-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
  }
  .basv-form-card__actions {
    flex-direction: column;
  }
  .basv-btn {
    justify-content: center;
    width: 100%;
  }
}

/* Yönetim Kurulu */
.page-yonetim-page {
  max-width: 1120px;
}

.yonetim-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--secondary);
}

.yonetim-eyebrow-dash {
  opacity: 0.55;
  font-weight: 600;
}

.yonetim-board {
  padding-bottom: 1rem;
}

.yonetim-featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

/* Referans: Tailwind w-40 h-52 (160×208px), öne çıkan w-48 h-64 (192×256px) */
.yonetim-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 160px;
  margin-inline: auto;
  margin-bottom: 0.65rem;
}

.yonetim-photo-wrap--featured {
  max-width: 192px;
  margin-bottom: 0.85rem;
  padding-bottom: 0.2rem;
}

.yonetim-photo-frame {
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
  aspect-ratio: 40 / 52;
  background: rgba(248, 250, 252, 0.9);
}

.yonetim-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yonetim-photo-frame--featured {
  border: none;
  padding: 0.375rem;
  border-radius: 0.75rem;
  aspect-ratio: 48 / 64;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--accent) 45%,
    var(--secondary) 100%
  );
  box-shadow: 0 10px 32px rgba(79, 70, 229, 0.16);
}

.yonetim-photo-frame--featured img {
  border-radius: 0.5rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yonetim-badge {
  position: absolute;
  bottom: -0.55rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(90deg, var(--secondary), #14b8a6);
  box-shadow: 0 8px 24px rgba(0, 168, 165, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.95);
}

.yonetim-name {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

.yonetim-role {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(10, 10, 10, 0.45);
}

.yonetim-role--accent {
  color: var(--secondary);
}

.yonetim-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 1rem;
  justify-items: center;
  margin-bottom: 1.35rem;
}

/* Son satırda 1–2 kişi kaldığında sola yapışmasın */
.yonetim-grid.yonetim-grid--remainder {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25rem 1rem;
}

.yonetim-grid--single {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 0;
}

.yonetim-grid--pair {
  grid-template-columns: repeat(2, minmax(0, 192px));
  justify-content: center;
  column-gap: 2rem;
  row-gap: 1.25rem;
  max-width: 448px;
  margin-inline: auto;
  margin-bottom: 0;
}

/* Denetim kurulu: geniş masaüstünde satır başına en fazla 3 kart */
@media (min-width: 901px) {
  .page-denetim-kurulu .yonetim-board .yonetim-grid:not(.yonetim-grid--remainder) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: min(960px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 900px) and (min-width: 561px) {
  .page-denetim-kurulu .yonetim-board .yonetim-grid:not(.yonetim-grid--remainder) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.yonetim-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 160px;
}

@media (min-width: 640px) {
  .yonetim-card {
    max-width: 192px;
  }
}

@media (max-width: 900px) {
  .yonetim-grid:not(.yonetim-grid--single):not(.yonetim-grid--pair):not(.yonetim-grid--remainder) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .yonetim-grid:not(.yonetim-grid--single):not(.yonetim-grid--pair):not(.yonetim-grid--remainder) {
    grid-template-columns: 1fr;
  }

  .yonetim-grid--pair {
    grid-template-columns: minmax(0, 192px);
    justify-content: center;
  }
}

/* Personel kadrosu */
.personel-kadro .personel-section-heading:first-of-type {
  margin-top: 0.25rem;
}

.personel-section-heading {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  margin: 2.25rem 0 1.5rem;
  text-align: center;
}

.personel-section-line {
  flex: 1;
  min-width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.14), transparent);
}

.personel-section-title {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: rgba(10, 10, 10, 0.52);
}

/* Personel kadrosu satır grid: davranış Yönetim Kurulu ile birebir aynı
 * (3 sütun grid + 3'ten az kart için flex+center -- yonetim-grid--remainder).
 * Sadece ardışık satırlar arasında küçük bir dikey boşluk veriyoruz. */
.personel-yonetim-grid {
  margin-bottom: 0;
}
.personel-yonetim-grid + .personel-yonetim-grid {
  margin-top: 1.25rem;
}

/* Personel kadrosu — Müdür satırı (Yönetim Kurulu Başkanı ile aynı altın çerçeve + rozet stili) */
.personel-mudur-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.75rem 2.5rem;
  margin-top: 0.25rem;
  margin-bottom: 2rem;
}

.personel-mudur-row .yonetim-featured {
  margin-bottom: 0;
}

/* Hesaplama sayfası */
.kredi-calc-app {
  padding: 1.5rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border-soft);
  background: var(--background);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

.kredi-calc-form {
  display: grid;
  gap: 1rem;
}

.kredi-field span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.kredi-field input {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  font-size: 1rem;
  font-family: inherit;
}

.kredi-btn-submit {
  margin-top: 0.25rem;
  padding: 0.7rem 1rem;
  border: 0;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  font-family: inherit;
}

.kredi-btn-submit:hover {
  filter: brightness(1.05);
}

.kredi-calc-result {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--border-soft);
}

.kredi-result-label {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.kredi-result-value {
  margin: 0 0 1rem;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.kredi-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0;
}

.kredi-result-grid dt {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.kredi-result-grid dd {
  margin: 0.15rem 0 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.kredi-calc-footnote {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 720px) {
  .kredi-calc-teaser-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .kredi-calc-visual {
    margin-inline: auto;
  }

  .kredi-btn-calc {
    width: 100%;
    justify-content: center;
  }

  .kredi-result-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Tema: üst çubuk düğmesi ========== */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--foreground);
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.theme-toggle--nav {
  width: 40px;
  height: 40px;
}

.theme-toggle:hover {
  background: rgba(79, 70, 229, 0.08);
  border-color: rgba(79, 70, 229, 0.22);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.theme-toggle__sun {
  display: none;
}

.theme-toggle__moon {
  display: block;
}

/* ========== Koyu tema (data-theme + localStorage) ========== */
html[data-theme="dark"] {
  color-scheme: dark;
  --background: #0b1220;
  --foreground: #e7edf5;
  --muted: rgba(231, 237, 245, 0.72);
  --border-soft: rgba(148, 163, 184, 0.2);
  --glass: rgba(17, 24, 39, 0.92);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.55);
  --shadow-card: 0 10px 40px -12px rgba(0, 0, 0, 0.45);
  --surface-elevated: #121a2e;
  --surface-subtle: #0f1626;
}

html[data-theme="dark"] a:hover {
  color: #a5b4fc;
}

html[data-theme="dark"] .theme-toggle {
  background: rgba(30, 41, 59, 0.95);
  color: #e2e8f0;
  border-color: rgba(148, 163, 184, 0.25);
}

html[data-theme="dark"] .theme-toggle:hover {
  background: rgba(79, 70, 229, 0.2);
  border-color: rgba(129, 140, 248, 0.45);
}

html[data-theme="dark"] .theme-toggle__moon {
  display: none;
}

html[data-theme="dark"] .theme-toggle__sun {
  display: block;
}

html[data-theme="dark"] .site-header {
  background: rgba(15, 23, 42, 0.78);
  border-bottom-color: rgba(148, 163, 184, 0.12);
}

html[data-theme="dark"] .brand-name--line1 {
  color: var(--foreground);
}

html[data-theme="dark"] .brand-name--line2 {
  color: rgba(203, 213, 225, 0.75);
}

html[data-theme="dark"] .brand:hover .brand-name--line1,
html[data-theme="dark"] .brand:hover .brand-name--line2 {
  color: var(--foreground);
}

html[data-theme="dark"] .nav-list > li > a,
html[data-theme="dark"] .sub-toggle {
  color: rgba(226, 232, 240, 0.86);
}

html[data-theme="dark"] .nav-list > li > a:hover,
html[data-theme="dark"] .sub-toggle:hover {
  color: var(--foreground);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .sub-toggle::after {
  border-top-color: rgba(226, 232, 240, 0.5);
}

html[data-theme="dark"] .sub-menu a {
  color: rgba(226, 232, 240, 0.9);
}

html[data-theme="dark"] .sub-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--foreground);
}

html[data-theme="dark"] .nav-toggle {
  background: rgba(30, 41, 59, 0.95);
}

html[data-theme="dark"] .site-footer--ref {
  border-top-color: rgba(148, 163, 184, 0.12);
}

html[data-theme="dark"] .site-footer__brand-line1 {
  color: var(--foreground);
}

html[data-theme="dark"] .site-footer__brand-line2,
html[data-theme="dark"] .site-footer__tagline {
  color: rgba(203, 213, 225, 0.65);
}

html[data-theme="dark"] .site-footer__social-btn {
  border-color: rgba(148, 163, 184, 0.22);
  background: rgba(30, 41, 59, 0.85);
  color: rgba(226, 232, 240, 0.92);
}

html[data-theme="dark"] .site-footer__social-btn:hover {
  color: #fff;
}

html[data-theme="dark"] .site-footer__bottom {
  border-top-color: rgba(148, 163, 184, 0.12);
}

html[data-theme="dark"] .site-footer__copy,
html[data-theme="dark"] .site-footer__legal a {
  color: rgba(148, 163, 184, 0.85);
}

html[data-theme="dark"] .home-top__bg {
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(79, 70, 229, 0.18), transparent 55%),
    radial-gradient(at 0% 0%, rgba(129, 140, 248, 0.12), transparent 45%),
    radial-gradient(at 100% 100%, rgba(6, 182, 212, 0.1), transparent 40%),
    linear-gradient(180deg, #0b1220 0%, #111827 100%);
}

html[data-theme="dark"] .home-announce-card {
  background: var(--surface-elevated);
  border-color: rgba(148, 163, 184, 0.15);
  box-shadow:
    0 24px 60px -24px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

html[data-theme="dark"] .home-announce-arrow {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(148, 163, 184, 0.15);
  color: rgba(226, 232, 240, 0.75);
}

html[data-theme="dark"] .home-announce-thumb-wrap,
html[data-theme="dark"] .home-announce-thumb-wrap--empty {
  background: var(--surface-subtle);
  border-color: rgba(148, 163, 184, 0.12);
}

html[data-theme="dark"] .home-glimpse-card,
html[data-theme="dark"] .kredi-type-card {
  background: var(--surface-elevated);
  border-color: rgba(148, 163, 184, 0.15);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .kredi-calc-teaser-inner {
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.15) 0%,
    rgba(0, 168, 165, 0.12) 50%,
    rgba(17, 24, 39, 0.95) 100%
  );
  border-color: rgba(129, 140, 248, 0.25);
}

html[data-theme="dark"] .kredi-calc-icon {
  background: rgba(30, 41, 59, 0.95);
}

html[data-theme="dark"] .kredi-type-list {
  color: rgba(226, 232, 240, 0.78);
}

html[data-theme="dark"] .kanun-doc-card,
html[data-theme="dark"] .iletisim-card {
  background: var(--surface-elevated);
  border-color: rgba(148, 163, 184, 0.15);
}

html[data-theme="dark"] .kanun-doc-meta {
  color: rgba(203, 213, 225, 0.65);
}

html[data-theme="dark"] input,
html[data-theme="dark"] textarea,
html[data-theme="dark"] select {
  background: var(--surface-subtle);
  color: var(--foreground);
  border-color: rgba(148, 163, 184, 0.25);
}

html[data-theme="dark"] .home-hero-ref__badge {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.35), rgba(99, 102, 241, 0.25));
  border-color: rgba(129, 140, 248, 0.35);
  color: #c7d2fe;
}

/* —— Koyu tema: okunabilirlik ve yüzeyler (geniş düzeltme) —— */
html[data-theme="dark"] .site-main {
  color: var(--foreground);
}

html[data-theme="dark"] .prose p,
html[data-theme="dark"] .prose li {
  color: rgba(226, 232, 240, 0.88);
}

html[data-theme="dark"] .btn-outline {
  background: rgba(30, 41, 59, 0.92);
  border-color: rgba(129, 140, 248, 0.42);
  color: #a5b4fc;
}

html[data-theme="dark"] .btn-outline:hover {
  background: rgba(79, 70, 229, 0.28);
  border-color: rgba(165, 180, 252, 0.55);
  color: #e0e7ff;
}

html[data-theme="dark"] .duyuru-hero {
  background: var(--surface-subtle);
  border-color: rgba(148, 163, 184, 0.18);
}

html[data-theme="dark"] .iletisim-card--address {
  background: linear-gradient(
    165deg,
    rgba(17, 24, 39, 0.98),
    rgba(30, 58, 138, 0.18)
  );
}

html[data-theme="dark"] .iletisim-card--phone {
  background: linear-gradient(
    165deg,
    rgba(17, 24, 39, 0.98),
    rgba(76, 29, 149, 0.2)
  );
}

html[data-theme="dark"] .iletisim-card--mail {
  background: linear-gradient(
    165deg,
    rgba(17, 24, 39, 0.98),
    rgba(15, 118, 110, 0.18)
  );
}

html[data-theme="dark"] .home-hero-ref__btn--ghost {
  background: rgba(30, 41, 59, 0.85);
  border-color: rgba(148, 163, 184, 0.22);
  color: var(--foreground);
}

html[data-theme="dark"] .home-hero-ref__btn--ghost:hover {
  background: rgba(51, 65, 85, 0.95);
  border-color: rgba(129, 140, 248, 0.45);
}

html[data-theme="dark"] .home-announce-arrow {
  background: rgba(30, 41, 59, 0.92);
  border-color: rgba(148, 163, 184, 0.18);
  color: rgba(226, 232, 240, 0.85);
}

html[data-theme="dark"] .home-announce-arrow:hover {
  background: rgba(51, 65, 85, 0.98);
  border-color: rgba(129, 140, 248, 0.35);
  color: #c7d2fe;
}

html[data-theme="dark"] .home-glimpse-card {
  background: var(--surface-elevated);
  border-color: rgba(148, 163, 184, 0.14);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .home-glimpse-card:hover {
  border-color: rgba(129, 140, 248, 0.28);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.45);
}

html[data-theme="dark"] .home-glimpse-card__title {
  color: var(--foreground);
}

html[data-theme="dark"] .home-glimpse-link--teal {
  color: #5eead4;
}

html[data-theme="dark"] .home-glimpse-link--purple {
  color: #c4b5fd;
}

html[data-theme="dark"] .home-glimpse-link--blue {
  color: #7dd3fc;
}

html[data-theme="dark"] .home-glimpse-link--amber {
  color: #fcd34d;
}

html[data-theme="dark"] .home-glimpse-link--rose {
  color: #fda4af;
}

html[data-theme="dark"] .home-glimpse-link--emerald {
  color: #6ee7b7;
}

html[data-theme="dark"] .home-glimpse-link--orange {
  color: #fdba74;
}

html[data-theme="dark"] .home-glimpse-link--indigo {
  color: #a5b4fc;
}

html[data-theme="dark"] .announce-card {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .kredi-type-list,
html[data-theme="dark"] .kredi-feature-list {
  color: rgba(226, 232, 240, 0.85);
}

html[data-theme="dark"] .kredi-eligibility-card {
  background: var(--surface-elevated);
  border-color: rgba(148, 163, 184, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .kredi-eligibility-card p {
  color: rgba(226, 232, 240, 0.88);
}

html[data-theme="dark"] .kredi-teminat-shell {
  background: linear-gradient(
    145deg,
    rgba(6, 182, 212, 0.12),
    rgba(79, 70, 229, 0.1) 45%,
    rgba(17, 24, 39, 0.96)
  );
  border-color: rgba(6, 182, 212, 0.28);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

html[data-theme="dark"] .kredi-teminat-note p {
  color: rgba(226, 232, 240, 0.85);
}

html[data-theme="dark"] .kredi-teminat-card {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .kredi-teminat-card p {
  color: rgba(226, 232, 240, 0.86);
}

html[data-theme="dark"] .kredi-belge-card {
  background: var(--surface-elevated);
  border-color: rgba(148, 163, 184, 0.15);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .kredi-belge-card h3 {
  border-bottom-color: rgba(148, 163, 184, 0.15);
}

html[data-theme="dark"] .kredi-belge-card ul {
  color: rgba(226, 232, 240, 0.86);
}

html[data-theme="dark"] .kredi-calc-badge {
  background: rgba(30, 41, 59, 0.95);
  border-color: rgba(129, 140, 248, 0.25);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .kredi-calc-icon {
  background: rgba(30, 41, 59, 0.95);
}

html[data-theme="dark"] .faiz-hero-card {
  background: linear-gradient(
    155deg,
    rgba(17, 24, 39, 0.98) 0%,
    rgba(30, 58, 138, 0.22) 42%,
    rgba(76, 29, 149, 0.2) 100%
  );
  border-color: rgba(6, 182, 212, 0.22);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

html[data-theme="dark"] .faiz-detail-card {
  background: var(--surface-elevated);
  border-color: rgba(148, 163, 184, 0.15);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .faiz-detail-row {
  border-bottom-color: rgba(148, 163, 184, 0.12);
}

html[data-theme="dark"] .faiz-detail-row dt {
  color: rgba(203, 213, 225, 0.78);
}

html[data-theme="dark"] .faiz-info-banner {
  background: rgba(6, 182, 212, 0.12);
  border-color: rgba(6, 182, 212, 0.35);
}

html[data-theme="dark"] .faiz-info-banner p {
  color: rgba(226, 232, 240, 0.88);
}

html[data-theme="dark"] .faiz-info-icon {
  color: #7dd3fc;
  border-color: rgba(6, 182, 212, 0.45);
}

html[data-theme="dark"] .kanun-doc-card {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .kanun-doc-icon {
  background: rgba(30, 41, 59, 0.85);
  border-color: rgba(148, 163, 184, 0.15);
  color: rgba(203, 213, 225, 0.75);
}

html[data-theme="dark"] .kanun-doc-actions {
  border-top-color: rgba(148, 163, 184, 0.12);
}

html[data-theme="dark"] .kanun-btn--ghost {
  color: rgba(226, 232, 240, 0.88);
  background: rgba(30, 41, 59, 0.75);
  border-color: rgba(148, 163, 184, 0.2);
}

html[data-theme="dark"] .kanun-btn--ghost:hover {
  background: rgba(51, 65, 85, 0.9);
}

html[data-theme="dark"] .kanun-pdf-note {
  background: var(--surface-subtle);
  border-color: rgba(148, 163, 184, 0.15);
}

html[data-theme="dark"] .kanun-pdf-note p {
  color: rgba(226, 232, 240, 0.88);
}

html[data-theme="dark"] .legal-section {
  border-bottom-color: rgba(148, 163, 184, 0.12);
}

html[data-theme="dark"] .legal-section__title {
  color: #e2e8f0;
}

html[data-theme="dark"] .legal-section__text {
  color: rgba(203, 213, 225, 0.8);
}

html[data-theme="dark"] .legal-updated {
  color: rgba(148, 163, 184, 0.7);
}

html[data-theme="dark"] .basv-form-card {
  background: var(--surface-elevated);
  border-color: rgba(148, 163, 184, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .basv-form-card__title {
  color: #e2e8f0;
}

html[data-theme="dark"] .basv-form-card__desc {
  color: rgba(203, 213, 225, 0.8);
}

html[data-theme="dark"] .basv-btn--ghost {
  background: rgba(30, 41, 59, 0.75);
  border-color: rgba(148, 163, 184, 0.2);
  color: rgba(226, 232, 240, 0.88);
}

html[data-theme="dark"] .basv-btn--ghost:hover {
  background: rgba(51, 65, 85, 0.9);
}

html[data-theme="dark"] .basv-docs__heading {
  color: #e2e8f0;
}

html[data-theme="dark"] .basv-tabs__btn {
  color: #94a3b8;
  background: rgba(99,102,241,0.06);
  border-color: rgba(99,102,241,0.15);
}

html[data-theme="dark"] .basv-tabs__btn:hover {
  color: #c7d2fe;
  background: rgba(99,102,241,0.12);
  border-color: rgba(99,102,241,0.3);
}

html[data-theme="dark"] .basv-tabs__btn--active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary, #4f46e5), var(--accent, #06b6d4));
  border-color: transparent;
  box-shadow: 0 2px 12px rgba(79,70,229,0.35);
}

html[data-theme="dark"] .basv-tabs__btn--active:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--primary, #4f46e5), var(--accent, #06b6d4));
  border-color: transparent;
}

html[data-theme="dark"] .basv-docs__empty {
  color: #64748b;
}

html[data-theme="dark"] .basv-docs__actions {
  border-top-color: rgba(148, 163, 184, 0.12);
}

html[data-theme="dark"] .basv-doc-item {
  border-bottom-color: rgba(148, 163, 184, 0.12);
}

html[data-theme="dark"] .basv-doc-item__num {
  background: rgba(99, 102, 241, 0.12);
  border-color: rgba(99, 102, 241, 0.25);
  color: #818cf8;
}

html[data-theme="dark"] .basv-doc-item__title {
  color: #e2e8f0;
}

html[data-theme="dark"] .basv-doc-item__desc {
  color: rgba(203, 213, 225, 0.65);
}

html[data-theme="dark"] .basv-doc-item__link {
  color: #818cf8;
}

html[data-theme="dark"] .basv-doc-item__link:hover {
  color: #a5b4fc;
}

html[data-theme="dark"] .yonetim-photo-frame {
  background: var(--surface-subtle);
  border-color: rgba(148, 163, 184, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .yonetim-photo-frame--featured {
  border: none;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 45%, var(--secondary) 100%);
  box-shadow: 0 10px 32px rgba(79, 70, 229, 0.35);
}

html[data-theme="dark"] .yonetim-role:not(.yonetim-role--accent) {
  color: rgba(203, 213, 225, 0.65);
}

html[data-theme="dark"] .personel-section-line {
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.25), transparent);
}

html[data-theme="dark"] .personel-section-title {
  color: rgba(203, 213, 225, 0.65);
}

html[data-theme="dark"] .kredi-calc-app {
  background: var(--surface-elevated);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

html[data-theme="dark"] .site-footer__links a {
  color: rgba(226, 232, 240, 0.82);
}

html[data-theme="dark"] .site-footer__contact-text,
html[data-theme="dark"] .site-footer__contact-link {
  color: rgba(226, 232, 240, 0.88);
}

html[data-theme="dark"] .site-footer__heading {
  color: var(--foreground);
}

html[data-theme="dark"] .home-announce-dot {
  background: rgba(148, 163, 184, 0.35);
}

html[data-theme="dark"] .iletisim-map-wrap {
  background: var(--surface-subtle);
  border-color: rgba(148, 163, 184, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .iletisim-map-badge {
  color: rgba(226, 232, 240, 0.92);
  background: rgba(30, 41, 59, 0.92);
  border-color: rgba(148, 163, 184, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .iletisim-sep {
  border-top-color: rgba(148, 163, 184, 0.12);
}

html[data-theme="dark"] .nav-list > li > a.is-active {
  background: rgba(129, 140, 248, 0.18);
  color: #c7d2fe;
  border-color: rgba(129, 140, 248, 0.35);
}

html[data-theme="dark"] .sub-toggle.is-active {
  background: rgba(129, 140, 248, 0.18);
  color: #c7d2fe;
  border-color: rgba(129, 140, 248, 0.35);
}

html[data-theme="dark"] .has-sub:hover .sub-toggle.is-active::after,
html[data-theme="dark"] .has-sub:focus-within .sub-toggle.is-active::after {
  border-top-color: rgba(199, 210, 254, 0.85);
}

html[data-theme="dark"] .sub-menu a.is-active {
  background: rgba(129, 140, 248, 0.14);
  color: #c7d2fe;
}

html[data-theme="dark"] .sub-menu a.is-active::before {
  opacity: 1;
}

/* Online İşlemler — dark overrides */
html[data-theme="dark"] .sub-toggle--online,
html[data-theme="dark"] .sub-toggle--online:hover {
  color: #fff !important;
  background: linear-gradient(135deg, var(--primary, #4f46e5), var(--accent, #06b6d4)) !important;
  background-origin: border-box !important;
  background-clip: padding-box !important;
  border-color: transparent !important;
}

html[data-theme="dark"] .sub-toggle--online:hover {
  filter: brightness(1.12);
}

html[data-theme="dark"] .online-link:hover {
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .online-link__icon {
  border-color: rgba(129, 140, 248, 0.2);
  background: rgba(129, 140, 248, 0.08);
  color: #a5b4fc;
}
html[data-theme="dark"] .online-link__icon--calc {
  border-color: rgba(129, 140, 248, 0.25);
  background: rgba(129, 140, 248, 0.1);
  color: #a5b4fc;
}
html[data-theme="dark"] .online-link__icon--limit {
  border-color: rgba(34, 211, 238, 0.25);
  background: rgba(34, 211, 238, 0.1);
  color: #67e8f9;
}
html[data-theme="dark"] .online-link__icon--docs {
  border-color: rgba(52, 211, 153, 0.25);
  background: rgba(52, 211, 153, 0.1);
  color: #6ee7b7;
}
html[data-theme="dark"] .online-link__icon--payment {
  border-color: rgba(251, 191, 36, 0.25);
  background: rgba(251, 191, 36, 0.1);
  color: #fbbf24;
}

html[data-theme="dark"] .online-link:hover .online-link__icon {
  border-color: rgba(129, 140, 248, 0.45);
  background: rgba(129, 140, 248, 0.16);
  color: #c7d2fe;
}
html[data-theme="dark"] .online-link:hover .online-link__icon--calc {
  border-color: rgba(129, 140, 248, 0.5);
  background: rgba(129, 140, 248, 0.18);
  color: #c7d2fe;
}
html[data-theme="dark"] .online-link:hover .online-link__icon--limit {
  border-color: rgba(34, 211, 238, 0.5);
  background: rgba(34, 211, 238, 0.18);
  color: #a5f3fc;
}
html[data-theme="dark"] .online-link:hover .online-link__icon--docs {
  border-color: rgba(52, 211, 153, 0.5);
  background: rgba(52, 211, 153, 0.18);
  color: #a7f3d0;
}
html[data-theme="dark"] .online-link:hover .online-link__icon--payment {
  border-color: rgba(251, 191, 36, 0.5);
  background: rgba(251, 191, 36, 0.18);
  color: #fde68a;
}

html[data-theme="dark"] .online-link.is-active .online-link__icon {
  border-color: rgba(129, 140, 248, 0.4);
  background: rgba(129, 140, 248, 0.12);
  color: #c7d2fe;
}

html[data-theme="dark"] .online-link__title {
  color: rgba(226, 232, 240, 0.95);
}

html[data-theme="dark"] .online-link__desc {
  color: rgba(148, 163, 184, 0.7);
}

html[data-theme="dark"] .online-link.is-active {
  background: rgba(129, 140, 248, 0.1) !important;
}

html[data-theme="dark"] .online-link.is-active .online-link__title {
  color: #c7d2fe;
}

/* ===== Taksit Ödeme Kanalları ===== */
.tok-info {
  max-width: 720px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 12px;
  color: #92400e;
  font-size: 0.93rem;
  line-height: 1.55;
}
.tok-info svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #d97706;
}
.tok-info p { margin: 0; }

.tok-channels {
  max-width: 880px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}
.tok-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tok-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  backdrop-filter: blur(4px);
}
.tok-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.tok-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #1e293b;
}
.tok-card__icon img {
  object-fit: contain;
}
.tok-card__body {
  flex: 1;
  min-width: 0;
}
.tok-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
  font-weight: 650;
  color: #1e293b;
}
.tok-card__desc {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #64748b;
}
.tok-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--primary, #4f46e5), var(--accent, #06b6d4));
  border: none;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px -4px rgba(79, 70, 229, 0.4);
  transition: opacity 0.2s ease, transform 0.15s ease;
}
.tok-card__btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

html[data-theme="dark"] .tok-info {
  background: rgba(245, 158, 11, 0.06);
  border-color: rgba(245, 158, 11, 0.18);
  color: #fbbf24;
}
html[data-theme="dark"] .tok-info svg { color: #fbbf24; }

html[data-theme="dark"] .tok-card {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(148, 163, 184, 0.12);
}
html[data-theme="dark"] .tok-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
html[data-theme="dark"] .tok-card__icon {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
}
html[data-theme="dark"] .tok-card__icon img {
  filter: invert(1);
}
html[data-theme="dark"] .tok-card__title { color: #e2e8f0; }
html[data-theme="dark"] .tok-card__desc { color: #94a3b8; }
html[data-theme="dark"] .tok-card__btn {
  background: linear-gradient(135deg, var(--primary, #4f46e5), var(--accent, #06b6d4));
  box-shadow: 0 4px 14px -4px rgba(79, 70, 229, 0.35);
}

@media (max-width: 600px) {
  .tok-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem;
    gap: 1rem;
  }
  .tok-card__btn { width: 100%; justify-content: center; }
}

