.bs-hero-actions .bso-widescreen-launcher {
  flex: 0 1 auto;
}

.bso-widescreen-launcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  vertical-align: middle;
  cursor: pointer;
}

.bso-widescreen-launcher i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin: 0;
  font-size: 14px;
  line-height: 1;
}

.bso-widescreen-launcher i::before {
  display: block;
  line-height: 1;
}

.bso-widescreen-launcher__label {
  display: block;
  line-height: 1;
  padding: 0;
  transform: none;
}

.bso-widescreen-launcher:focus-visible {
  outline: 2px solid #198754;
  outline-offset: 2px;
}

html.bso-widescreen--active,
html.bso-widescreen--active body {
  overflow: hidden;
}

body.bso-widescreen--active .bs-top-bar-wrapper,
body.bso-widescreen--active #primary,
body.bso-widescreen--active .bs-footer {
  pointer-events: none;
}

body.bso-widescreen--active #bso-onboarding-launcher {
  visibility: hidden;
  pointer-events: none;
}

.bso-widescreen-root[hidden] {
  display: none;
}

.bso-widescreen,
.bso-widescreen * {
  -webkit-font-smoothing: antialiased;
}

.bso-widescreen {
  color: #f5f5f5;
  --bso-ws-viewport-h: 100vh;
  --bso-ws-bg: #060808;
  --bso-ws-surface: #121212;
  --bso-ws-elevated: #1a1a1a;
  --bso-ws-accent: #198754;
  --bso-ws-text: #ffffff;
  --bso-ws-muted: #a3a3a3;
  --bso-ws-z-overlay: 100040;
  --bso-ws-space-sm: 8px;
  --bso-ws-space-md: 16px;
  --bso-ws-space-lg: 24px;
  --bso-ws-space-xl: 32px;
  --bso-ws-radius: 14px;
  --bso-ws-audio-pulse: 0;
  position: fixed;
  inset: 0;
  z-index: var(--bso-ws-z-overlay);
  background:
    radial-gradient(ellipse 90% 70% at 50% 108%, rgba(25, 135, 84, 0.07), transparent 58%),
    radial-gradient(ellipse 55% 45% at 12% 18%, rgba(25, 135, 84, 0.04), transparent 52%),
    radial-gradient(ellipse 50% 42% at 88% 72%, rgba(25, 135, 84, 0.05), transparent 50%),
    var(--bso-ws-bg);
  color: var(--bso-ws-text);
  display: grid;
  grid-template-rows: auto auto 1fr;
  opacity: 0;
  visibility: hidden;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.bso-widescreen[hidden] {
  display: none;
}

.bso-widescreen--visible {
  opacity: 1;
  visibility: visible;
}

.bso-widescreen__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bso-widescreen__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.bso-widescreen__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(96px);
  opacity: 0.22;
  transform-origin: center center;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  will-change: transform, opacity;
  animation: bso-ws-orb-drift 18s ease-in-out infinite alternate;
}

.bso-widescreen__orb--1 {
  width: 48vw;
  height: 48vw;
  top: -16%;
  left: -12%;
  background: radial-gradient(circle, rgba(25, 135, 84, 0.22), rgba(25, 135, 84, 0.08) 42%, transparent 72%);
  animation-duration: 22s;
}

.bso-widescreen__orb--2 {
  width: 42vw;
  height: 42vw;
  bottom: -20%;
  right: -10%;
  background: radial-gradient(circle, rgba(25, 135, 84, 0.2), rgba(25, 135, 84, 0.06) 48%, transparent 76%);
  animation-duration: 26s;
  animation-delay: -4s;
}

.bso-widescreen__orb--3 {
  width: 36vw;
  height: 36vw;
  top: 38%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(25, 135, 84, 0.14), rgba(25, 135, 84, 0.05) 55%, transparent 78%);
  animation-duration: 20s;
  animation-delay: -8s;
}

@keyframes bso-ws-orb-drift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(2.5%, -2%) scale(1.06);
  }
}

.bso-widescreen__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background:
    radial-gradient(ellipse at center, transparent 38%, rgba(0, 0, 0, 0.62) 100%),
    rgba(0, 0, 0, 0.22);
}

.bso-widescreen__intro-layer {
  position: absolute;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: var(--bso-ws-space-lg);
  opacity: 0;
  visibility: hidden;
  background: transparent;
  pointer-events: none;
  isolation: isolate;
  overflow: hidden;
}

