/* ==========================================================================
   Serçe Development — Ana Stil Dosyası
   Tasarım yönü: minimal kurumsal fintech (bkz. SERCE/15-DESIGN-SYSTEM.md)
   Tema: dark (varsayılan) + light, design token tabanlı
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Fontlar (yerel /fonts/ klasöründen; dış CDN kullanılmaz)
   -------------------------------------------------------------------------- */

@font-face {
  font-family: "Science Gothic";
  src: url("/fonts/ScienceGothic-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Monument ExtraLight";
  src: url("/fonts/MonumentExtended-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Elms Sans";
  src: url("/fonts/ElmsSans-Variable.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Octosquares";
  src: url("/fonts/TTOctosquares-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Octosquares";
  src: url("/fonts/TTOctosquares-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   2. Design token'lar
   -------------------------------------------------------------------------- */

:root {
  /* Marka */
  --brand-primary: #ff681e;
  --brand-primary-hover: #ff7a3a;
  /* Metin bağlamında kullanılan marka tonu; light modda AA kontrast için koyulaşır */
  --brand-text: #ff681e;
  --brand-soft: rgba(255, 104, 30, 0.10);
  --brand-border: rgba(255, 104, 30, 0.45);
  --focus-ring: rgba(255, 104, 30, 0.55);

  /* Dark mode (varsayılan) */
  --bg-page: #0b0d10;
  --bg-surface: #111419;
  --bg-surface-raised: #171b21;
  --bg-inset: #0f1216;

  --text-primary: #f4f6f8;
  --text-secondary: #b1b7bf;
  --text-muted: #7f8791;
  --text-inverse: #090b0d;

  --border-subtle: #252a31;
  --border-strong: #353c45;

  --shadow-raised: 0 12px 30px rgba(0, 0, 0, 0.18);

  --hero-gradient: linear-gradient(
    180deg,
    rgba(255, 104, 30, 0.09) 0%,
    rgba(255, 104, 30, 0.03) 32%,
    rgba(255, 104, 30, 0.00) 72%
  );

  /* Semantik durum renkleri (marka rengi değildir; yalnız işlevsel) */
  --state-success: #2fa66a;
  --state-warning: #c98722;
  --state-danger: #e05a5a;
  --state-info: #3d78c5;

  /* Tipografi */
  --font-heading: "Science Gothic", "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --font-display-light: "Monument ExtraLight", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Elms Sans", Inter, "Segoe UI", Arial, sans-serif;
  --font-action: "TT Octosquares", "Inter Tight", Inter, "Segoe UI", sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;

  --heading-6: 1rem;
  --heading-5: 1.25rem;
  --heading-4: 1.5rem;
  --heading-3: clamp(1.5rem, 3vw, 2rem);
  --heading-2: clamp(1.9rem, 3.5vw, 2.9rem);
  --heading-1: clamp(2rem, 5.5vw, 4.4rem);

  --line-tight: 1.02;
  --line-heading: 1.12;
  --line-body: 1.6;
  --line-ui: 1.35;

  /* Grid ve boşluklar */
  --container-max: 80rem;
  --page-pad-mobile: 1.25rem;
  --page-pad-tablet: 2rem;
  --page-pad-desktop: 3rem;

  --section-space-mobile: 3.5rem;
  --section-space-tablet: 4.5rem;
  --section-space-desktop: 6rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;

  /* Buton yükseklikleri */
  --button-height-sm: 2.5rem;
  --button-height-md: 3rem;
  --button-height-lg: 3.5rem;

  /* Hareket */
  --motion-fast: 160ms;
  --motion-base: 240ms;
  --motion-slow: 480ms;
  --motion-section: 600ms;
  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-ui: cubic-bezier(0.2, 0, 0, 1);

  --header-height: 4.75rem;

  color-scheme: dark;
}

[data-theme="light"] {
  --bg-page: #f7f7f5;
  --bg-surface: #ffffff;
  --bg-surface-raised: #ffffff;
  --bg-inset: #f0f1ef;

  --text-primary: #101214;
  --text-secondary: #4e555d;
  --text-muted: #63696f;
  --text-inverse: #ffffff;

  --border-subtle: #dfe2e5;
  --border-strong: #c6cbd0;

  --brand-primary-hover: #e95510;
  --brand-text: #c2410c;
  --brand-soft: rgba(255, 104, 30, 0.08);
  --brand-border: rgba(255, 104, 30, 0.40);
  --focus-ring: rgba(255, 104, 30, 0.45);

  --shadow-raised: 0 12px 30px rgba(16, 18, 20, 0.08);

  --hero-gradient: linear-gradient(
    180deg,
    rgba(255, 104, 30, 0.07) 0%,
    rgba(255, 104, 30, 0.02) 38%,
    rgba(255, 104, 30, 0.00) 75%
  );

  --state-danger: #d94a4a;

  color-scheme: light;
}

/* --------------------------------------------------------------------------
   3. Reset ve temel
   -------------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: var(--line-body);
  color: var(--text-primary);
  background: var(--bg-page);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--motion-fast) var(--ease-ui);
}

p a,
li a:not([class]) {
  color: var(--text-primary);
  text-decoration: underline;
  text-decoration-color: var(--brand-border);
  text-underline-offset: 0.2em;
}

p a:hover,
li a:not([class]):hover {
  color: var(--brand-text);
}

ul,
ol {
  list-style-position: outside;
}

:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

::selection {
  background: var(--brand-soft);
  color: var(--text-primary);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--brand-primary);
  color: var(--text-inverse);
  border-radius: var(--radius-md);
  font-family: var(--font-action);
  font-size: var(--text-sm);
}

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

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

/* --------------------------------------------------------------------------
   4. Tipografi
   -------------------------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: var(--line-heading);
  color: var(--text-primary);
  text-wrap: balance;
  overflow-wrap: break-word;
}

h1 { font-size: var(--heading-1); letter-spacing: -0.015em; }
h2 { font-size: var(--heading-2); letter-spacing: -0.01em; }
h3 { font-size: var(--heading-3); }
h4 { font-size: var(--heading-4); }
h5 { font-size: var(--heading-5); }
h6 { font-size: var(--heading-6); }

.display-light {
  font-family: var(--font-display-light);
  font-weight: 400;
}

.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-brand { color: var(--brand-text); }

.lead {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 47.5rem;
}

/* --------------------------------------------------------------------------
   5. Layout yardımcıları
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--page-pad-mobile);
}

.container--narrow {
  max-width: 47.5rem;
}

.container--article {
  max-width: 47.5rem;
}

.section {
  padding-block: var(--section-space-mobile);
}

.section--roomy {
  padding-block: calc(var(--section-space-mobile) * 1.35);
}

.section--band {
  background: var(--bg-surface);
  border-block: 1px solid var(--border-subtle);
}

.section--inset {
  background: var(--bg-inset);
  border-block: 1px solid var(--border-subtle);
}

.section-head {
  max-width: 47.5rem;
  margin-bottom: 2.5rem;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  margin-bottom: 1rem;
}

.section-head .section-intro {
  color: var(--text-secondary);
  font-size: var(--text-lg);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display-light);
  font-size: var(--text-sm);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-text);
  margin-bottom: 1rem;
}

.divider {
  border: 0;
  border-top: 1px solid var(--border-subtle);
}

@media (min-width: 48rem) {
  .container { padding-inline: var(--page-pad-tablet); }
  .section { padding-block: var(--section-space-tablet); }
  .section--roomy { padding-block: calc(var(--section-space-tablet) * 1.3); }
}

@media (min-width: 64rem) {
  .container { padding-inline: var(--page-pad-desktop); }
  .section { padding-block: var(--section-space-desktop); }
  .section--roomy { padding-block: calc(var(--section-space-desktop) * 1.3); }
}

/* --------------------------------------------------------------------------
   6. Butonlar
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--button-height-md);
  padding: 0 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-action);
  font-size: var(--text-md);
  font-weight: 500;
  line-height: var(--line-ui);
  cursor: pointer;
  text-align: center;
  transition:
    transform var(--motion-fast) var(--ease-ui),
    background-color var(--motion-fast) var(--ease-ui),
    border-color var(--motion-fast) var(--ease-ui),
    color var(--motion-fast) var(--ease-ui);
}

.btn:hover { transform: scale(1.02); }
.btn:active { transform: scale(0.99); }

.btn--primary {
  background: var(--brand-primary);
  color: #090b0d;
  border: 1px solid var(--brand-primary);
}

.btn--primary:hover {
  background: var(--brand-primary-hover);
  border-color: var(--brand-primary-hover);
}

.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--brand-primary);
}

.btn--secondary:hover {
  background: var(--brand-primary);
  color: #090b0d;
}

.btn--lg {
  min-height: var(--button-height-lg);
  padding: 0 2rem;
}

.btn--sm {
  min-height: var(--button-height-sm);
  padding: 0 1.1rem;
  font-size: var(--text-sm);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-action);
  font-size: var(--text-md);
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 0.15rem;
  min-height: 2.75rem;
}

.text-link .icon {
  transition: transform var(--motion-fast) var(--ease-ui);
}

.text-link:hover {
  color: var(--brand-text);
  border-color: var(--brand-text);
}

.text-link:hover .icon {
  transform: translateX(3px);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn-row--center {
  justify-content: center;
}

/* --------------------------------------------------------------------------
   7. İkonlar
   -------------------------------------------------------------------------- */

.icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 1.75;
  flex: none;
}

.icon--sm { width: 1rem; height: 1rem; }
.icon--lg { width: 1.5rem; height: 1.5rem; }

.icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  color: var(--brand-text);
  margin-bottom: 1.1rem;
}

.icon-tile .icon {
  width: 1.35rem;
  height: 1.35rem;
}

/* --------------------------------------------------------------------------
   8. Badge sistemi
   -------------------------------------------------------------------------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--brand-soft);
  border: 1px solid var(--brand-border);
  color: var(--text-primary);
  font-family: var(--font-action);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.badge .icon {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--brand-text);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.badge-row--center {
  justify-content: center;
}

/* --------------------------------------------------------------------------
   9. Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--bg-page);
  border-bottom: 1px solid transparent;
  transition: border-color var(--motion-base) var(--ease-ui);
}

.site-header.is-scrolled {
  border-bottom-color: var(--border-subtle);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.site-logo img {
  width: clamp(8.5rem, 11vw, 11rem);
  height: auto;
}

/* Temaya göre logo varyantı */
.logo-on-dark { display: block; }
.logo-on-light { display: none; }

[data-theme="light"] .logo-on-dark { display: none; }
[data-theme="light"] .logo-on-light { display: block; }

.site-nav {
  display: none;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.header-cta {
  display: none;
}

@media (min-width: 64rem) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .header-cta {
    display: inline-flex;
  }
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.6rem 0.85rem;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  background: transparent;
  border: 0;
  font-family: var(--font-body);
  cursor: pointer;
  line-height: var(--line-ui);
}

.site-nav__link:hover {
  color: var(--text-primary);
}

.site-nav__link[aria-current="true"],
.site-nav__link.is-active {
  color: var(--brand-text);
}

.site-nav__link .icon {
  width: 0.9rem;
  height: 0.9rem;
  transition: transform var(--motion-fast) var(--ease-ui);
}

.site-nav__item.is-open .site-nav__link .icon {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  min-width: 19rem;
  padding: 0.5rem;
  background: var(--bg-surface-raised);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-raised);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity var(--motion-fast) var(--ease-ui),
    transform var(--motion-fast) var(--ease-ui),
    visibility var(--motion-fast);
}

.site-nav__item.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.nav-dropdown a:hover {
  background: var(--bg-inset);
  color: var(--text-primary);
}

.nav-dropdown a[aria-current="page"] {
  color: var(--brand-text);
}

/* Tema kontrolü */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition:
    color var(--motion-fast) var(--ease-ui),
    border-color var(--motion-fast) var(--ease-ui);
}

.theme-toggle:hover {
  color: var(--text-primary);
  border-color: var(--border-strong);
}

.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

/* Mobil menü butonu */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
}

.menu-toggle .icon-close { display: none; }

body.menu-open .menu-toggle .icon-open { display: none; }
body.menu-open .menu-toggle .icon-close { display: block; }

@media (min-width: 64rem) {
  .menu-toggle { display: none; }
}

/* Mobil tam ekran menü */
.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  z-index: 90;
  background: var(--bg-page);
  overflow-y: auto;
  padding: 1.5rem var(--page-pad-mobile) 3rem;
  display: none;
}

