/* QRMenü — modern açık tema */
:root {
  --bg: #f3f6fb;
  --bg-elevated: #ffffff;
  --border: rgba(100, 116, 139, 0.18);
  --text: #475569;
  --text-strong: #1e3a4f;
  --text-muted: #64748b;
  --accent: #0d9488;
  --accent-2: #0ea5e9;
  --accent-hover: #0f766e;
  --accent-dim: rgba(13, 148, 136, 0.12);
  --accent-glow: rgba(14, 165, 233, 0.25);
  --danger: #dc2626;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 16px;
  --surface-2: #ffffff;
  --surface-3: #f1f5f9;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 2px 8px rgba(30, 58, 79, 0.06);
  --shadow-md: 0 12px 40px rgba(30, 58, 79, 0.1);
  --shadow-lg: 0 24px 60px rgba(30, 58, 79, 0.12);
  --nav-h: 64px;
  --ease-spring: cubic-bezier(0.34, 1.3, 0.64, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
  overscroll-behavior-x: none;
}

body > main {
  flex: 1 0 auto;
  min-width: 0;
  max-width: 100%;
}

.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(14, 165, 233, 0.14), transparent 50%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(13, 148, 136, 0.12), transparent 45%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(99, 102, 241, 0.08), transparent 50%),
    linear-gradient(180deg, #fafcfe 0%, var(--bg) 35%, #f0f4fa 100%);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s;
}
a:hover {
  color: var(--accent-hover);
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100500;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-h);
  min-width: 0;
  max-width: 100%;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.logo {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-strong);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  letter-spacing: -0.02em;
}
.logo:hover {
  color: var(--accent);
  text-decoration: none;
}
.logo span {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--accent-dim);
  cursor: pointer;
  z-index: 2;
}
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text-strong);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-spring), opacity 0.2s;
}
.site-header.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.5rem;
  flex: 1;
  justify-content: flex-end;
}

.nav-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.15rem 0.35rem;
}

.nav-link {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover {
  color: var(--accent);
  background: var(--accent-dim);
  text-decoration: none;
}
.nav-link.is-active {
  color: var(--accent-hover);
  background: rgba(13, 148, 136, 0.18);
}

.nav-dropdown {
  position: relative;
  z-index: 200;
}
.nav-dropdown__summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown__summary::-webkit-details-marker {
  display: none;
}
.nav-dropdown__summary::marker {
  content: "";
}
.nav-dropdown__summary:hover {
  color: var(--accent);
  background: var(--accent-dim);
}
.nav-dropdown__summary.is-active-parent {
  color: var(--accent-hover);
  background: rgba(13, 148, 136, 0.18);
}
.nav-dropdown__chev {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.75;
  transition: transform 0.2s ease;
}
.nav-dropdown[open] .nav-dropdown__chev {
  transform: rotate(225deg) translateY(-1px);
}
.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 12.5rem;
  padding: 0.4rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 201;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}
.nav-dropdown__link {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.8625rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown__link:hover {
  color: var(--accent);
  background: var(--accent-dim);
  text-decoration: none;
}
.nav-dropdown__link.is-active {
  color: var(--accent-hover);
  background: rgba(13, 148, 136, 0.15);
}

.nav-end {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-left: 0.5rem;
  padding-left: 1rem;
  border-left: 1px solid var(--border);
}

.nav-end-link {
  font-weight: 500;
  font-size: 0.875rem;
}

@media (max-width: 960px) {
  html {
    touch-action: pan-y;
    overscroll-behavior-x: none;
  }
  body {
    touch-action: pan-y;
    overscroll-behavior-x: none;
  }

  .site-header {
    --nav-drawer-w: min(380px, 100%);
  }
  .nav-toggle {
    display: flex;
  }
  .nav-panel {
    position: fixed;
    top: 0;
    width: var(--nav-drawer-w);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    right: calc(-1 * var(--nav-drawer-w));
    padding: calc(var(--nav-h) + 1.5rem) min(1.5rem, 4vw) max(1.5rem, env(safe-area-inset-bottom))
      min(1.5rem, 4vw);
    padding-top: max(calc(var(--nav-h) + 1.25rem), env(safe-area-inset-top));
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    box-shadow: -20px 0 60px rgba(30, 58, 79, 0.12);
    transition: right 0.35s var(--ease-spring), visibility 0.35s;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    visibility: hidden;
    pointer-events: none;
    box-sizing: border-box;
    transform: none;
  }
  .site-header.nav-open .nav-panel {
    right: 0;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-main {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }
  .nav-link {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
  }
  .nav-dropdown {
    width: 100%;
  }
  .nav-dropdown__summary {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    justify-content: space-between;
  }
  .nav-dropdown__panel {
    position: static;
    margin: 0.25rem 0 0.35rem;
    padding: 0.25rem 0 0.25rem 0.75rem;
    border: none;
    box-shadow: none;
    background: rgba(148, 163, 184, 0.08);
    border-radius: var(--radius-sm);
    border-left: 3px solid rgba(13, 148, 136, 0.35);
  }
  .nav-dropdown__link {
    padding: 0.6rem 0.75rem;
  }
  .nav-end {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-end .btn {
    width: 100%;
    justify-content: center;
  }
}

body.nav-open {
  overflow: hidden;
  overflow-x: hidden;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s var(--ease-spring), box-shadow 0.2s, background 0.2s, border-color 0.2s;
  text-decoration: none;
  font-family: inherit;
  white-space: nowrap;
}
.btn:hover {
  text-decoration: none;
}
.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #0b8078 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.35);
}
.btn-primary:hover {
  color: #fff;
  box-shadow: 0 6px 24px rgba(13, 148, 136, 0.42);
}

.btn-glow:hover {
  box-shadow: 0 6px 28px rgba(13, 148, 136, 0.45), 0 0 0 3px var(--accent-dim);
}

.btn-outline {
  background: var(--bg-elevated);
  color: var(--text-strong);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: none;
  padding: 0.5rem 0.85rem;
}
.btn-ghost:hover {
  color: var(--accent);
  background: var(--accent-dim);
}

/* ——— Layout ——— */
.container {
  width: 100%;
  max-width: min(1140px, 100%);
  margin: 0 auto;
  padding: 0 min(1.25rem, 4vw);
  box-sizing: border-box;
}

.page-hero {
  text-align: center;
  padding: 3.5rem 1rem 2rem;
  max-width: 720px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(1.85rem, 5vw, 2.85rem);
  margin: 0 0 1rem;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.page-hero p {
  color: var(--text-muted);
  margin: 0;
  font-size: 1.0625rem;
}

.hero-callback-row {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}
.hero-callback-btn {
  font-size: 0.9375rem;
  padding: 0.75rem 1.5rem;
}

html.qr-cb-lock,
html.qr-cb-lock body {
  overflow: hidden;
}

.qr-cb-root[hidden] {
  display: none !important;
}

.qr-cb-root:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  box-sizing: border-box;
}

.qr-cb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
}

.qr-cb-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  margin: 0;
  padding: 1.25rem 1.35rem 1.4rem;
  box-shadow: var(--shadow-md);
}
.qr-cb-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}
.qr-cb-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-strong);
}
.qr-cb-close {
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-sm);
}
.qr-cb-lead {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.qr-cb-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.qr-cb-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: 0;
}
.qr-cb-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: 0.35rem;
}
.qr-cb-field input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font: inherit;
  background: var(--bg-elevated);
}
.qr-cb-field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.qr-cb-msg {
  margin: 0;
  font-size: 0.8625rem;
  min-height: 1.25em;
}
.qr-cb-msg--err {
  color: #b91c1c;
}
.qr-cb-msg--ok {
  color: var(--accent-hover);
  font-weight: 600;
}
.qr-cb-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-top: 0.35rem;
}