.bso-widescreen.bso-widescreen--intro .bso-widescreen__intro-inner {
  pointer-events: none;
}

.bso-widescreen.bso-widescreen--intro .bso-widescreen__intro-logo {
  visibility: hidden;
  opacity: 0;
}

.bso-widescreen__intro-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: block;
}

.bso-widescreen.bso-widescreen--intro .bso-widescreen__intro-layer:not(.bso-widescreen__intro-layer--done) {
  pointer-events: auto;
}

.bso-widescreen__intro-inner {
  position: absolute;
  left: 50%;
  bottom: clamp(72px, 14vh, 120px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: min(28rem, 88vw);
  transform: translateX(-50%);
  text-align: center;
}

.bso-widescreen__intro-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(184px, 58vw);
  object-fit: contain;
  opacity: 0.98;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.55));
}

.bso-widescreen__intro-tagline {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(231, 233, 233, 0.6);
  line-height: 1.55;
}

.bso-widescreen__intro-rule {
  display: block;
  width: min(240px, 52vw);
  height: 1px;
  margin-top: 14px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(25, 135, 84, 0.35),
    rgba(231, 233, 233, 0.14),
    rgba(25, 135, 84, 0.35),
    transparent
  );
  transform-origin: center center;
}

.bso-widescreen__intro-layer--done {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.bso-widescreen__header {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--bso-ws-space-md);
  padding: var(--bso-ws-space-md) var(--bso-ws-space-lg);
  border-bottom: 1px solid rgba(25, 135, 84, 0.15);
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.98), rgba(8, 8, 8, 0.85));
  backdrop-filter: blur(14px);
}

.bso-widescreen__header-brand {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1;
}

.bso-widescreen__brand-logo-img {
  display: block;
  flex-shrink: 0;
  height: 34px;
  width: auto;
  max-width: 148px;
  object-fit: contain;
}

.bso-widescreen__header-copy {
  min-width: 0;
}

.bso-widescreen__eyebrow {
  margin: 0 0 4px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bso-ws-accent);
}

.bso-widescreen__title {
  margin: 0;
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 700;
}

.bso-widescreen__header-actions {
  display: flex;
  align-items: center;
  gap: var(--bso-ws-space-sm);
}

.bso-widescreen__mute,
.bso-widescreen__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--bso-ws-radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 18, 18, 0.92);
  color: var(--bso-ws-text);
  cursor: pointer;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.bso-widescreen__mute:hover,
.bso-widescreen__close:hover,
.bso-widescreen__mute:focus-visible,
.bso-widescreen__close:focus-visible {
  border-color: rgba(25, 135, 84, 0.55);
  box-shadow: 0 0 20px rgba(25, 135, 84, 0.22);
  outline: none;
}

.bso-widescreen__scroller {
  position: relative;
  z-index: 10;
  isolation: isolate;
  overflow-x: hidden;
  overflow-y: scroll;
  height: 100%;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: auto;
  overscroll-behavior: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.bso-widescreen__scroller::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.bso-widescreen__progress-wrap {
  position: relative;
  z-index: 55;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--bso-ws-space-md);
  padding: 10px var(--bso-ws-space-lg) 8px;
  pointer-events: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(8, 8, 8, 0.72);
}

.bso-widescreen__progress-track {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.bso-widescreen__progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0.04);
  transform-origin: left center;
  will-change: transform;
  background: linear-gradient(90deg, var(--bso-ws-accent), #20c997);
  box-shadow: 0 0 calc(8px + var(--bso-ws-audio-pulse, 0) * 16px) rgba(25, 135, 84, calc(0.2 + var(--bso-ws-audio-pulse, 0) * 0.45));
}

@media (prefers-reduced-motion: reduce) {
  .bso-widescreen__progress-fill {
    will-change: auto;
  }
}

.bso-widescreen__progress-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8e8e8;
  font-variant-numeric: tabular-nums;
}

.bso-widescreen__scroll-cta {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--bso-ws-space-sm);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bso-ws-muted);
  pointer-events: none;
  transition: opacity 0.35s ease-in-out;
}

.bso-widescreen__scroll-cta--hidden {
  opacity: 0;
}

.bso-widescreen__scroll-line {
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--bso-ws-accent), transparent);
  animation: bso-ws-scroll-pulse 1.6s ease-in-out infinite;
}