body.menu-open .mobile-menu {
  display: block;
}

.mobile-menu__group {
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-menu__label {
  font-family: var(--font-display-light);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.mobile-menu__link {
  display: block;
  padding: 0.55rem 0;
  font-size: var(--text-lg);
  color: var(--text-primary);
  min-height: 2.75rem;
}

.mobile-menu__link:hover,
.mobile-menu__link[aria-current="page"] {
  color: var(--brand-text);
}

.mobile-menu__link--sub {
  font-size: var(--text-md);
  color: var(--text-secondary);
  padding-left: 0.25rem;
}

.mobile-menu__cta {
  margin-top: 1.75rem;
}

.mobile-menu__cta .btn {
  width: 100%;
}

/* --------------------------------------------------------------------------
   10. Breadcrumb
   -------------------------------------------------------------------------- */

.breadcrumb {
  padding-top: 1.5rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.breadcrumb li + li::before {
  content: "/";
  color: var(--text-muted);
}

.breadcrumb li a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb li a:hover {
  color: var(--brand-text);
}

.breadcrumb [aria-current="page"] {
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   11. Hero
   -------------------------------------------------------------------------- */

.hero {
  background: var(--hero-gradient), var(--bg-page);
  padding-block: clamp(4.5rem, 9vw, 8rem) clamp(3.5rem, 7vw, 6.5rem);
  text-align: center;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  max-width: 59.375rem;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

.hero__copy {
  max-width: 47.5rem;
  margin-inline: auto;
  margin-bottom: 2.25rem;
  font-size: var(--text-lg);
  color: var(--text-secondary);
}

.hero .btn-row {
  justify-content: center;
  margin-bottom: 2.25rem;
}

.hero .badge-row {
  justify-content: center;
}

/* --------------------------------------------------------------------------
   12. Section modelleri
   -------------------------------------------------------------------------- */

/* Centered statement */
.statement {
  max-width: 47.5rem;
  margin-inline: auto;
  text-align: center;
}

.statement h2 {
  margin-bottom: 1.25rem;
}

.statement p {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  margin-bottom: 1.75rem;
}

/* Two-column split */
.split {
  display: grid;
  gap: 2.5rem;
}

.split__head h2 {
  margin-bottom: 1rem;
}

.split__head p {
  color: var(--text-secondary);
}

.split__body > p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.split__body > p:last-child {
  margin-bottom: 0;
}

@media (min-width: 64rem) {
  .split {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 4rem;
    align-items: start;
  }

  .split--even {
    grid-template-columns: 1fr 1fr;
  }
}

/* Feature grid */
.feature-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 48rem) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 64rem) {
  .feature-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .feature-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.feature {
  padding: 1.75rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  transition:
    border-color var(--motion-fast) var(--ease-ui),
    transform var(--motion-fast) var(--ease-ui);
}

.feature:hover {
  border-color: var(--brand-border);
  transform: translateY(-2px);
}

.feature h3 {
  font-size: var(--heading-5);
  margin-bottom: 0.6rem;
}

.feature p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.feature p + p {
  margin-top: 0.6rem;
}

/* Kartsız feature listesi (divider tabanlı) */
.feature-list {
  list-style: none;
  display: grid;
  gap: 0;
}

.feature-list > li {
  padding-block: 1.4rem;
  border-top: 1px solid var(--border-subtle);
  display: grid;
  gap: 0.4rem;
}

.feature-list > li:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

.feature-list h3,
.feature-list h4 {
  font-size: var(--heading-5);
}

.feature-list p {
  color: var(--text-secondary);
}

@media (min-width: 48rem) {
  .feature-list--cols > li {
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    gap: 2rem;
    align-items: start;
  }
}

/* Process steps */
.process {
  counter-reset: step;
  list-style: none;
  display: grid;
  gap: 0;
}

.process > li {
  counter-increment: step;
  position: relative;
  padding: 1.5rem 0 1.5rem 4rem;
  border-top: 1px solid var(--border-subtle);
}

.process > li:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

.process > li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.6rem;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--brand-text);
}

.process h3 {
  font-size: var(--heading-5);
  margin-bottom: 0.5rem;
}

.process p {
  color: var(--text-secondary);
  max-width: 47.5rem;
}

/* Technical band */
.tech-band {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 48rem) {
  .tech-band { grid-template-columns: repeat(2, 1fr); }
  .tech-band--stack { grid-template-columns: 1fr; }
}

@media (min-width: 64rem) {
  .tech-band { grid-template-columns: repeat(3, 1fr); }
  .tech-band--stack { grid-template-columns: 1fr; }
}

.tech-item {
  padding: 1.4rem 0;
  border-top: 1px solid var(--border-subtle);
}

.tech-item h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--heading-6);
  margin-bottom: 0.5rem;
}