.qr-cb-step-verify {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 0.35rem;
}
.qr-cb-step-verify .qr-cb-actions {
  margin-top: 0;
}
#qr-cb-msg {
  margin-top: 0.85rem;
}

/* reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease-spring), transform 0.55s var(--ease-spring);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-dim), rgba(14, 165, 233, 0.15));
  color: var(--accent-hover);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s, border-color 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-md);
}

/* stats */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
}
.stat-item {
  text-align: center;
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
.stat-value {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* pricing */
.pricing-section {
  padding: 1rem 0 4rem;
}
.pricing-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--text-muted);
  font-size: 1rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 148, 136, 0.35);
}
.plan-card.featured {
  border-color: rgba(13, 148, 136, 0.45);
  background: linear-gradient(165deg, #ffffff 0%, rgba(240, 253, 250, 0.85) 100%);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(13, 148, 136, 0.2);
}
.plan-card.featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
}
.plan-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: var(--text-strong);
}
.plan-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0 0 0.65rem;
  flex: 1;
}
.plan-trial-line {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-hover);
  margin: 0 0 1rem;
  padding: 0.55rem 0.7rem;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  line-height: 1.4;
}
.plan-feature-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: var(--text-muted);
}
.plan-feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0;
}
.plan-feature-list__icon {
  flex-shrink: 0;
  width: 1.1rem;
  text-align: center;
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1.35;
}
.plan-feature-list__item--yes .plan-feature-list__icon {
  color: var(--accent-hover);
}
.plan-feature-list__item--no .plan-feature-list__icon {
  color: rgba(220, 38, 38, 0.85);
}
.plan-feature-list__item--no .plan-feature-list__label {
  opacity: 0.72;
}
.plan-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 0.25rem;
}
.plan-card-actions .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}
@media (min-width: 400px) {
  .plan-card-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .plan-card-actions .btn {
    flex: 1 1 calc(50% - 0.35rem);
    min-width: 8rem;
  }
}
.duration-select-wrap {
  margin-bottom: 1.25rem;
}
.duration-select-wrap label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
select.duration {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-strong);
  font-size: 0.9375rem;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
select.duration:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.price-row {
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.price-amount {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  transition: transform 0.2s var(--ease-spring);
}
.price-amount.is-updated {
  transform: scale(1.04);
}
.price-period {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.price-promo {
  margin-top: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.09), rgba(14, 165, 233, 0.07));
  border: 1px solid rgba(13, 148, 136, 0.22);
  text-align: left;
}
.plan-card.featured .price-promo {
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.14), rgba(14, 165, 233, 0.1));
  border-color: rgba(13, 148, 136, 0.32);
}
.price-promo__badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(120deg, #0f766e, #0d9488 40%, #0ea5e9);
  padding: 0.4rem 0.75rem;
  border-radius: 10px;
  margin-bottom: 0.55rem;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
  transition: transform 0.25s var(--ease-spring);
}
.price-promo__badge.is-updated {
  transform: scale(1.06);
}
.price-promo__list-line {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
}
.price-promo__list-label {
  font-weight: 600;
}
.price-promo__strike {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}
.price-promo__save {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f766e;
}