@keyframes bso-ws-scroll-pulse {
  0% { transform: scaleY(0.35); opacity: 0.45; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.35); opacity: 0.45; }
}

.bso-widescreen__chapters {
  position: relative;
  z-index: 15;
}

.bso-widescreen__chapter {
  position: relative;
  height: var(--bso-ws-chapter-h, 100%);
  min-height: var(--bso-ws-chapter-h, 100%);
  box-sizing: border-box;
}

/* ─── İçerik içi DataCasa görselleri — çerçeveyi doldur (cover) ─── */

.bso-widescreen__dc-frame {
  margin: 0;
  padding: 0;
  border: none;
  max-width: 100%;
}

.bso-widescreen__dc-frame--chapter {
  width: 100%;
  margin: var(--bso-ws-space-sm) 0 var(--bso-ws-space-md);
}

.bso-widescreen__dc-frame-media {
  position: relative;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 0 1px rgba(0, 0, 0, 0.35),
    0 14px 40px rgba(0, 0, 0, 0.35);
  background: #090b0d;
}

.bso-widescreen__dc-frame--chapter .bso-widescreen__dc-frame-media {
  position: relative;
  width: 100%;
  height: clamp(168px, 38vw, min(380px, 46vh));
  overflow: hidden;
}

.bso-widescreen__dc-frame-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 991px) {
  .bso-widescreen__dc-frame--chapter {
    margin-left: auto;
    margin-right: auto;
    max-width: min(520px, 100%);
  }

  .bso-widescreen__dc-frame--chapter .bso-widescreen__dc-frame-media {
    height: clamp(152px, 52vw, min(280px, 56vw));
  }
}

.bso-widescreen__dc-frame-cap {
  margin: 8px 0 0;
  padding: 0 2px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(186, 198, 192, 0.85);
  line-height: 1.45;
  text-wrap: balance;
}

.bso-widescreen__hero-copy,
.bso-widescreen__about-layout,
.bso-widescreen__finale-copy,
.bso-widescreen__chapter-layout {
  position: relative;
  z-index: 1;
}

.bso-widescreen__chapter-pin {
  height: auto;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: var(--bso-ws-space-lg);
  box-sizing: border-box;
}

.bso-widescreen__chapter--hero .bso-widescreen__chapter-pin,
.bso-widescreen__chapter--about .bso-widescreen__chapter-pin,
.bso-widescreen__chapter--finale .bso-widescreen__chapter-pin {
  align-items: center;
}

.bso-widescreen__chapter--hero .bso-widescreen__chapter-pin,
.bso-widescreen__chapter--finale .bso-widescreen__chapter-pin {
  width: 100%;
  max-width: min(920px, 100%);
  margin-inline: auto;
  padding-inline: clamp(14px, 4vw, 36px);
}

.bso-widescreen__chapter--about .bso-widescreen__chapter-pin {
  width: 100%;
  max-width: min(1080px, 100%);
  margin-inline: auto;
  padding-inline: clamp(14px, 4vw, 36px);
}

.bso-widescreen__hero-copy,
.bso-widescreen__about-layout,
.bso-widescreen__finale-copy {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  isolation: isolate;
  transform: translateZ(0);
}

.bso-widescreen__about-layout {
  max-width: min(840px, 100%);
}

.bso-widescreen__about-header {
  margin-bottom: var(--bso-ws-space-lg);
}

.bso-widescreen__about-header .bso-widescreen__index {
  display: block;
  margin-bottom: var(--bso-ws-space-sm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(25, 135, 84, 0.85);
}

.bso-widescreen__about-showcase {
  width: 100%;
  margin-top: var(--bso-ws-space-md);
}

.bso-widescreen__about-showcase .bso-widescreen__dc-frame--chapter {
  margin: 0;
}

.bso-widescreen__about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: var(--bso-ws-space-md) 0 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.bso-widescreen__about-stats li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
}

.bso-widescreen__about-stats li > i {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 17px;
  line-height: 1;
  color: var(--bso-ws-accent);
}

.bso-widescreen__about-stat-label {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.bso-widescreen__about-stat-label strong {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--bso-ws-text);
  line-height: 1.25;
}