.tech-item h3 .icon {
  color: var(--brand-text);
}

.tech-item p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.tech-item .tech-tags {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tech-tag {
  font-size: var(--text-xs);
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  white-space: nowrap;
}

/* Data section */
.data-points {
  display: grid;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 48rem) {
  .data-points { grid-template-columns: repeat(3, 1fr); }
  .data-points--2 { grid-template-columns: repeat(2, 1fr); }
}

.data-point__value {
  font-family: var(--font-heading);
  font-size: var(--heading-2);
  color: var(--text-primary);
  line-height: var(--line-tight);
  margin-bottom: 0.6rem;
}

.data-point__value .unit {
  font-size: 0.5em;
  color: var(--brand-text);
}

.data-point__label {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  max-width: 18rem;
  margin-inline: auto;
}

/* Checklist (ok işaretli liste) */
.check-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.check-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--text-secondary);
}

.check-list .icon {
  color: var(--brand-text);
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
}

.check-list strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   13. Tablolar
   -------------------------------------------------------------------------- */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  background: var(--bg-surface);
}

.data-table caption {
  text-align: left;
  padding: 1rem 1.25rem;
  color: var(--text-muted);
  font-size: var(--text-xs);
  border-bottom: 1px solid var(--border-subtle);
}

.data-table th,
.data-table td {
  padding: 0.9rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: top;
}