.price-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.steps > div {
  padding: 0.5rem;
}
.steps h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--text-strong);
}
.steps p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.875rem;
}
.step-num {
  font-size: 0.75rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

/* features page */
.content-block {
  padding: 2rem 0 4.5rem;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1.5rem 0 2rem;
}

.chip {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s var(--ease-spring);
}
.chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.chip.is-active {
  background: linear-gradient(135deg, var(--accent), #0b8078);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
}

.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-strong);
  margin: 2.75rem 0 1rem;
  letter-spacing: -0.02em;
}
.section-title:first-of-type {
  margin-top: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.feature-item {
  position: relative;
  overflow: hidden;
}
.feature-item[data-feature] {
  transition: opacity 0.35s, transform 0.35s var(--ease-spring);
}
.feature-item[data-feature].is-hidden {
  display: none;
}
.feature-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--text-strong);
}
.feature-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-dim), rgba(14, 165, 233, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

/* changelog accordion */
.changelog-wrap {
  max-width: 760px;
  margin: 2rem auto 0;
}
.changelog-acc {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.85rem;
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.changelog-acc summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  transition: background 0.2s;
}
.changelog-acc summary::-webkit-details-marker {
  display: none;
}
.changelog-acc summary::after {
  content: "";
  margin-left: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease-spring);
}
.changelog-acc[open] summary::after {
  transform: rotate(-135deg);
}
.changelog-acc summary:hover {
  background: rgba(13, 148, 136, 0.06);
}
.changelog-acc .acc-body {
  padding: 0 1.5rem 1.35rem;
  border-top: 1px solid var(--border);
}
.changelog-acc h2 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-strong);
  flex: 1 1 100%;
}
.changelog-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  width: 100%;
}

.changelog-date {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.tag {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tag-release {
  background: rgba(13, 148, 136, 0.18);
  color: var(--accent-hover);
}
.tag-fix {
  background: rgba(234, 179, 8, 0.22);
  color: #a16207;
}
.tag-news {
  background: rgba(59, 130, 246, 0.16);
  color: #1d4ed8;
}

.changelog-acc ul {
  margin: 0.65rem 0 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* referanslar */
.marquee-wrap {
  margin: 2rem 0 3rem;
  padding: 1.25rem 0;
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}
.marquee {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee:hover {
  animation-play-state: paused;
}
.marquee span {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-muted);
  opacity: 0.75;
  white-space: nowrap;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.testimonial {
  position: relative;
}
.testimonial-quote {
  font-size: 1.02rem;
  color: var(--text-strong);
  line-height: 1.5;
  margin: 0 0 1.25rem;
}
.testimonial-quote::before {
  content: "“";
  font-size: 2.5rem;
  line-height: 0;
  color: var(--accent);
  opacity: 0.35;
  vertical-align: -0.35em;
  margin-right: 0.15rem;
}
.testimonial footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-dim), rgba(14, 165, 233, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent-hover);
  font-size: 1rem;
}
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--text-strong);
  display: block;
  font-size: 0.9rem;
}
.testimonial .role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stars {
  color: #eab308;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}
.metric-card {
  text-align: center;
  padding: 1.5rem;
}
.metric-card strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
}

/* auth */
.auth-page .auth-wrap {
  min-height: calc(100vh - var(--nav-h) - 80px);
}

.auth-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem;
  position: relative;
  flex: 1 0 auto;
}

.auth-wrap::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.12), transparent 70%);
  top: 10%;
  left: 10%;
  pointer-events: none;
}
.auth-wrap::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1), transparent 70%);
  bottom: 5%;
  right: 8%;
  pointer-events: none;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 1;
}

.auth-card--wide {
  max-width: 560px;
}

.form-row-auth {
  display: grid;
  gap: 0 1rem;
  grid-template-columns: 1fr;
  align-items: start;
}

.form-row-auth > .form-group {
  min-width: 0;
}

@media (min-width: 520px) {
  .form-row-auth {
    grid-template-columns: 1fr 1fr;
  }
}

.auth-card .form-group--full {
  width: 100%;
}

.form-hint {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.auth-card.card {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: var(--shadow-md);
}

.auth-card h1 {
  font-size: 1.6rem;
  margin: 0 0 0.5rem;
  color: var(--text-strong);
  letter-spacing: -0.02em;
}

.auth-card .subtitle {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0 0 1.5rem;
}

.admin-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.12), rgba(220, 38, 38, 0.08));
  color: #b91c1c;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  vertical-align: middle;
  margin-left: 0.35rem;
  letter-spacing: 0.04em;
}

.form-alert {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.form-alert-error {
  background: rgba(220, 38, 38, 0.1);
  color: #b91c1c;
  border: 1px solid rgba(220, 38, 38, 0.28);
}

.form-group {
  margin-bottom: 1.125rem;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  color: var(--text-strong);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input[type="file"] {
  border-radius: var(--radius);
  padding: 0.65rem 1rem;
  font-size: 0.9375rem;
  cursor: pointer;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 1.125rem;
  padding-right: 2.75rem;
  cursor: pointer;
  line-height: 1.45;
}
.form-group select::-ms-expand {
  display: none;
}
.form-group textarea {
  display: block;
  min-width: 0;
  min-height: 6.75rem;
  resize: vertical;
  line-height: 1.5;
  vertical-align: top;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.85;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-group-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-foot {
  margin-top: 1.35rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.check input {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--accent);
}

/* footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  padding: 2.5rem 1rem;
  margin-top: auto;
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.footer-brand strong {
  font-size: 1.05rem;
  color: var(--text-strong);
}
.footer-brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
}
.footer-brand-tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.footer-pv-micro {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.5;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
}
.footer-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}
.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.9;
}

/* ——— Bilgi bankası ——— */
.kb-subnav {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
  margin-bottom: 0;
}
.kb-subnav__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  padding: 0.85rem 1rem;
  align-items: center;
  justify-content: center;
}
.kb-subnav__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  transition: color 0.15s, background 0.15s;
}
.kb-subnav__link:hover {
  color: var(--accent-hover);
  background: var(--accent-dim);
}
.kb-subnav__link.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.kb-search-hero {
  margin: 0 auto 1.5rem;
  max-width: 40rem;
  padding: 0 0 0.5rem;
}
.kb-search-hero__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.kb-search-hero__row {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.kb-search-hero__row input[type="search"] {
  flex: 1 1 12rem;
  min-width: 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  font-size: 1rem;
  font-family: inherit;
}
.kb-search-hero__row input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.kb-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.kb-tile {
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s var(--ease-spring), border-color 0.2s;
}
.kb-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 148, 136, 0.35);
  color: inherit;
}
.kb-tile__icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.kb-tile__title {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-strong);
}
.kb-tile__meta {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.kb-section-title {
  font-size: 1.1rem;
  color: var(--text-strong);
  margin: 0 0 1rem;
}
.kb-section-title__hint {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}
.kb-spotlight {
  margin-bottom: 2.5rem;
}
.kb-spotlight__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.kb-list-page {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.kb-list-card {
  padding: 1.35rem;
}
.kb-list-card--compact {
  padding: 1.15rem;
}
.kb-list-card--single {
  max-width: 42rem;
}
.kb-list-card__meta {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.45rem;
}
.kb-list-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--text-strong);
}
.kb-list-card__title a {
  color: inherit;
  text-decoration: none;
}
.kb-list-card__title a:hover {
  color: var(--accent);
}
.kb-list-card__excerpt {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.kb-list-card__more {
  margin: 0.85rem 0 0;
  font-size: 0.875rem;
}

.kb-article__crumb {
  font-size: 0.8125rem;
  margin: 0 0 1rem;
  color: var(--text-muted);
}
.kb-article__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  color: var(--text-strong);
  line-height: 1.2;
}
.kb-article__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}
.kb-article__body {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
}

