/* ==========================================================================
   ByteCleaner - Liquid Glass tema cekirdegi
   Tasarim referansi: "ByteCleaner Landing.dc.html" (1120px masaustu grid)
   ========================================================================== */

:root {
  /* Zemin */
  --bc-bg: #0b0b10;
  --bc-page-gradient: linear-gradient(175deg, #1b1b22, #101015 34%, #0b0b10);

  /* Vurgu */
  --bc-accent: #2e9efa;
  --bc-accent-light: #7bc4ff;
  --bc-accent-hover: #a9d8ff;
  --bc-accent-grad: linear-gradient(180deg, #4faeff, #2e9efa);

  /* Grup renkleri */
  --bc-xcode: #2e9efa;
  --bc-sim: #64d2ff;
  --bc-android: #30d158;
  --bc-js: #ffd60a;
  --bc-other: #bf5af2;

  /* Risk */
  --bc-safe: #30d158;
  --bc-rebuild: #64d2ff;
  --bc-caution: #ff9f0a;
  --bc-delete: #ff453a;
  --bc-delete-grad: linear-gradient(180deg, #ff6e63, #ff453a);

  /* Pro sarisi */
  --bc-pro-grad: linear-gradient(180deg, #ffe24d, #ffd60a);
  --bc-pro-ink: #4a3a00;

  /* Cam yuzeyler */
  --bc-glass: rgba(255, 255, 255, 0.045);
  --bc-glass-strong: rgba(255, 255, 255, 0.06);
  --bc-hairline: inset 0 0 0 0.5px rgba(255, 255, 255, 0.08);
  --bc-hairline-strong: inset 0 0 0 0.5px rgba(255, 255, 255, 0.12);

  /* Metin */
  --bc-ink: #fff;
  --bc-ink-80: rgba(255, 255, 255, 0.8);
  --bc-ink-65: rgba(255, 255, 255, 0.65);
  --bc-ink-55: rgba(255, 255, 255, 0.55);
  --bc-ink-45: rgba(255, 255, 255, 0.45);
  --bc-ink-35: rgba(255, 255, 255, 0.35);

  /* Yerlesim */
  --bc-max: 1120px;
  --bc-pad: 32px;
  --bc-radius: 16px;

  --bc-font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
    "Helvetica Neue", "Segoe UI", Roboto, Arial, sans-serif;
  --bc-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
}

/* --------------------------------------------------------------------------
   Reset + taban
   -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  padding: 0;
  background: var(--bc-bg);
  color: var(--bc-ink);
  font-family: var(--bc-font);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--bc-accent-light);
  text-decoration: none;
  transition: color 0.16s ease, filter 0.16s ease;
}

a:hover {
  color: var(--bc-accent-hover);
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
  text-wrap: pretty;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--bc-accent-light);
  outline-offset: 3px;
  border-radius: 6px;
}

.bc-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 10px 18px;
  background: var(--bc-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 0 0 10px 0;
}

.bc-skip-link:focus {
  left: 0;
  color: #fff;
}

.screen-reader-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Kabuk + yardimcilar
   -------------------------------------------------------------------------- */

.bc-shell {
  min-height: 100vh;
  background: var(--bc-page-gradient);
  background-attachment: fixed;
  color: var(--bc-ink);
  overflow: clip;
}

.bc-wrap {
  max-width: var(--bc-max);
  margin: 0 auto;
  padding-inline: var(--bc-pad);
  width: 100%;
}

.bc-section {
  padding-block: 88px;
}

.bc-section--tint {
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.bc-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--bc-accent-light);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.bc-h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.7px;
  line-height: 1.15;
}

.bc-lede {
  font-size: 15px;
  color: var(--bc-ink-55);
  line-height: 1.55;
}

.bc-card {
  border-radius: var(--bc-radius);
  background: var(--bc-glass);
  box-shadow: var(--bc-hairline);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.bc-card__title {
  font-size: 15px;
  font-weight: 700;
}

.bc-card__body {
  font-size: 12.5px;
  color: var(--bc-ink-55);
  line-height: 1.55;
}

.bc-icon-tile {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bc-icon-tile--blue {
  background: rgba(46, 158, 250, 0.14);
  box-shadow: inset 0 0 0 0.5px rgba(46, 158, 250, 0.3);
}

.bc-icon-tile--green {
  background: rgba(48, 209, 88, 0.12);
  box-shadow: inset 0 0 0 0.5px rgba(48, 209, 88, 0.3);
}

.bc-icon-tile--yellow {
  background: rgba(255, 214, 10, 0.1);
  box-shadow: inset 0 0 0 0.5px rgba(255, 214, 10, 0.28);
}

.bc-glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.bc-badge-pro {
  background: var(--bc-pro-grad);
  color: var(--bc-pro-ink);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 2px 7px;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}

.bc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

/* --------------------------------------------------------------------------
   Butonlar
   -------------------------------------------------------------------------- */

.bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
}

.bc-btn--primary {
  height: 44px;
  padding-inline: 24px;
  font-size: 15px;
  color: #fff;
  background: var(--bc-accent-grad);
  box-shadow: inset 0 0.5px 0 rgba(255, 255, 255, 0.4),
    0 6px 22px rgba(46, 158, 250, 0.35);
}

.bc-btn--primary:hover {
  color: #fff;
  filter: brightness(1.08);
}

.bc-btn--nav {
  height: 32px;
  padding-inline: 16px;
  font-size: 12.5px;
  color: #fff;
  background: var(--bc-accent-grad);
  box-shadow: inset 0 0.5px 0 rgba(255, 255, 255, 0.4),
    0 4px 14px rgba(46, 158, 250, 0.3);
}

.bc-btn--nav:hover {
  color: #fff;
  filter: brightness(1.08);
}

.bc-btn--ghost {
  height: 38px;
  padding-inline: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--bc-hairline-strong);
}

.bc-btn--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.bc-btn--pro {
  height: 38px;
  padding-inline: 20px;
  font-size: 13px;
  font-weight: 800;
  color: var(--bc-pro-ink);
  background: var(--bc-pro-grad);
  box-shadow: inset 0 0.5px 0 rgba(255, 255, 255, 0.5),
    0 4px 16px rgba(255, 214, 10, 0.25);
}

.bc-btn--pro:hover {
  color: var(--bc-pro-ink);
  filter: brightness(1.05);
}

.bc-btn--block {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Duyuru seridi
   -------------------------------------------------------------------------- */

.bc-announce {
  background: rgba(46, 158, 250, 0.14);
  box-shadow: inset 0 -0.5px 0 rgba(122, 196, 255, 0.2);
  padding: 9px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  text-align: center;
}

.bc-announce__title {
  font-size: 12px;
  color: var(--bc-accent-hover);
  font-weight: 600;
}

.bc-announce__sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.bc-announce__link {
  font-size: 12px;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Nav
   -------------------------------------------------------------------------- */

.bc-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(15, 15, 20, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  box-shadow: inset 0 -0.5px 0 rgba(255, 255, 255, 0.07);
}

.bc-nav__inner {
  max-width: var(--bc-max);
  margin: 0 auto;
  padding: 14px var(--bc-pad);
  display: flex;
  align-items: center;
  gap: 28px;
}

.bc-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  flex-shrink: 0;
}

.bc-brand:hover {
  color: #fff;
}

.bc-brand__mark {
  width: 30px;
  height: 30px;
  border-radius: 7px;
}

.bc-brand__name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.bc-nav__spacer {
  flex: 1;
}

.bc-nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bc-nav__links a {
  font-size: 13px;
  color: var(--bc-ink-65);
}

.bc-nav__links a:hover {
  color: #fff;
}

.bc-nav__links .bc-btn--nav {
  color: #fff;
}

/* Dil değiştirici */
.bc-lang {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--bc-hairline);
}

.bc-lang__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 24px;
  padding-inline: 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--bc-ink-55);
}

.bc-lang__item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.bc-lang__item.is-current {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 0.5px rgba(255, 255, 255, 0.14);
}

.bc-footer__lang {
  margin-left: 4px;
}

.bc-nav__toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--bc-hairline);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bc-nav__toggle-bars,
.bc-nav__toggle-bars::before,
.bc-nav__toggle-bars::after {
  display: block;
  width: 16px;
  height: 1.5px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.bc-nav__toggle-bars::before,
.bc-nav__toggle-bars::after {
  content: "";
  position: absolute;
}

.bc-nav__toggle-bars::before {
  transform: translateY(-5px);
}

.bc-nav__toggle-bars::after {
  transform: translateY(5px);
}

.bc-nav__toggle[aria-expanded="true"] .bc-nav__toggle-bars {
  background: transparent;
}

.bc-nav__toggle[aria-expanded="true"] .bc-nav__toggle-bars::before {
  transform: rotate(45deg);
}

.bc-nav__toggle[aria-expanded="true"] .bc-nav__toggle-bars::after {
  transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.bc-hero {
  position: relative;
  padding: 64px var(--bc-pad) 0;
  text-align: center;
}

.bc-hero__glow {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 140vw);
  height: 560px;
  background: radial-gradient(closest-side, rgba(46, 158, 250, 0.16), transparent);
  pointer-events: none;
}

.bc-hero__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.bc-hero__title {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1.06;
  max-width: 100%;
  overflow-wrap: break-word;
}

.bc-hero__sub {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
}

.bc-hero__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.bc-hero__note {
  font-size: 12.5px;
  color: var(--bc-ink-45);
}

.bc-pills {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bc-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
}

.bc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Hero uygulama penceresi mockup
   -------------------------------------------------------------------------- */

.bc-mock-stage {
  max-width: 920px;
  margin: 52px auto 0;
  position: relative;
}

.bc-mock {
  position: relative;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  background: linear-gradient(155deg, #26262e, #17171c 58%, #121217);
  box-shadow: 0 0 0 0.5px rgba(255, 255, 255, 0.12),
    0 -30px 90px rgba(46, 158, 250, 0.12), 0 30px 80px rgba(0, 0, 0, 0.5);
  display: flex;
  height: 480px;
  text-align: left;
  width: 920px;
  /* Ölçekleme sol üstten: dar ekranda kutu sahnenin sol kenarına yaslansın. */
  transform-origin: top left;
}

.bc-mock__side {
  width: 224px;
  flex-shrink: 0;
  padding: 10px 0 0 10px;
}

.bc-mock__side-inner {
  height: 100%;
  border-radius: 14px 14px 0 0;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 0.5px rgba(255, 255, 255, 0.09);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.bc-mock__traffic {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  flex-shrink: 0;
}

.bc-mock__traffic span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.bc-mock__total {
  padding: 0 12px 8px;
}

.bc-mock__total-label {
  font-size: 9.5px;
  color: var(--bc-ink-45);
}

.bc-mock__total-value {
  font-size: 20px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.3px;
}

.bc-mock__nav-item {
  margin: 0 8px 5px;
  height: 24px;
  border-radius: 7px;
  background: rgba(46, 158, 250, 0.26);
  box-shadow: inset 0 0 0 0.5px rgba(122, 190, 255, 0.25);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  font-size: 11px;
  font-weight: 600;
}

.bc-mock__list {
  flex: 1;
  overflow: hidden;
  padding: 0 8px;
}

.bc-mock__group {
  height: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  font-size: 9.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.42);
}

.bc-mock__group + .bc-mock__group,
.bc-mock__row + .bc-mock__group {
  margin-top: 3px;
}

.bc-mock__group b {
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.bc-mock__row {
  height: 21px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 8px;
}

.bc-mock__row-name {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.82);
}

.bc-mock__row-size {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.42);
  font-variant-numeric: tabular-nums;
}

.bc-mock__spacer {
  flex: 1;
}

.bc-mock__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0 12px 0 8px;
}