.data-table thead th {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--text-primary);
  background: var(--bg-inset);
  white-space: nowrap;
}

.data-table tbody tr:last-child th,
.data-table tbody tr:last-child td {
  border-bottom: 0;
}

.data-table tbody th {
  font-weight: 700;
  color: var(--text-primary);
}

.data-table td {
  color: var(--text-secondary);
}

.data-table .col-highlight {
  border-top: 2px solid var(--brand-primary);
}

/* Mobilde karta dönüşen tablo */
@media (max-width: 47.9375rem) {
  .table-wrap--stack {
    overflow: visible;
    border: 0;
  }

  .table-wrap--stack table,
  .table-wrap--stack tbody,
  .table-wrap--stack tr,
  .table-wrap--stack th,
  .table-wrap--stack td {
    display: block;
  }

  .table-wrap--stack thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .table-wrap--stack tr {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    margin-bottom: 1rem;
    padding: 0.5rem 0;
  }

  .table-wrap--stack th,
  .table-wrap--stack td {
    border: 0;
    padding: 0.55rem 1.1rem;
  }

  .table-wrap--stack td::before {
    content: attr(data-label);
    display: block;
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-bottom: 0.2rem;
  }
}

/* --------------------------------------------------------------------------
   14. Accordion / SSS
   -------------------------------------------------------------------------- */