.kb-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
}
.kb-video-card {
  padding: 1rem;
  overflow: hidden;
}
.kb-video-card__title {
  margin: 1rem 0 0.35rem;
  font-size: 1rem;
  color: var(--text-strong);
}
.kb-video-card__meta {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-hover);
}
.kb-video-card__excerpt {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.kb-video-card__link {
  margin: 0.65rem 0 0;
  font-size: 0.875rem;
}
.kb-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #0f172a;
}
.kb-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.kb-faq-section {
  margin-bottom: 2rem;
}
.kb-faq-section__title {
  font-size: 1rem;
  color: var(--text-strong);
  margin: 0 0 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--border);
}
.kb-faq-item {
  margin-bottom: 0.65rem;
  padding: 0;
  overflow: hidden;
}
.kb-faq-item summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 600;
  color: var(--text-strong);
  list-style: none;
}
.kb-faq-item summary::-webkit-details-marker {
  display: none;
}
.kb-faq-item summary::after {
  content: "+";
  float: right;
  color: var(--text-muted);
  font-weight: 400;
}
.kb-faq-item[open] summary::after {
  content: "−";
}
.kb-faq-item__a {
  padding: 0.85rem 1.15rem 1.15rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
  border-top: 1px solid var(--border);
}

.kbsearch-form {
  margin: 0 auto 1.5rem;
  max-width: 40rem;
}
.kbsearch-form__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.kbsearch-form__row {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.kbsearch-form__row input[type="search"] {
  flex: 1 1 12rem;
  min-width: 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  font-size: 1rem;
  font-family: inherit;
}
.kbsearch-form__row input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.kb-search-summary {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.kb-search-block {
  margin-bottom: 2rem;
}
.kb-search-hint {
  color: var(--text-muted);
}

/* ——— Blog ——— */
.blog-page {
  padding-bottom: 4rem;
}
.blog-hero .blog-search {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.35rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.blog-hero .blog-search input {
  flex: 1;
  min-width: 180px;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font: inherit;
}
.blog-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.blog-card {
  margin: 0;
  padding: 0;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.45rem;
  text-decoration: none;
  color: inherit;
}
.blog-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-strong);
}
.blog-card__excerpt {
  margin: 0 0 auto;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.blog-card__time {
  margin-top: 1rem;
  font-size: 0.77rem;
  font-weight: 600;
  color: #0f766e;
}
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.blog-pagination__info {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
}
.blog-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem 1rem;
}
.blog-post {
  max-width: 780px;
  margin: 0 auto 3rem;
  padding: 1.75rem 1.85rem 2.25rem;
}
.blog-post__hdr {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}
.blog-post__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.blog-post__kicker a {
  color: var(--accent-hover);
  text-decoration: none;
}
.blog-post__hdr h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1.2;
}
.blog-post__time {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.blog-prose {
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--text-strong);
}
.blog-prose p {
  margin: 0 0 1rem;
}
.blog-prose h2 {
  margin: 2rem 0 0.85rem;
  font-size: 1.35rem;
  font-weight: 700;
}
.blog-prose h3 {
  margin: 1.35rem 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}
.blog-prose a {
  color: var(--accent-hover);
  font-weight: 600;
}
.textarea-blog {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.84rem;
}

/* ——— İletişim sayfası ——— */
.form-alert--ok {
  background: rgba(13, 148, 136, 0.12);
  color: #0f766e;
  border: 1px solid rgba(13, 148, 136, 0.35);
}
.iletisim-flash {
  margin: 0 0 1.75rem;
}
.iletisim-quick {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}
.iletisim-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.25rem 1.35rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s var(--ease-spring), border-color 0.2s, box-shadow 0.2s;
}
.iletisim-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 148, 136, 0.35);
  box-shadow: var(--shadow-sm);
  color: inherit;
}
.iletisim-tile__icon {
  font-size: 1.25rem;
  opacity: 0.85;
  color: var(--accent-hover);
}
.iletisim-tile strong {
  font-size: 1rem;
  color: var(--text-strong);
}
.iletisim-tile__hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}
.iletisim-tile--accent {
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.08), rgba(14, 165, 233, 0.06));
  border-color: rgba(13, 148, 136, 0.22);
}
.iletisim-split {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 920px) {
  .iletisim-split {
    grid-template-columns: 1fr minmax(340px, 1fr);
  }
}
.iletisim-copy__p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.iletisim-copy__list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}
.iletisim-copy__list li {
  margin-bottom: 0.45rem;
}
.iletisim-copy__list a {
  color: var(--accent-hover);
  font-weight: 600;
}
.iletisim-form-wrap .section-title {
  margin-bottom: 0.35rem;
}
.iletisim-form {
  position: relative;
}
.iletisim-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.page-iletisim .iletisim-form-wrap {
  position: relative;
}
.iletisim-turnstile-wrap {
  padding-top: 0.35rem;
}
.iletisim-semantic-wrap {
  padding-top: 0.35rem;
  padding-bottom: 0.25rem;
  margin-top: 0.35rem;
  border-top: 1px dashed var(--border);
}
.iletisim-semantic-q {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--text-strong);
}
.iletisim-semantic-wrap > label:first-of-type {
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.82rem;
}