.bso-widescreen__about-stat-label > span {
  font-size: 11px;
  color: var(--bso-ws-muted);
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.bso-widescreen__hero-copy .bso-widescreen__headline,
.bso-widescreen__about-header .bso-widescreen__headline {
  text-wrap: balance;
}

.bso-widescreen__hero-copy .bso-widescreen__lede,
.bso-widescreen__hero-copy .bso-widescreen__body,
.bso-widescreen__about-layout .bso-widescreen__lede,
.bso-widescreen__finale-copy .bso-widescreen__lede,
.bso-widescreen__finale-copy .bso-widescreen__finale-sub {
  margin-inline: auto;
}

.bso-widescreen__finale-intro {
  max-width: 52ch;
  margin: 0 auto;
  padding: 14px 18px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  box-sizing: border-box;
}

.bso-widescreen__finale-intro .bso-widescreen__lede {
  margin: 0 0 10px;
  max-width: none;
}

.bso-widescreen__finale-sub {
  margin: 0;
  font-size: clamp(14px, 1.9vw, 16px);
  line-height: 1.65;
  color: #b8c4be;
  text-wrap: balance;
}

.bso-widescreen__finale-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin: var(--bso-ws-space-md) auto 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.bso-widescreen__finale-steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  color: #e2e8e4;
  text-align: center;
  text-wrap: balance;
}

.bso-widescreen__finale-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(25, 135, 84, 0.2);
  color: var(--bso-ws-accent);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.bso-widescreen__finale-copy .bso-widescreen__finale-btn {
  margin-left: auto;
  margin-right: auto;
}

.bso-widescreen__chapter-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

@media (min-width: 992px) {
  .bso-widescreen__chapter-layout:not(.bso-widescreen__chapter-layout--flip) .bso-widescreen__card-stage {
    perspective-origin: 58% 46%;
  }

  .bso-widescreen__chapter-layout--flip .bso-widescreen__card-stage {
    perspective-origin: 42% 46%;
  }

  .bso-widescreen__chapter-layout--flip {
    grid-template-columns: minmax(380px, 460px) minmax(0, 1fr);
  }

  .bso-widescreen__chapter-layout--flip .bso-widescreen__card-stage {
    order: 1;
    justify-self: start;
  }

  .bso-widescreen__chapter-layout--flip .bso-widescreen__copy {
    order: 2;
    justify-self: end;
    margin-left: auto;
    margin-right: 0;
  }
}

.bso-widescreen__copy {
  max-width: 580px;
  isolation: isolate;
  transform: translateZ(0);
}

.bso-widescreen__index {
  display: block;
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(32, 201, 151, 0.72);
  margin-bottom: var(--bso-ws-space-sm);
  user-select: none;
}

.bso-widescreen__kicker {
  margin: 0 0 var(--bso-ws-space-sm);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bso-ws-accent);
}

.bso-widescreen__headline {
  margin: 0 0 var(--bso-ws-space-md);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--bso-ws-text);
}

.bso-widescreen__lede {
  margin: 0;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.65;
  color: var(--bso-ws-muted);
  max-width: 46ch;
}

.bso-widescreen__body {
  margin: var(--bso-ws-space-md) 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: #c8c8c8;
  max-width: 52ch;
}

.bso-widescreen__trust-box {
  margin: 14px auto 0;
  max-width: min(100%, 48ch);
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.bso-widescreen__trust-box::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  margin: 0 auto 8px;
  border-radius: 1px;
  background: var(--bso-ws-accent);
  opacity: 0.85;
}

.bso-widescreen__trust-box .bso-widescreen__body {
  margin: 0 auto;
  max-width: none;
  font-size: clamp(13px, 1.7vw, 14px);
  line-height: 1.55;
  color: #c5d0ca;
  text-wrap: balance;
}

.bso-widescreen__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--bso-ws-space-md);
  margin: var(--bso-ws-space-lg) 0 0;
  padding: 0;
  list-style: none;
}

.bso-widescreen__highlights li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: var(--bso-ws-space-md);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
}

.bso-widescreen__highlights li > i {
  font-size: 1.125rem;
  line-height: 1;
  color: rgba(32, 201, 151, 0.92);
}

.bso-widescreen__highlights strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--bso-ws-text);
  letter-spacing: -0.02em;
}