.accordion {
  border-top: 1px solid var(--border-subtle);
}

.accordion__item {
  border-bottom: 1px solid var(--border-subtle);
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  padding: 1.25rem 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  min-height: 2.75rem;
}

.accordion__trigger:hover {
  color: var(--brand-text);
}

.accordion__trigger .icon {
  color: var(--brand-text);
}

.accordion__trigger .icon-minus { display: none; }

.accordion__trigger[aria-expanded="true"] .icon-plus { display: none; }
.accordion__trigger[aria-expanded="true"] .icon-minus { display: block; }

.accordion__panel {
  overflow: hidden;
  height: 0;
  transition: height var(--motion-base) var(--ease-standard);
}

.accordion__panel[hidden] {
  display: none;
}

.accordion__panel-inner {
  padding-bottom: 1.5rem;
  color: var(--text-secondary);
  max-width: 47.5rem;
}

.accordion__panel-inner p + p {
  margin-top: 0.75rem;
}

/* --------------------------------------------------------------------------
   15. Formlar
   -------------------------------------------------------------------------- */

.form-grid {
  display: grid;
  gap: 1.4rem;
}

@media (min-width: 48rem) {
  .form-grid--2 {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid--2 .form-field--full {
    grid-column: 1 / -1;
  }
}

.form-field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-field .field-hint {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: var(--button-height-md);
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: var(--text-primary);
  background: var(--bg-inset);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition:
    border-color var(--motion-fast) var(--ease-ui),
    box-shadow var(--motion-fast) var(--ease-ui);
}

[data-theme="light"] .form-field input,
[data-theme="light"] .form-field select,
[data-theme="light"] .form-field textarea {
  background: var(--bg-surface);
}

.form-field textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237f8791' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand-text);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: var(--state-danger);
}