/* ═══════════════════════════════════════════════════════════
   HOME PAGE REDESIGN — Hero v2
═══════════════════════════════════════════════════════════ */

.hero-v2 {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: center;
  padding: 5rem min(1.25rem, 4vw) 3.5rem;
}
@media (max-width: 960px) {
  .hero-v2 {
    grid-template-columns: 1fr;
    padding: 3rem min(1.25rem, 4vw) 2rem;
    text-align: center;
  }
}

.hero-v2-text h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.35rem);
  margin: 0 0 1.25rem;
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.hero-gradient-text {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-v2-text > p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin: 0 0 2rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
@media (max-width: 960px) {
  .hero-ctas {
    justify-content: center;
  }
}

.hero-btn-ghost {
  font-size: 1rem;
  padding: 0.85rem 1.5rem;
  background: rgba(255, 255, 255, 0.75);
  color: var(--text-strong);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.hero-btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-trust {
    justify-content: center;
  }
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}
.hero-trust-item::before {
  content: "✓";
  color: var(--accent-hover);
  font-weight: 800;
  font-size: 0.8rem;
}

/* Phone mockup */
.hero-visual {
  position: relative;
  width: 360px;
  height: 500px;
  flex-shrink: 0;
  justify-self: end;
}
@media (max-width: 960px) {
  .hero-visual {
    display: none;
  }
}

.phone-frame {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 470px;
  border-radius: 36px;
  background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
  box-shadow:
    0 40px 80px rgba(15, 23, 42, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.07) inset;
  padding: 10px;
  z-index: 2;
}
.phone-notch {
  width: 60px;
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  margin: 5px auto 8px;
}
.phone-screen {
  border-radius: 26px;
  background: #f1f5f9;
  height: calc(100% - 22px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-screen-header {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  padding: 0.6rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.ph-logo {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}
.ph-name {
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.phone-screen-body {
  flex: 1;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  overflow: hidden;
}
.phone-menu-cat {
  font-size: 0.52rem;
  font-weight: 700;
  color: var(--accent-hover);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.1rem 0;
}
.phone-menu-item-row {
  display: flex;
  gap: 0.3rem;
  align-items: center;
  padding: 0.35rem 0.4rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.phone-mi-img {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.18), rgba(14, 165, 233, 0.12));
  flex-shrink: 0;
}
.phone-mi-text {
  flex: 1;
  min-width: 0;
}
.phone-mi-name {
  font-size: 0.52rem;
  font-weight: 600;
  color: #1e3a4f;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.phone-mi-price {
  font-size: 0.48rem;
  color: var(--accent-hover);
  font-weight: 700;
}
.phone-mi-btn {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  flex-shrink: 0;
}

/* Floating hero cards */
.hero-float-card {
  position: absolute;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.12);
  z-index: 3;
  white-space: nowrap;
}
.hero-float-card--top-left {
  top: 50px;
  left: 0;
  animation: hero-float-a 4s ease-in-out infinite;
}
.hero-float-card--bottom-right {
  bottom: 55px;
  right: 0;
  animation: hero-float-b 5s ease-in-out infinite;
}
.hero-float-card__val {
  font-size: 1.05rem;
  font-weight: 800;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}
.hero-float-card__label {
  font-size: 0.62rem;
  color: var(--text-muted);
  font-weight: 600;
}
@keyframes hero-float-a {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
@keyframes hero-float-b {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(8px); }
}

/* ═══════════════════════════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════════════════════════ */

.trust-strip {
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  padding: 0.9rem 0;
  margin-bottom: 2rem;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-strip-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-strip-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
  flex-shrink: 0;
}
.trust-strip-items {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-strip-item {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════
   STAT STRIP enhancements
═══════════════════════════════════════════════════════════ */

.stat-item {
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
}
.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ═══════════════════════════════════════════════════════════
   FEATURES SECTION v2
═══════════════════════════════════════════════════════════ */

.features-section {
  padding: 1.5rem min(1.25rem, 4vw) 3rem;
}
.features-section-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-hover);
  margin: 0 0 0.75rem;
}
.features-section-header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.features-section-header > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}
.features-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.feature-card-v2 {
  padding: 1.5rem;
  cursor: default;
}
.feature-card-v2:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 148, 136, 0.35);
}
.feature-card-v2__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-dim), rgba(14, 165, 233, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.feature-card-v2__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-strong);
}
.feature-card-v2__desc {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Pricing section header (index page only) */
.pricing-section-hdr {
  text-align: center;
  padding: 2rem min(1.25rem, 4vw) 0;
}
.pricing-section-hdr .section-eyebrow {
  margin-bottom: 0.65rem;
}
.pricing-section-hdr h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: -0.03em;
}
.pricing-section-hdr > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════════ */