.bc-mock__toolbar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px;
  flex-shrink: 0;
}

.bc-mock__toolbar-title {
  font-size: 14px;
  font-weight: 700;
}

.bc-mock__chip {
  height: 27px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--bc-hairline-strong);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--bc-accent-light);
}

.bc-mock__panel {
  border-radius: 14px;
  background: var(--bc-glass);
  box-shadow: var(--bc-hairline);
  padding: 20px 24px;
  display: flex;
  gap: 28px;
  align-items: center;
}

.bc-ring {
  position: relative;
  width: 180px;
  height: 180px;
  flex-shrink: 0;
}

.bc-ring__aura {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: conic-gradient(
    from 120deg,
    rgba(46, 158, 250, 0),
    rgba(46, 158, 250, 0.12),
    rgba(46, 158, 250, 0)
  );
  animation: bcSpin 9s linear infinite;
}

.bc-ring__svg {
  position: relative;
}

.bc-ring__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bc-ring__value {
  font-size: 21px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.4px;
}

.bc-ring__label {
  font-size: 9px;
  color: var(--bc-ink-45);
}

@keyframes bcSpin {
  to {
    transform: rotate(360deg);
  }
}

.bc-map {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bc-map__caption {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.bc-map__row {
  display: flex;
  align-items: center;
  gap: 9px;
}

.bc-map__swatch {
  width: 7px;
  height: 7px;
  border-radius: 2.5px;
  flex-shrink: 0;
}

.bc-map__name {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.85);
  width: 92px;
  flex-shrink: 0;
}

.bc-map__track {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  min-width: 24px;
}

.bc-map__fill {
  height: 100%;
  border-radius: 999px;
}

.bc-map__size {
  font-size: 10.5px;
  color: var(--bc-ink-55);
  font-variant-numeric: tabular-nums;
  width: 50px;
  text-align: right;
  flex-shrink: 0;
}

.bc-mock__actionbar {
  margin-top: auto;
  margin-bottom: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 0.5px rgba(255, 255, 255, 0.1);
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 14px;
}

.bc-mock__actionbar-title {
  font-size: 11.5px;
  font-weight: 600;
}

.bc-mock__actionbar-sub {
  font-size: 9px;
  color: var(--bc-ink-45);
  font-variant-numeric: tabular-nums;
}

.bc-mock__clean {
  height: 31px;
  border-radius: 999px;
  background: var(--bc-delete-grad);
  box-shadow: inset 0 0.5px 0 rgba(255, 255, 255, 0.35),
    0 4px 16px rgba(255, 69, 58, 0.35);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Ozellikler / kategori cipleri
   -------------------------------------------------------------------------- */

.bc-features {
  padding: 88px var(--bc-pad) 40px;
}

.bc-features__inner {
  max-width: var(--bc-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.bc-features__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 560px;
}

.bc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bc-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--bc-ink-80);
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--bc-hairline);
}