.bso-widescreen__highlights span {
  font-size: 11px;
  color: var(--bso-ws-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bso-widescreen__highlights--hero,
.bso-widescreen__highlights--finale {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.bso-widescreen__pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: var(--bso-ws-space-lg) 0 0;
  padding: 0;
  list-style: none;
}

.bso-widescreen__pillars li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(25, 135, 84, 0.28);
  background: rgba(25, 135, 84, 0.08);
  font-size: 12px;
  font-weight: 600;
  color: #e8e8e8;
}

.bso-widescreen__pillars i {
  color: var(--bso-ws-accent);
}

.bso-widescreen__card-stage {
  perspective: 1320px;
  perspective-origin: 50% 46%;
  transform-style: preserve-3d;
  display: grid;
  place-items: center;
  min-height: 400px;
}

.bso-widescreen__card-3d {
  position: relative;
  width: 100%;
  max-width: 432px;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity;
  cursor: default;
}

.bso-widescreen__card-tilt {
  position: relative;
  transform-style: preserve-3d;
  transition: none;
}

.bso-widescreen__card-glow {
  display: none !important;
}

.bso-widescreen__card-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 460px;
  padding: clamp(22px, 4.2vw, 32px) clamp(20px, 3.8vw, 28px) clamp(22px, 4vw, 30px) clamp(24px, 4vw, 32px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(168deg, #141518 0%, #0f1014 52%, #0c0d11 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 28px 70px rgba(0, 0, 0, 0.68),
    0 0 0 1px rgba(0, 0, 0, 0.45);
  transform: translateZ(18px);
  transform-style: preserve-3d;
  overflow: hidden;
  isolation: isolate;
  transition:
    border-color 0.35s ease,
    box-shadow 0.4s ease,
    transform 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
  .bso-widescreen__card-3d:hover .bso-widescreen__card-shell {
    border-color: rgba(255, 255, 255, 0.11);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.07) inset,
      0 38px 86px rgba(0, 0, 0, 0.78),
      0 0 0 1px rgba(25, 135, 84, 0.18),
      0 22px 50px rgba(25, 135, 84, 0.08);
    transform: translateZ(24px);
  }
}

.bso-widescreen__card-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 12% -10%, rgba(25, 135, 84, 0.09), transparent 46%);
  pointer-events: none;
  z-index: 0;
}

.bso-widescreen__card-shell > *:not(.bso-widescreen__card-rail) {
  position: relative;
  z-index: 1;
}

.bso-widescreen__card-rail {
  position: absolute;
  left: 0;
  top: 36px;
  bottom: 36px;
  width: 3px;
  z-index: 2;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, rgba(32, 201, 151, 0.15), rgba(25, 135, 84, 0.65), rgba(32, 201, 151, 0.12));
  box-shadow: 0 0 24px rgba(25, 135, 84, 0.25);
}

.bso-widescreen__card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 12px;
}

.bso-widescreen__card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200, 210, 204, 0.78);
}

.bso-widescreen__card-eyebrow i {
  font-size: 12px;
  color: rgba(32, 201, 151, 0.85);
}

.bso-widescreen__card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e8f5ee !important;
  background: rgba(25, 135, 84, 0.12);
  border: 1px solid rgba(25, 135, 84, 0.38);
}

.bso-widescreen__card-badge i {
  font-size: 11px;
  color: rgba(32, 201, 151, 0.95);
}

.bso-widescreen__card-identity {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bso-widescreen__card-identity-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid rgba(25, 135, 84, 0.28);
  background: linear-gradient(145deg, rgba(25, 135, 84, 0.14), rgba(255, 255, 255, 0.03));
  transform: translateZ(10px);
}

.bso-widescreen__card-identity-icon > i {
  font-size: 22px;
  color: rgba(32, 201, 151, 0.9);
}

.bso-widescreen__card-identity-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.bso-widescreen__card-identity-logo--invert {
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  opacity: 0.92;
}

.bso-widescreen__card-identity-text {
  min-width: 0;
}

.bso-widescreen__card-title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.024em;
  line-height: 1.24;
}

.bso-widescreen__card-firmline {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(210, 218, 212, 0.88);
  font-weight: 450;
}

.bso-widescreen__card-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.bso-widescreen__card-metric {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  min-width: 0;
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.22);
}

.bso-widescreen__card-metric-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(25, 135, 84, 0.14);
  border: 1px solid rgba(25, 135, 84, 0.22);
}

.bso-widescreen__card-metric-icon i {
  font-size: 14px;
  color: rgba(32, 201, 151, 0.95);
}

.bso-widescreen__card-metric-label {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(232, 240, 235, 0.94);
  text-align: left;
  white-space: normal;
}