.cta-banner {
  margin: 1rem auto 4rem;
  padding: 3.5rem 2rem;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(135deg, #0d9488 0%, #0a7dc2 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(ellipse 40% 60% at 80% 80%, rgba(255, 255, 255, 0.07), transparent);
  pointer-events: none;
}
.cta-banner h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4vw, 2.15rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  position: relative;
}
.cta-banner > p {
  margin: 0 0 2.25rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  position: relative;
}
.cta-banner-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  position: relative;
}
.btn-white {
  background: #fff;
  color: var(--accent-hover);
  font-weight: 700;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s var(--ease-spring), box-shadow 0.2s, background 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.btn-white:hover {
  background: rgba(255, 255, 255, 0.93);
  color: #0f766e;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
.btn-outline-white {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.45);
  font-weight: 600;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════
   HEADER scroll state
═══════════════════════════════════════════════════════════ */

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 2px 24px rgba(30, 58, 79, 0.1);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER v2
═══════════════════════════════════════════════════════════ */

.site-footer {
  padding: 3rem 1rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
@media (max-width: 720px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-start;
}
.footer-brand strong {
  font-size: 1.1rem;
  color: var(--text-strong);
}
.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
  max-width: 240px;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 480px) {
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer-nav-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer-nav-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-strong);
  margin-bottom: 0.2rem;
}
.footer-nav-group a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
}
.footer-nav-group a:hover {
  color: var(--accent);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom-brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.footer-bottom .footer-brand-tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.footer-bottom .footer-copy {
  margin: 0;
}

/* ——— İşletme paneli: Faturalarım bandı (yüksek kontrast) ——— */
.musteri-fatura-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  margin: 1rem 0 1.6rem;
  padding: 1.05rem 1.25rem 1.1rem;
  max-width: min(100%, 52rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 253, 250, 0.94));
  border: 1px solid rgba(13, 148, 136, 0.45);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(15, 59, 86, 0.1);
}

.musteri-fatura-banner__lead {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  flex: 1 1 17rem;
  min-width: min(100%, 260px);
}

.musteri-fatura-banner__icon {
  font-size: 1.85rem;
  line-height: 1;
  flex-shrink: 0;
}

.musteri-fatura-banner__title {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: -0.02em;
}

.musteri-fatura-banner__desc {
  margin: 0;
  font-size: 0.975rem;
  line-height: 1.55;
  font-weight: 500;
  color: var(--text);
}

.musteri-fatura-banner__warn {
  margin: 0.55rem 0 0;
  padding: 0.5rem 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #78350f;
  line-height: 1.45;
  background: rgba(251, 191, 36, 0.2);
  border-radius: 8px;
  border: 1px solid rgba(245, 158, 11, 0.38);
}

.musteri-fatura-banner__cta {
  flex-shrink: 0;
  font-weight: 600;
  padding: 0.65rem 1.2rem;
  font-size: 0.9375rem;
}

@media (max-width: 520px) {
  .musteri-fatura-banner__cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════
   ÖZELLİKLER SAYFASI
═══════════════════════════════════════════════════════════ */

.oz-hero {
  text-align: center;
  padding: 3.5rem min(1.25rem, 4vw) 2rem;
  max-width: 760px;
  margin: 0 auto;
}
.oz-hero h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  margin: 0 0 1rem;
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.oz-hero > p {
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  line-height: 1.6;
}
.oz-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Count bar */
.oz-count-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 0 auto 2.5rem;
  max-width: 820px;
  padding: 0 min(1.25rem, 4vw);
}
.oz-count-item {
  text-align: center;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  flex: 1 1 150px;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
}
.oz-count-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.oz-count-val {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  line-height: 1.2;
}
.oz-count-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  font-weight: 500;
}

/* Feature spotlights (makaleler) */
.feature-spotlights-section {
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}
.spotlights-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 0;
  padding: 3rem min(1.25rem, 4vw) 1.5rem;
}
.spotlights-header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.spotlights-header > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}
.feature-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 3.5rem min(1.25rem, 4vw);
  border-top: 1px solid var(--border);
}
@media (max-width: 800px) {
  .feature-spotlight {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 2rem min(1.25rem, 4vw);
  }
}
.feature-spotlight--reverse .feat-spot-visual {
  order: 2;
}
@media (max-width: 800px) {
  .feature-spotlight--reverse .feat-spot-visual {
    order: 0;
  }
}
.feat-spot-visual {
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.07) 0%, rgba(14, 165, 233, 0.05) 100%);
  border: 1px solid rgba(13, 148, 136, 0.15);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.feat-spot-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 65% at 70% 25%, rgba(13, 148, 136, 0.1), transparent);
  pointer-events: none;
}
.feat-spot-visual-icon {
  font-size: 3.75rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.feat-spot-visual-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-strong);
  position: relative;
  z-index: 1;
}
.feat-spot-visual-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.feat-spot-chip {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.12);
  color: var(--accent-hover);
  border: 1px solid rgba(13, 148, 136, 0.22);
}
.feat-spot-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-hover);
  margin: 0 0 0.65rem;
}
.feat-spot-content h2 {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--text-strong);
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.feat-spot-content > p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 1.25rem;
}
.feat-spot-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.feat-spot-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.feat-spot-list li::before {
  content: "✓";
  color: var(--accent-hover);
  font-weight: 800;
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

/* FAQ section (özellikler) */
.oz-faq-wrap {
  padding: 3rem min(1.25rem, 4vw) 2rem;
  border-top: 1px solid var(--border);
}
.oz-faq-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}
.oz-faq-header h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 4vw, 2.15rem);
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: -0.03em;
}
.oz-faq-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}
.oz-faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.oz-faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.oz-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  font-size: 0.9625rem;
  color: var(--text-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transition: background 0.2s;
  user-select: none;
}
.oz-faq-item summary::-webkit-details-marker { display: none; }
.oz-faq-item summary::marker { content: ""; }
.oz-faq-item summary:hover { background: rgba(13, 148, 136, 0.04); }
.oz-faq-item__icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--accent-hover);
  transition: transform 0.25s var(--ease-spring), background 0.2s;
}
.oz-faq-item[open] .oz-faq-item__icon {
  transform: rotate(45deg);
  background: rgba(13, 148, 136, 0.18);
}
.oz-faq-item__a {
  padding: 0.85rem 1.25rem 1.15rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--border);
}