.field-error {
  display: none;
  align-items: flex-start;
  gap: 0.4rem;
  margin-top: 0.45rem;
  font-size: var(--text-sm);
  color: var(--state-danger);
}

.field-error .icon {
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
}

.form-field.has-error .field-error {
  display: flex;
}

.form-success {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--state-success);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  color: var(--text-primary);
}

.form-success .icon {
  color: var(--state-success);
  margin-top: 0.15rem;
}

.form-success p {
  color: var(--text-secondary);
}

.form-success strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

/* --------------------------------------------------------------------------
   16. Bilgi Bankası
   -------------------------------------------------------------------------- */

.kb-list {
  display: grid;
  gap: 1.25rem;
  list-style: none;
}

@media (min-width: 48rem) {
  .kb-list { grid-template-columns: repeat(2, 1fr); }
  .kb-list--single { grid-template-columns: 1fr; }
}

@media (min-width: 64rem) {
  .kb-list { grid-template-columns: repeat(3, 1fr); }
  .kb-list--single { grid-template-columns: 1fr; }
}

/* Kategori filtre çubuğu */
.kb-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.kb-filter__chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.4rem 1.1rem;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  cursor: pointer;
  transition:
    border-color var(--motion-fast) var(--ease-ui),
    background-color var(--motion-fast) var(--ease-ui),
    color var(--motion-fast) var(--ease-ui);
}

.kb-filter__chip:hover {
  border-color: var(--border-strong);
  color: var(--text-primary);
}

.kb-filter__chip[aria-pressed="true"] {
  background: var(--brand-soft);
  border-color: var(--brand-border);
  color: var(--text-primary);
}

.kb-empty {
  padding-block: 2.5rem;
  color: var(--text-secondary);
}

/* Sayfalama */
.kb-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-top: 2.5rem;
}

.kb-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0 0.75rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-action);
  font-size: var(--text-sm);
  cursor: pointer;
  transition:
    border-color var(--motion-fast) var(--ease-ui),
    background-color var(--motion-fast) var(--ease-ui),
    color var(--motion-fast) var(--ease-ui);
}