.bso-widescreen__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bso-widescreen__card-tags li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  color: #e8eae8 !important;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bso-widescreen__card-tags li i {
  font-size: 12px;
  color: rgba(32, 201, 151, 0.88);
}

.bso-widescreen__card-features {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bso-widescreen__card-features-h {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  padding: 0;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(150, 160, 154, 0.82);
}

.bso-widescreen__card-features-h i {
  font-size: 12px;
  color: rgba(32, 201, 151, 0.85);
}

.bso-widescreen__card-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.bso-widescreen__card-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  line-height: 1.48;
}

.bso-widescreen__card-points li i {
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 13px;
  color: rgba(25, 135, 84, 0.95);
}

.bso-widescreen__card-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(25, 135, 84, 0.38);
  background: transparent;
  color: #f2faf5 !important;
  font-size: 13px;
  font-weight: 680;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.bso-widescreen__card-action:hover {
  border-color: rgba(32, 201, 151, 0.55);
  background: rgba(25, 135, 84, 0.12);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(25, 135, 84, 0.12);
}

.bso-widescreen__card-action:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.bso-widescreen__card-action i {
  font-size: 15px;
  opacity: 0.88;
}

.bso-widescreen__finale-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: var(--bso-ws-space-lg);
  padding: 18px 32px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(90deg, #198754, #20c997);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(25, 135, 84, 0.3);
  transition: box-shadow 0.2s ease-in-out, filter 0.2s ease-in-out;
  opacity: 0;
}

.bso-widescreen__finale-btn:hover,
.bso-widescreen__finale-btn:focus-visible {
  filter: brightness(1.03);
  box-shadow: 0 12px 28px rgba(25, 135, 84, 0.36);
  outline: none;
}

.bso-widescreen__onboarding-host {
  position: fixed;
  inset: 0;
  z-index: 100080;
  pointer-events: none;
}

.bso-widescreen__onboarding-host .bso-onboarding-wp-root {
  position: fixed;
  inset: 0;
  z-index: 100080;
  pointer-events: none;
}

body.bso-widescreen--onboarding .bso-widescreen__onboarding-host .bso-onboarding-wp-root #bso-onboarding-modal,
body.bso-widescreen--active.bso-widescreen--onboarding #bso-onboarding-modal {
  z-index: 100090 !important;
  pointer-events: auto;
}