/* content-block for ozellikler */
.oz-content-block {
  padding-bottom: 1rem;
}

/* ══════════════════════════════════════════════
   BİLGİ BANKASI HUB — kb-hub-*
   ══════════════════════════════════════════════ */

/* Hero */
.kb-hub-hero {
  padding: 4rem min(1.25rem, 4vw) 0;
  text-align: center;
}
.kb-hub-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.kb-hub-hero p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* Search bar */
.kb-hub-search-wrap {
  max-width: 560px;
  margin: 0 auto 1.25rem;
}
.kb-hub-search-form {
  display: flex;
  gap: 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 2rem;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.kb-hub-search-form:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.15);
}
.kb-hub-search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text);
  outline: none;
}
.kb-hub-search-input::placeholder { color: var(--text-muted); }
.kb-hub-search-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0 1.25rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}
.kb-hub-search-btn:hover { background: var(--accent-hover); }

/* Stats row */
.kb-hub-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem min(1.25rem, 4vw) 2rem;
}
.kb-hub-stat {
  text-align: center;
}
.kb-hub-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}
.kb-hub-stat span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Category grid */
.kb-cat-grid-section {
  padding: 0 min(1.25rem, 4vw) 2rem;
}
.kb-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.kb-cat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1.25rem 1.25rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s var(--ease-spring), box-shadow 0.2s;
}
.kb-cat-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.kb-cat-card__icon {
  font-size: 1.75rem;
  line-height: 1;
}
.kb-cat-card__title {
  font-weight: 700;
  font-size: 0.9375rem;
}
.kb-cat-card__count {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Two-column content feed */
.kb-content-feed-section {
  padding: 0 min(1.25rem, 4vw) 2rem;
}
.kb-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.kb-section-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}
.kb-section-header a {
  font-size: 0.875rem;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}
.kb-section-header a:hover { text-decoration: underline; }
.kb-content-feed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 680px) { .kb-content-feed { grid-template-columns: 1fr; } }

/* Article feed card */
.kb-feed-col h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
}
.kb-feed-articles { display: flex; flex-direction: column; gap: 0.75rem; }
.kb-feed-article {
  display: block;
  padding: 1rem 1.1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s var(--ease-spring);
}
.kb-feed-article:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.kb-feed-article__title {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}
.kb-feed-article__meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.kb-feed-article__tag {
  background: rgba(13,148,136,0.1);
  color: var(--accent);
  border-radius: 999px;
  padding: 0.15em 0.6em;
  font-size: 0.75rem;
  font-weight: 600;
}

/* News list */
.kb-news-list { display: flex; flex-direction: column; gap: 0.65rem; }
.kb-news-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s;
}
.kb-news-item:hover { border-color: var(--accent); }
.kb-news-item__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.kb-news-item__title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}
.kb-news-item__meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.kb-badge-new {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 0.1em 0.55em;
  vertical-align: middle;
  margin-left: 0.4em;
}

/* Pinned articles */
.kb-pinned-section {
  padding: 0 min(1.25rem, 4vw) 2rem;
}
.kb-pinned-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
.kb-pinned-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s var(--ease-spring), box-shadow 0.2s;
  position: relative;
}
.kb-pinned-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.kb-pinned-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  background: rgba(13,148,136,0.1);
  color: var(--accent);
  border-radius: 999px;
  padding: 0.2em 0.7em;
  font-size: 0.75rem;
  font-weight: 700;
  width: fit-content;
}
.kb-pinned-card__title {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.35;
}
.kb-pinned-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}
.kb-pinned-card__cta {
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 0.25rem;
}

/* Video highlights */
.kb-video-section {
  padding: 0 min(1.25rem, 4vw) 2rem;
}
.kb-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
.kb-video-thumb {
  display: block;
  text-decoration: none;
  color: var(--text);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s var(--ease-spring), box-shadow 0.2s;
  background: var(--surface-2);
}
.kb-video-thumb:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.kb-video-thumb__img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface-3);
}
.kb-video-thumb__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.kb-video-thumb:hover .kb-video-thumb__img img { transform: scale(1.04); }
.kb-video-thumb__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.28);
  transition: background 0.2s;
}
.kb-video-thumb:hover .kb-video-thumb__play { background: rgba(0,0,0,0.4); }
.kb-video-thumb__play svg {
  width: 44px;
  height: 44px;
  fill: #fff;
  drop-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.kb-video-thumb__info {
  padding: 0.85rem 1rem 0.9rem;
}
.kb-video-thumb__title {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.4;
  margin-bottom: 0.3rem;
}
.kb-video-thumb__dur {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* FAQ preview */
.kb-faq-preview-section {
  padding: 0 min(1.25rem, 4vw) 2rem;
}
.kb-faq-preview-list { margin-top: 1.25rem; }
.kb-faq-preview-item {
  border-bottom: 1px solid var(--border);
}
.kb-faq-preview-item:first-child { border-top: 1px solid var(--border); }
.kb-faq-preview-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  user-select: none;
}
.kb-faq-preview-item summary::-webkit-details-marker { display: none; }
.kb-faq-preview-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-spring);
}
.kb-faq-preview-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--accent);
}
.kb-faq-preview-item__a {
  padding: 0 0.25rem 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Help CTA */
.kb-help-cta {
  margin: 1rem min(1.25rem, 4vw) 3rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  color: #fff;
}
.kb-help-cta h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #fff;
}
.kb-help-cta p {
  opacity: 0.88;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}