.kb-pagination__btn:hover:not(:disabled) {
  border-color: var(--border-strong);
  color: var(--text-primary);
}

.kb-pagination__btn[aria-current="page"] {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #090b0d;
}

.kb-pagination__btn:disabled {
  opacity: 0.45;
  cursor: default;
}

.kb-pagination__gap {
  min-width: 2.75rem;
  text-align: center;
  color: var(--text-muted);
}

.kb-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.75rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  transition:
    border-color var(--motion-fast) var(--ease-ui),
    transform var(--motion-fast) var(--ease-ui);
}

.kb-card:hover {
  border-color: var(--brand-border);
  transform: translateY(-2px);
}

.kb-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.kb-card__category {
  color: var(--brand-text);
  font-family: var(--font-action);
  letter-spacing: 0.05em;
}

.kb-card h2,
.kb-card h3 {
  font-size: var(--heading-4);
}

.kb-card p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.kb-card .text-link {
  margin-top: auto;
  align-self: flex-start;
}

/* Makale */
.article-header {
  padding-block: 3rem 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.article-header__inner {
  max-width: 52rem;
}

.article-header h1 {
  font-size: var(--heading-2);
  margin-block: 1rem 1.25rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.article-meta .icon {
  width: 1rem;
  height: 1rem;
}

/* Makale + sağ kenar çubuğu düzeni */
.article-layout {
  display: grid;
  gap: 3rem;
  padding-block: 2.5rem 3.5rem;
  align-items: start;
}

@media (min-width: 64rem) {
  .article-layout {
    grid-template-columns: minmax(0, 1fr) 19rem;
    gap: 4rem;
  }
}

.article-body {
  max-width: 52rem;
}

.article-aside__inner {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 64rem) {
  .article-aside__inner {
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
  }
}

.aside-block {
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
}

.aside-block h2 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.aside-block ul {
  list-style: none;
  display: grid;
}

.aside-block li {
  border-top: 1px solid var(--border-subtle);
}

.aside-block li:first-child {
  border-top: 0;
}

.aside-block li a {
  display: block;
  padding: 0.6rem 0;
  color: var(--text-secondary);
  font-size: var(--text-sm);
  text-decoration: none;
}

.aside-block li a:hover {
  color: var(--brand-text);
}

.aside-block .aside-meta {
  display: block;
  margin-top: 0.2rem;
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.article-body > * + * {
  margin-top: 1.25rem;
}

.article-body h2 {
  font-size: var(--heading-3);
  margin-top: 3rem;
}

.article-body h3 {
  font-size: var(--heading-4);
  margin-top: 2rem;
}

.article-body p,
.article-body li {
  color: var(--text-secondary);
}

.article-body strong {
  color: var(--text-primary);
}

.article-body ul,
.article-body ol {
  padding-left: 1.4rem;
  display: grid;
  gap: 0.5rem;
}

.article-toc {
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  margin-block: 2rem;
}

.article-toc h2 {
  font-size: var(--heading-6);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.article-toc ol {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.article-toc ol a {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  text-decoration: none;
}

.article-toc ol a:hover {
  color: var(--brand-text);
}

.callout {
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--brand-primary);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
}

.callout p {
  color: var(--text-secondary);
}

.callout strong {
  color: var(--text-primary);
}

.article-cta {
  margin-block: 3rem;
  padding: 2rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
}

.article-cta h2 {
  font-size: var(--heading-4);
  margin-bottom: 0.75rem;
}

.article-cta p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   17. Final CTA
   -------------------------------------------------------------------------- */

.final-cta {
  padding-block: clamp(4.5rem, 8vw, 8rem);
  text-align: center;
  background: var(--hero-gradient), var(--bg-page);
  border-top: 1px solid var(--border-subtle);
}

.final-cta h2 {
  max-width: 50rem;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

.final-cta p {
  max-width: 44rem;
  margin-inline: auto;
  margin-bottom: 2.25rem;
  color: var(--text-secondary);
  font-size: var(--text-lg);
}

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-page);
  padding-block: 4rem 2.5rem;
  font-size: var(--text-sm);
}

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

@media (min-width: 48rem) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.site-footer__brand img {
  width: 9.5rem;
  height: auto;
  margin-bottom: 1.25rem;
}

.site-footer__brand p {
  color: var(--text-secondary);
  max-width: 20rem;
  margin-bottom: 1.25rem;
}

.site-footer__contact {
  display: grid;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.site-footer__contact a,
.site-footer__contact span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.site-footer__contact a:hover {
  color: var(--brand-text);
}

.site-footer__contact .icon {
  width: 1rem;
  height: 1rem;
  color: var(--text-muted);
}

.site-footer h2 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.site-footer ul a {
  color: var(--text-secondary);
  text-decoration: none;
}

.site-footer ul a:hover {
  color: var(--brand-text);
}

.site-footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: var(--text-xs);
}

@media (min-width: 64rem) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
}

/* --------------------------------------------------------------------------
   19. Animasyon (reveal / count-up)
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity var(--motion-section) var(--ease-standard),
    transform var(--motion-section) var(--ease-standard);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-group > * {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity var(--motion-section) var(--ease-standard),
    transform var(--motion-section) var(--ease-standard);
}

.reveal-group.is-visible > * {
  opacity: 1;
  transform: none;
}

.reveal-group.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-group.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-group.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-group.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal-group.is-visible > *:nth-child(6) { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal,
  .reveal-group > * {
    opacity: 1;
    transform: none;
  }

  .btn:hover,
  .btn:active,
  .feature:hover,
  .kb-card:hover {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   20. Yardımcılar / sayfa özel
   -------------------------------------------------------------------------- */

.error-page {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  text-align: center;
  padding-block: 4rem;
}

.error-page__code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--brand-text);
  line-height: 1;
  margin-bottom: 1rem;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* --------------------------------------------------------------------------
   21. Blog içerik ekleri (PHP sürümü): görseller ve editör blokları
   -------------------------------------------------------------------------- */

/* Makale görselleri hiçbir zaman yazı dışına taşmaz */
.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
  margin-block: 1.5rem;
}