.bc-chip--xcode {
  background: rgba(46, 158, 250, 0.12);
  box-shadow: inset 0 0 0 0.5px rgba(46, 158, 250, 0.3);
}

.bc-chip--sim {
  background: rgba(100, 210, 255, 0.1);
  box-shadow: inset 0 0 0 0.5px rgba(100, 210, 255, 0.28);
}

.bc-chip--android {
  background: rgba(48, 209, 88, 0.1);
  box-shadow: inset 0 0 0 0.5px rgba(48, 209, 88, 0.28);
}

.bc-chip--js {
  background: rgba(255, 214, 10, 0.08);
  box-shadow: inset 0 0 0 0.5px rgba(255, 214, 10, 0.25);
}

.bc-chip--other {
  background: rgba(191, 90, 242, 0.1);
  box-shadow: inset 0 0 0 0.5px rgba(191, 90, 242, 0.28);
}

.bc-chip--muted {
  color: rgba(255, 255, 255, 0.5);
}

.bc-pro-section {
  padding: 48px var(--bc-pad) 88px;
}

.bc-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.bc-card > *:not(.bc-glow) {
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Fiyat
   -------------------------------------------------------------------------- */

.bc-pricing__inner {
  max-width: var(--bc-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.bc-pricing__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  max-width: 560px;
}

.bc-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 780px;
}

.bc-plan {
  border-radius: 18px;
  background: var(--bc-glass);
  box-shadow: var(--bc-hairline);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.bc-plan--pro {
  background: var(--bc-glass-strong);
  box-shadow: inset 0 0 0 0.5px rgba(255, 214, 10, 0.35),
    0 20px 60px rgba(0, 0, 0, 0.35);
}

.bc-plan > *:not(.bc-glow) {
  position: relative;
  z-index: 1;
}

.bc-plan__head {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bc-plan__name {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}

.bc-plan--pro .bc-plan__name {
  color: #fff;
}

.bc-plan__name-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bc-plan__price {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.bc-plan__price small {
  font-size: 12px;
  font-weight: 600;
  color: var(--bc-ink-45);
}

.bc-plan__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bc-plan__list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--bc-ink-80);
  line-height: 1.45;
}

.bc-plan__list svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.bc-plan__foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.bc-plan__fine {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   SSS
   -------------------------------------------------------------------------- */

.bc-faq__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bc-faq__title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.bc-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bc-faq__item {
  border-radius: 14px;
  background: var(--bc-glass);
  box-shadow: var(--bc-hairline);
  padding: 18px 20px;
}

.bc-faq__q {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  margin: 0;
}

/* Soru metni h3; görsel olarak satır içi kalır, belge yapısında başlıktır. */
.bc-faq__q h3 {
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.45;
  margin: 0;
}

.bc-faq__q::-webkit-details-marker {
  display: none;
}

.bc-faq__q::after {
  content: "";
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--bc-ink-45);
  border-bottom: 1.5px solid var(--bc-ink-45);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.bc-faq__item[open] .bc-faq__q::after {
  transform: rotate(-135deg) translateY(-2px);
}

.bc-faq__a {
  font-size: 13px;
  color: var(--bc-ink-55);
  line-height: 1.6;
  padding-top: 7px;
}

/* --------------------------------------------------------------------------
   Kapanis CTA
   -------------------------------------------------------------------------- */

.bc-cta {
  padding: 24px var(--bc-pad) 96px;
}

.bc-cta__box {
  max-width: var(--bc-max);
  margin: 0 auto;
  border-radius: 22px;
  background: rgba(46, 158, 250, 0.09);
  box-shadow: inset 0 0 0 0.5px rgba(122, 196, 255, 0.22);
  position: relative;
  overflow: hidden;
  padding: 56px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.bc-cta__box > *:not(.bc-glow) {
  position: relative;
  z-index: 1;
}

.bc-cta__icon {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.bc-cta__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 520px;
}

.bc-cta__title {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.15;
}

.bc-cta__sub {
  font-size: 14px;
  color: var(--bc-ink-55);
  line-height: 1.55;
}

.bc-cta__meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.bc-footer {
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  padding: 56px var(--bc-pad) 40px;
}

.bc-footer__inner {
  max-width: var(--bc-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.bc-footer__top {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.bc-footer__brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
}

.bc-footer__brand img {
  width: 26px;
  height: 26px;
  border-radius: 6px;
}

.bc-footer__brand span {
  font-size: 14px;
  font-weight: 800;
}

.bc-footer__links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bc-footer__links a {
  font-size: 12px;
  color: var(--bc-ink-55);
}

.bc-footer__links a:hover {
  color: #fff;
}

.bc-footer__disclaimer {
  font-size: 11px;
  color: var(--bc-ink-35);
  line-height: 1.6;
  max-width: 760px;
}

.bc-footer__copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

/* --------------------------------------------------------------------------
   Ic sayfalar (Kullanim Kosullari, Gizlilik, blog, 404, arama)
   -------------------------------------------------------------------------- */

.bc-page {
  padding: 56px var(--bc-pad) 96px;
}

.bc-page__inner {
  max-width: 780px;
  margin: 0 auto;
}

.bc-page__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.bc-page__title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
}

.bc-page__meta {
  font-size: 12.5px;
  color: var(--bc-ink-45);
}

.bc-breadcrumbs {
  font-size: 12px;
  color: var(--bc-ink-45);
  margin-bottom: 18px;
}

.bc-breadcrumbs a {
  color: var(--bc-ink-55);
}

.bc-breadcrumbs a:hover {
  color: #fff;
}

.bc-prose {
  border-radius: 18px;
  background: var(--bc-glass);
  box-shadow: var(--bc-hairline);
  padding: 32px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--bc-ink-80);
}

.bc-prose > *:first-child {
  margin-top: 0;
}

.bc-prose > *:last-child {
  margin-bottom: 0;
}

.bc-prose h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #fff;
  margin: 32px 0 12px;
}

.bc-prose h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 26px 0 10px;
}

.bc-prose p,
.bc-prose ul,
.bc-prose ol {
  margin: 0 0 16px;
}

.bc-prose ul,
.bc-prose ol {
  padding-left: 22px;
}

.bc-prose li {
  margin-bottom: 8px;
}

.bc-prose strong {
  color: #fff;
}

.bc-prose blockquote {
  margin: 0 0 16px;
  padding: 14px 18px;
  border-left: 2px solid var(--bc-accent);
  background: rgba(46, 158, 250, 0.07);
  border-radius: 0 12px 12px 0;
}

.bc-prose code {
  font-family: var(--bc-mono);
  font-size: 0.9em;
  background: rgba(255, 255, 255, 0.07);
  padding: 2px 6px;
  border-radius: 5px;
}

.bc-prose pre {
  background: rgba(0, 0, 0, 0.35);
  padding: 16px;
  border-radius: 12px;
  overflow-x: auto;
}

.bc-prose img {
  border-radius: 12px;
}

.bc-prose table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  display: block;
  overflow-x: auto;
}

.bc-prose th,
.bc-prose td {
  padding: 10px 12px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.bc-archive__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bc-archive__item {
  border-radius: 16px;
  background: var(--bc-glass);
  box-shadow: var(--bc-hairline);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bc-archive__item h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.bc-archive__item h2 a {
  color: #fff;
}

.bc-archive__item h2 a:hover {
  color: var(--bc-accent-light);
}

.bc-archive__excerpt {
  font-size: 13.5px;
  color: var(--bc-ink-55);
  line-height: 1.6;
}

.bc-pagination {
  margin-top: 28px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bc-pagination .page-numbers {
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--bc-hairline);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--bc-ink-80);
}

.bc-pagination .page-numbers.current {
  background: var(--bc-accent-grad);
  color: #fff;
}

.bc-404 {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-block: 40px;
}

.bc-404__code {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -2px;
  background: linear-gradient(180deg, #7bc4ff, #2e9efa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* WordPress blok/medya varsayilanlari */
.alignleft {
  float: left;
  margin: 0 20px 16px 0;
}
.alignright {
  float: right;
  margin: 0 0 16px 20px;
}
.aligncenter {
  margin-inline: auto;
}
.wp-caption-text,
.wp-element-caption {
  font-size: 12px;
  color: var(--bc-ink-45);
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */

/* Mockup: 920px'in altinda oransal kucult (yatay tasma yok) */
@media (max-width: 1010px) {
  .bc-mock-stage {
    --bc-mock-scale: calc((100vw - 2 * var(--bc-pad)) / 920);
    height: calc(480px * var(--bc-mock-scale));
    overflow: hidden;
  }
  .bc-mock {
    transform: scale(var(--bc-mock-scale));
  }
}

/* Tablet: 3'lu grid -> 2 kolon */
@media (max-width: 900px) {
  :root {
    --bc-pad: 24px;
  }

  .bc-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bc-grid-3 > .bc-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .bc-hero__title {
    font-size: 44px;
    letter-spacing: -1px;
  }

  .bc-hero__title br {
    display: none;
  }

  .bc-section {
    padding-block: 64px;
  }

  .bc-features {
    padding-block: 64px 32px;
  }

  .bc-pro-section {
    padding-block: 32px 64px;
  }
}

/* Mobil menu esigi */
@media (max-width: 780px) {
  .bc-nav__toggle {
    display: inline-flex;
    position: relative;
  }

  .bc-nav__spacer {
    display: none;
  }

  .bc-nav__inner {
    gap: 12px;
    justify-content: space-between;
  }

  .bc-nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px 16px 18px;
    /* Tam opak: yarı saydam bir panelde hero başlığı arkadan siziyordu. */
    background: #0f0f14;
    box-shadow: inset 0 -0.5px 0 rgba(255, 255, 255, 0.08),
      0 20px 40px rgba(0, 0, 0, 0.45);
    display: none;
  }

  .bc-nav__links.is-open {
    display: flex;
  }

  .bc-nav__links li a:not(.bc-btn) {
    display: block;
    padding: 12px 8px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
  }

  .bc-nav__links li a:not(.bc-btn):hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .bc-nav__links .bc-btn--nav {
    height: 44px;
    margin-top: 8px;
    font-size: 14px;
  }

  /* Mobil menüde dil seçici tam genişlikte bir satır olur. */
  .bc-nav__links .bc-lang {
    justify-content: center;
    margin-top: 8px;
    padding: 4px;
  }

  .bc-nav__links .bc-lang__item {
    flex: 1;
    height: 36px;
    font-size: 13px;
  }
}

/* Telefon: tek kolon */
@media (max-width: 640px) {
  :root {
    --bc-pad: 20px;
  }

  body {
    font-size: 14.5px;
  }

  html {
    scroll-padding-top: 72px;
  }

  .bc-hero {
    padding-top: 44px;
  }

  .bc-hero__title {
    font-size: 34px;
    letter-spacing: -0.8px;
    line-height: 1.12;
  }

  .bc-hero__sub {
    font-size: 15px;
  }

  .bc-hero__cta {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .bc-hero__cta .bc-btn--primary {
    width: 100%;
    max-width: 340px;
  }

  .bc-pills {
    gap: 10px 16px;
  }

  .bc-mock-stage {
    margin-top: 36px;
  }

  .bc-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .bc-plans {
    grid-template-columns: minmax(0, 1fr);
  }

  .bc-h2 {
    font-size: 27px;
    letter-spacing: -0.5px;
  }

  .bc-h2 br {
    display: none;
  }

  .bc-faq__title {
    font-size: 24px;
  }

  .bc-cta__box {
    padding: 40px 22px;
    border-radius: 18px;
  }

  .bc-cta__title {
    font-size: 25px;
  }

  .bc-cta {
    padding-bottom: 72px;
  }

  .bc-cta .bc-btn--primary {
    width: 100%;
    max-width: 340px;
  }

  .bc-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .bc-footer__links {
    gap: 14px 18px;
  }

  .bc-page__title {
    font-size: 30px;
    letter-spacing: -0.6px;
  }

  .bc-prose {
    padding: 22px 20px;
    font-size: 14.5px;
    border-radius: 14px;
  }

  .bc-prose h2 {
    font-size: 21px;
  }

  .bc-404__code {
    font-size: 56px;
  }

  .bc-announce {
    padding: 8px 16px;
    gap: 6px;
    font-size: 11.5px;
  }

  /* Dar ekranda duyuru tek satırda kalsın. */
  .bc-announce__sub {
    display: none;
  }
}

/* Cok dar ekranlar: mockup'i tamamen gizlemek yerine kirp */
@media (max-width: 420px) {
  .bc-mock-stage {
    margin-inline: calc(var(--bc-pad) * -1);
    --bc-mock-scale: calc(100vw / 920);
  }
  .bc-map__name {
    width: 78px;
  }
}

/* Yazdirma */
@media print {
  .bc-nav,
  .bc-announce,
  .bc-cta,
  .bc-mock-stage {
    display: none !important;
  }
  body,
  .bc-shell {
    background: #fff !important;
    color: #000 !important;
  }
}