/* Paket Asistanı: widescreen içinde her zaman dark (site temasından bağımsız) */
body.bso-widescreen--onboarding-dark .bso-onboarding-scope,
.bso-onboarding-wp-root--widescreen-dark .bso-onboarding-scope {
  --bso-surface: #161b22;
  --bso-bg: #0d1117;
  --bso-border: #30363d;
  --bso-text: #e5e7eb;
  --bso-muted: #8b949e;
  --bso-text-secondary: #d1d5db;
  --bso-brand: #238636;
  --bso-brand-hover: #2ea043;
  --bso-brand-muted: #1f2a24;
  --bso-brand-ink: #e5e7eb;
  --bso-brand-deep: #0d1117;
  --bso-brand-alt: #2ea043;
  --bso-on-primary: #ffffff;
  --bso-on-saturated: #ffffff;
  --bso-platform-intel: #58a6ff;
  --bso-platform-ryzen: #d29922;
  --bso-danger-bg: color-mix(in srgb, #f85149 14%, transparent);
  --bso-danger-text: #f85149;
  --bso-thinking-scrim: color-mix(in srgb, #161b22 92%, transparent);
  --bso-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.24);
  --bso-shadow-md: 0 12px 36px rgba(0, 0, 0, 0.45);
  --bso-shadow-card: 0 4px 20px rgba(0, 0, 0, 0.35);
  --bso-shadow-card-hover: 0 10px 32px rgba(0, 0, 0, 0.45);
  --bso-canvas-welcome: color-mix(in srgb, #0d1117 94%, #161b22);
  --bso-ui-border: #30363d;
  --bso-ui-elev: 0 4px 20px rgba(0, 0, 0, 0.22);
  --bso-ui-elev-hover: 0 6px 28px rgba(0, 0, 0, 0.32);
  color-scheme: dark;
}

.bso-widescreen__card-shell .bso-widescreen__card-title {
  color: #f8fafc !important;
}

.bso-widescreen__card-shell .bso-widescreen__card-firmline {
  color: #c9d5cf !important;
}

.bso-widescreen__card-shell .bso-widescreen__card-points li {
  color: #dde6e2 !important;
}

.bso-widescreen__copy .bso-widescreen__headline,
.bso-widescreen__hero-copy .bso-widescreen__headline,
.bso-widescreen__about-header .bso-widescreen__headline,
.bso-widescreen__finale-copy .bso-widescreen__headline {
  color: #ffffff !important;
}

.bso-widescreen__copy .bso-widescreen__lede,
.bso-widescreen__copy .bso-widescreen__body,
.bso-widescreen__hero-copy .bso-widescreen__lede,
.bso-widescreen__hero-copy .bso-widescreen__body,
.bso-widescreen__about-content .bso-widescreen__lede,
.bso-widescreen__about-content .bso-widescreen__body,
.bso-widescreen__finale-copy .bso-widescreen__lede,
.bso-widescreen__finale-copy .bso-widescreen__finale-sub {
  color: #c8c8c8 !important;
}

.bso-widescreen__copy .bso-widescreen__kicker,
.bso-widescreen__hero-copy .bso-widescreen__kicker,
.bso-widescreen__finale-copy .bso-widescreen__kicker {
  color: #20c997 !important;
}

@media (max-width: 991px) {
  .bso-widescreen {
    --bso-ws-viewport-h: 100dvh;
    height: var(--bso-ws-viewport-h);
    max-height: var(--bso-ws-viewport-h);
    overflow: hidden;
  }

  .bso-widescreen__header {
    padding:
      max(10px, env(safe-area-inset-top, 0px))
      max(12px, env(safe-area-inset-right, 0px))
      10px
      max(12px, env(safe-area-inset-left, 0px));
    gap: 10px;
  }

  .bso-widescreen__brand-logo-img {
    height: 28px;
    max-width: min(120px, 42vw);
  }

  .bso-widescreen__progress-wrap {
    padding:
      8px
      max(12px, env(safe-area-inset-right, 0px))
      6px
      max(12px, env(safe-area-inset-left, 0px));
    gap: 10px;
  }

  .bso-widescreen__progress-label {
    font-size: 10px;
    letter-spacing: 0.1em;
    max-width: 38vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .bso-widescreen__chapter {
    height: auto;
    min-height: var(--bso-ws-chapter-h, var(--bso-ws-viewport-h));
    overflow-x: clip;
  }

  .bso-widescreen__chapter-pin {
    justify-content: flex-start;
    align-items: stretch;
    min-height: var(--bso-ws-chapter-h, var(--bso-ws-viewport-h));
    padding-top: clamp(10px, 2.5vh, 20px);
    padding-bottom: max(28px, calc(20px + env(safe-area-inset-bottom, 0px)));
    padding-inline: max(12px, env(safe-area-inset-left, 0px)) max(12px, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
  }

  .bso-widescreen__chapter--hero .bso-widescreen__chapter-pin,
  .bso-widescreen__chapter--about .bso-widescreen__chapter-pin,
  .bso-widescreen__chapter--finale .bso-widescreen__chapter-pin {
    padding-inline: max(12px, env(safe-area-inset-left, 0px)) max(12px, env(safe-area-inset-right, 0px));
    align-items: stretch;
  }

  .bso-widescreen__hero-copy,
  .bso-widescreen__about-layout,
  .bso-widescreen__finale-copy {
    width: 100%;
    max-width: none;
    padding-inline: 2px;
    box-sizing: border-box;
  }

  .bso-widescreen__headline {
    font-size: clamp(22px, 6.4vw, 36px);
    line-height: 1.12;
    margin-bottom: var(--bso-ws-space-sm);
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .bso-widescreen__lede,
  .bso-widescreen__body {
    font-size: clamp(14px, 3.7vw, 16px);
    line-height: 1.6;
    max-width: 36rem;
  }

  .bso-widescreen__chapter-layout--flip .bso-widescreen__card-stage,
  .bso-widescreen__chapter-layout--flip .bso-widescreen__copy {
    order: unset;
    justify-self: stretch;
    margin-left: 0;
    margin-right: 0;
  }

  .bso-widescreen__chapter-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    width: 100%;
    max-width: none;
    text-align: center;
  }

  .bso-widescreen__copy {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    min-width: 0;
  }

  .bso-widescreen__lede {
    margin-left: auto;
    margin-right: auto;
  }

  .bso-widescreen__trust-box {
    max-width: none;
    width: 100%;
    box-sizing: border-box;
  }

  .bso-widescreen__card-stage {
    min-height: 0;
    padding: 4px 0 12px;
    perspective: none;
    width: 100%;
    min-width: 0;
  }

  .bso-widescreen__card-3d {
    max-width: none;
    width: 100%;
    transform: none !important;
  }

  .bso-widescreen__card-tilt {
    transform: none !important;
  }

  .bso-widescreen__card-shell {
    margin: 0;
    width: 100%;
    max-width: none;
    transform: none;
    padding: 18px 16px 18px 20px;
    box-sizing: border-box;
    box-shadow:
      0 16px 36px rgba(0, 0, 0, 0.58),
      0 0 0 1px rgba(0, 0, 0, 0.32),
      0 1px 0 rgba(255, 255, 255, 0.04) inset;
  }

  .bso-widescreen__card-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bso-widescreen__card-identity {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .bso-widescreen__card-identity-text {
    text-align: center;
  }

  .bso-widescreen__card-metrics {
    grid-template-columns: 1fr;
  }

  .bso-widescreen__card-tags {
    justify-content: center;
  }

  .bso-widescreen__card-action {
    width: 100%;
    box-sizing: border-box;
  }

  .bso-widescreen__highlights {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
  }

  .bso-widescreen__highlights--hero,
  .bso-widescreen__highlights--finale {
    max-width: none;
  }

  .bso-widescreen__body {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .bso-widescreen__pillars {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: min(100%, 320px);
    margin-inline: auto;
  }

  .bso-widescreen__pillars li {
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }

  .bso-widescreen__finale-intro {
    width: 100%;
    max-width: none;
    padding: 12px 14px;
    box-sizing: border-box;
  }

  .bso-widescreen__finale-steps {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
  }

  .bso-widescreen__finale-btn {
    width: 100%;
    max-width: min(100%, 320px);
    box-sizing: border-box;
  }

  .bso-widescreen__about-stats {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .bso-widescreen__about-showcase .bso-widescreen__dc-frame--chapter {
    width: 100%;
    max-width: none;
  }

  .bso-widescreen__scroll-cta {
    bottom: max(14px, env(safe-area-inset-bottom, 0px));
    padding-inline: 12px;
    text-align: center;
  }

  .bso-widescreen__intro-inner {
    bottom: max(64px, calc(48px + env(safe-area-inset-bottom, 0px)));
    width: min(26rem, calc(100vw - 32px));
  }

  .bso-widescreen__intro-tagline {
    font-size: 10px;
    letter-spacing: 0.22em;
  }

  .bso-widescreen__scroller {
    touch-action: pan-y;
    overscroll-behavior-y: contain;
  }
}

@media (max-width: 480px) {
  .bso-widescreen__mute,
  .bso-widescreen__close {
    width: 40px;
    height: 40px;
  }

  .bso-widescreen__kicker {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .bso-widescreen__highlights strong {
    font-size: 18px;
  }

  .bso-widescreen__card-title {
    font-size: clamp(17px, 4.8vw, 20px);
  }

  .bso-widescreen__dc-frame--chapter .bso-widescreen__dc-frame-media {
    height: clamp(140px, 48vw, 240px);
  }
}

@media (max-height: 740px) and (max-width: 991px) {
  .bso-widescreen__dc-frame--chapter .bso-widescreen__dc-frame-media {
    height: clamp(120px, 32vw, min(200px, 34vh));
  }

  .bso-widescreen__chapter-pin {
    padding-top: 8px;
    padding-bottom: max(16px, env(safe-area-inset-bottom, 0px));
  }

  .bso-widescreen__headline {
    font-size: clamp(20px, 5.8vw, 30px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bso-widescreen__orb {
    animation: none;
  }

  .bso-widescreen__scroll-line {
    animation: none;
  }

  .bso-widescreen__card-stage {
    perspective: none;
  }

  .bso-widescreen__card-3d {
    transform: none !important;
  }

  .bso-widescreen__card-shell {
    transform: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  }

  .bso-widescreen__card-identity-icon {
    transform: none;
  }

  .bso-widescreen__card-glow {
    transform: none;
    filter: none;
  }

  .bso-widescreen__card-tilt {
    transform: none !important;
  }
}