.article-body figure {
  margin-block: 1.5rem;
}

.article-body figure img {
  margin-block: 0;
}

.article-body figcaption {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Callout varyantları (editör blokları) */
.callout--uyari {
  border-left-color: var(--state-warning);
}

.callout--bilgi {
  border-left-color: var(--state-info);
}

/* Yazı içi ürün kartı */
.product-embed {
  display: grid;
  gap: 0.6rem;
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--brand-primary);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  margin-block: 1.75rem;
}

.product-embed h3 {
  font-size: var(--heading-5);
  margin: 0;
}

.product-embed p {
  color: var(--text-secondary);
  margin: 0;
}

.product-embed .text-link {
  margin-top: 0.4rem;
  justify-self: start;
}

/* Link olarak kullanılan kategori chip'i (server-side filtre) */
.kb-filter__chip.is-active {
  background: var(--brand-soft);
  border-color: var(--brand-border);
  color: var(--text-primary);
}

a.kb-filter__chip {
  text-decoration: none;
}

/* Link olarak kullanılan pagination butonu */
a.kb-pagination__btn {
  text-decoration: none;
}

.kb-pagination__btn.is-current {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #090b0d;
}

.kb-pagination__btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   22. Çerez bildirimi ve footer tercih bağlantısı
   -------------------------------------------------------------------------- */

.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 150;
  padding: 1rem var(--page-pad-mobile) 1.25rem;
  background: var(--bg-surface-raised);
  border-top: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-raised);
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  display: grid;
  gap: 0.9rem;
}

.cookie-banner p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  max-width: 56rem;
}

.cookie-banner strong {
  color: var(--text-primary);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

@media (min-width: 64rem) {
  .cookie-banner__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

.footer-link-btn {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--text-secondary);
  cursor: pointer;
  text-align: left;
}

.footer-link-btn:hover {
  color: var(--brand-text);
}