.kb-help-cta-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.kb-help-cta-btns .btn-white {
  background: #fff;
  color: var(--accent);
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.kb-help-cta-btns .btn-white:hover { opacity: 0.9; }
.kb-help-cta-btns .btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.kb-help-cta-btns .btn-ghost-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.12);
}

@media (max-width: 960px) {
  .kb-hub-hero { padding-top: 2.5rem; }
  .kb-hub-stats { gap: 1.25rem; }
  .kb-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .kb-video-grid { grid-template-columns: repeat(2, 1fr); }
  .kb-pinned-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .kb-cat-grid { grid-template-columns: 1fr 1fr; }
  .kb-video-grid { grid-template-columns: 1fr; }
  .kb-pinned-grid { grid-template-columns: 1fr; }
  .kb-help-cta { padding: 2rem 1.25rem; }
}

/* ══════════════════════════════════════════════
   BLOG SAYFASI YENİ TASARIM
   ══════════════════════════════════════════════ */

/* Hero */
.blog-hero {
  padding: 4rem min(1.25rem, 4vw) 1.5rem;
  text-align: center;
}
.blog-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.blog-hero > p {
  color: var(--text-muted);
  margin: 0 auto 1.75rem;
  max-width: 480px;
}
.blog-hero-search {
  display: flex;
  gap: 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 2rem;
  overflow: hidden;
  max-width: 520px;
  margin: 0 auto;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.blog-hero-search:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.15);
}
.blog-hero-search input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text);
  outline: none;
  min-width: 0;
}
.blog-hero-search input::placeholder { color: var(--text-muted); }
.blog-hero-search__btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.blog-hero-search__btn:hover { background: var(--accent-hover); }

/* Topic chips */
.blog-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 min(1.25rem, 4vw) 1.5rem;
  justify-content: center;
}
.blog-topic-chip {
  display: inline-block;
  padding: 0.35em 0.9em;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(100,116,139,0.35);
  color: var(--text-muted);
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
  transition: background 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s;
}
.blog-topic-chip:hover,
.blog-topic-chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Search notice */
.blog-search-notice {
  padding: 0 min(1.25rem, 4vw) 1rem;
}
.blog-search-notice p {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.blog-search-notice a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  margin-left: 0.5em;
}
.blog-search-notice a:hover { text-decoration: underline; }

/* Empty state */
.blog-empty {
  text-align: center;
  padding: 3rem 1.25rem;
}
.blog-empty__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}
.blog-empty p { color: var(--text-muted); margin-bottom: 1.25rem; }

/* Featured post */
.blog-featured {
  padding: 0 min(1.25rem, 4vw) 2rem;
}
.blog-featured__card {
  display: grid;
  grid-template-columns: 260px 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
  min-height: 210px;
  transition: border-color 0.2s, transform 0.22s var(--ease-spring), box-shadow 0.2s;
}
.blog-featured__content h2,
.blog-featured__content p { color: inherit; }
.blog-featured__card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}
.blog-featured__visual {
  background: linear-gradient(135deg, rgba(13,148,136,0.82) 0%, rgba(6,182,212,0.65) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-featured__visual-icon { font-size: 3.5rem; }
.blog-featured__content {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.blog-featured__badge {
  display: inline-block;
  background: rgba(13,148,136,0.12);
  color: var(--accent);
  border-radius: 999px;
  padding: 0.2em 0.75em;
  font-size: 0.75rem;
  font-weight: 700;
  width: fit-content;
}
.blog-featured__title {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
  color: var(--text-strong);
}
.blog-featured__excerpt {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.blog-featured__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
}
.blog-featured__meta time {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.blog-featured__cta {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
}
@media (max-width: 680px) {
  .blog-featured__card { grid-template-columns: 1fr; }
  .blog-featured__visual { min-height: 110px; }
  .blog-featured__content { padding: 1.25rem; }
}

/* Grid section */
.blog-grid-section {
  padding: 0 min(1.25rem, 4vw) 1.5rem;
}

/* Blog grid — override */
.blog-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 860px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .blog-grid { grid-template-columns: 1fr; } }

/* Blog card — override and extend */
.blog-card {
  margin: 0;
  padding: 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s var(--ease-spring), box-shadow 0.2s, border-color 0.2s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.09);
  border-color: var(--accent);
}
.blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.blog-card__top {
  background: linear-gradient(135deg, rgba(13,148,136,0.1) 0%, rgba(6,182,212,0.06) 100%);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 1.1rem;
}
.blog-card__icon { font-size: 1.3rem; }
.blog-card__body {
  padding: 1rem 1.1rem 0.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.blog-card__title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-strong);
  line-height: 1.4;
}
.blog-card__excerpt {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.blog-card__time {
  display: block;
  padding: 0 1.1rem 0.9rem;
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
}

/* Numbered pagination */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem min(1.25rem, 4vw) 2rem;
  flex-wrap: wrap;
}
.blog-pag-pages {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.blog-pag-btn,
.blog-pag-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2.2rem;
  padding: 0 0.55rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: var(--surface-2);
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  cursor: pointer;
}
.blog-pag-btn:hover,
.blog-pag-num:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(13,148,136,0.06);
}
.blog-pag-num.is-current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  cursor: default;
}
.blog-pag-btn.is-disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}
.blog-pag-dots {
  color: var(--text-muted);
  font-size: 0.875rem;
  padding: 0 0.15rem;
}

/* Blog CTA */
.blog-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
}
.blog-cta__text h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 0.25rem;
}
.blog-cta__text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}
.blog-cta__btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .blog-cta { flex-direction: column; align-items: flex-start; }
  .blog-hero { padding-top: 2.5rem; }
}
