/* ============================================================================
   TASARIM SISTEMI
   Koyu tema / fintech + developer-tool estetigi
   Yapi: sola hizali, ince yatay cizgilerle bolunmus "spec sheet" duzeni
   ========================================================================== */

:root {
  /* Zemin */
  --bg:            #070A0F;
  --bg-elev:       #0D1117;
  --surface:       #111722;
  --surface-2:     #161D29;
  --surface-3:     #1B2331;

  /* Cizgiler */
  --line:          rgba(255, 255, 255, .07);
  --line-strong:   rgba(255, 255, 255, .13);

  /* Vurgu */
  --brand:         #258BFF;
  --brand-2:       #53B7FF;
  --brand-dim:     rgba(37, 139, 255, .12);
  --brand-ring:    rgba(37, 139, 255, .32);

  /* Metin */
  --text:          #FFFFFF;
  --text-2:        #AAB4C3;
  --text-3:        #6E7889;

  /* Durum */
  --pos:           #3FD08A;
  --neg:           #E0654F;

  /* Tipografi */
  --font: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Olcu */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(72px, 9vw, 128px);
  --radius: 14px;
  --radius-sm: 9px;

  --header-h: 66px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "kern", "liga";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* Author stilleri (ornegin .modal__row{display:flex}) UA stylesheet'teki
   [hidden]{display:none} kuralini ezer. JS ile gizlenen elemanlarin
   gercekten gizlenmesi icin gerekli. */
[hidden] { display: none !important; }
img { height: auto; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  text-wrap: balance;
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

a { color: inherit; text-decoration: none; }

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

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

::selection { background: var(--brand); color: #fff; }

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

.skip-link {
  position: absolute; left: var(--gutter); top: -100px; z-index: 200;
  background: var(--brand); color: #fff;
  padding: 10px 18px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .9rem;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

/* --- Yerlesim -------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }
.section--ruled { border-top: 1px solid var(--line); }
main, .footer { position: relative; z-index: 1; }
main > .section:not(.hero)::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 12%;
  left: -12vw;
  width: 48vw;
  height: 76%;
  background: radial-gradient(ellipse, rgba(37,139,255,.075), transparent 68%);
  pointer-events: none;
}
main > .section:nth-of-type(even)::before { left: auto; right: -12vw; }
main > .section > .container { position: relative; z-index: 1; }

/* Bolum basligi blogu: sola hizali, olculu satir uzunlugu */
.section-head { max-width: 46rem; margin-bottom: clamp(36px, 5vw, 60px); }

.section-title {
  font-size: clamp(1.9rem, 1.15rem + 2.6vw, 3.1rem);
  font-weight: 600;
}

.section-lead {
  margin-top: 18px;
  color: var(--text-2);
  font-size: clamp(1rem, .96rem + .2vw, 1.09rem);
  line-height: 1.68;
  max-width: 40rem;
}

/* --- Butonlar -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .975rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,.06) inset, 0 8px 28px -12px var(--brand-ring);
}
.btn--primary:hover { background: #1c7cf0; }

.btn--ghost {
  background: rgba(255,255,255,.03);
  border-color: var(--line-strong);
  color: var(--text);
}
.btn--ghost:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.22); }

.btn--support {
  background: rgba(37, 211, 102, .07);
  border-color: rgba(37, 211, 102, .28);
  color: #d9fbe5;
}
.btn--support:hover { background: rgba(37, 211, 102, .13); border-color: rgba(37, 211, 102, .42); }
.btn--support svg { color: #25D366; }

.btn--lg { padding: 17px 32px; font-size: 1.05rem; }
.btn--sm { padding: 10px 18px; font-size: .9rem; }
.btn--block { width: 100%; }

.btn-icon { flex: none; }

/* --- Header ---------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(7, 10, 15, .72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background-color .2s ease;
}
.header.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(7, 10, 15, .9);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.brand { display: inline-flex; align-items: center; gap: 11px; flex: none; }
.brand__mark { width: 28px; height: 28px; flex: none; }
.brand__name {
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 13px;
  border-radius: 7px;
  font-size: .925rem;
  color: var(--text-2);
  transition: color .15s ease, background-color .15s ease;
}
.nav a:hover { color: var(--text); background: rgba(255,255,255,.05); }

.header__actions { display: flex; align-items: center; gap: 10px; flex: none; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
}

/* Mobil menu */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 99;
  background: var(--bg-elev);
  border-bottom: 1px solid var(--line);
  padding: 8px var(--gutter) 22px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 2px;
  border-bottom: 1px solid var(--line);
  color: var(--text-2);
  font-size: 1rem;
}
.mobile-nav a:last-of-type { border-bottom: 0; }
.mobile-nav .btn { margin-top: 16px; }

/* --- Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 88px);
  overflow: hidden;
}

.market-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: .14;
  filter: blur(.25px);
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.92), rgba(0,0,0,.42) 48%, rgba(0,0,0,.72));
  mask-image: linear-gradient(180deg, rgba(0,0,0,.92), rgba(0,0,0,.42) 48%, rgba(0,0,0,.72));
}

/* Kontrollu glow + ince grid; tek sefer, animasyonsuz */
.hero::before {
  content: "";
  position: absolute;
  top: -340px; right: -180px;
  width: 980px; height: 840px;
  background: radial-gradient(circle at 50% 50%, rgba(37,139,255,.20), transparent 62%);
  filter: blur(8px);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 85% 62% at 55% 28%, #000 10%, transparent 72%);
  mask-image: radial-gradient(ellipse 85% 62% at 55% 28%, #000 10%, transparent 72%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(44px, 6vw, 64px);
  align-items: center;
}

.hero__copy { max-width: 40rem; }

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px 6px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: rgba(255,255,255,.035);
  font-size: .845rem;
  color: var(--text-2);
  margin-bottom: 26px;
}
.hero__pill b { color: var(--text); font-weight: 600; }
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--pos);
  box-shadow: 0 0 0 3px rgba(63, 208, 138, .16);
  flex: none;
}

.hero__title {
  font-size: clamp(2.3rem, 1.25rem + 3.9vw, 3.85rem);
  font-weight: 600;
  letter-spacing: -0.038em;
  line-height: 1.03;
}

.hero__sub {
  margin-top: 22px;
  font-size: clamp(1.09rem, 1rem + .42vw, 1.33rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.45;
  letter-spacing: -0.015em;
  max-width: 34rem;
}

.hero__desc {
  margin-top: 18px;
  color: var(--text-2);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 35rem;
}

.hero__potential {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  max-width: 36rem;
  margin-top: 18px;
  padding: 13px 15px;
  border: 1px solid rgba(63, 208, 138, .25);
  border-radius: 10px;
  background: rgba(63, 208, 138, .07);
  color: var(--text-2);
  font-size: .86rem;
  line-height: 1.55;
}
.hero__potential svg { flex: none; margin-top: 2px; color: var(--pos); }
.hero__potential b { color: var(--text); font-weight: 600; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__meta {
  margin-top: 18px;
  max-width: 36rem;
  font-size: .855rem;
  color: var(--text-3);
  line-height: 1.7;
}

/* Uygulama gorseli: yukseltilmis duzlem, sagdan tasan */
.hero__visual { position: relative; }

.shot {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,.05) inset,
    0 40px 90px -40px rgba(0,0,0,.9),
    0 0 90px -50px var(--brand-ring);
}
.shot img { width: 100%; }
.shot iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #070A0F;
}

.shot__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.shot__bar i {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,.16);
}
.shot__bar span {
  margin-left: 8px;
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--text-3);
  letter-spacing: -0.01em;
}

/* --- Hizli guven seridi ---------------------------------------------------- */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.018), transparent);
}
.trust__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 22px 24px;
  border-left: 1px solid var(--line);
  font-size: .93rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: -0.012em;
}
.trust__item:first-child { border-left: 0; padding-left: 0; }
.trust__item svg { flex: none; color: var(--brand-2); }

/* --- Kart izgarasi --------------------------------------------------------- */
.cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  position: relative;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
}
.card::before {
  content: "";
  position: absolute; top: 0; left: 22px; right: 22px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
}
.card__icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: var(--brand-dim);
  color: var(--brand-2);
  margin-bottom: 20px;
}
.card__title {
  font-size: 1.11rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.card__text {
  color: var(--text-2);
  font-size: .945rem;
  line-height: 1.65;
}

/* --- Demo videosu ---------------------------------------------------------- */
.player {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 40px 90px -46px rgba(0,0,0,.9);
}
.player img,
.player iframe,
.player video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border: 0;
}
.player__btn {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  width: 100%; height: 100%;
  background: linear-gradient(0deg, rgba(7,10,15,.66), rgba(7,10,15,.24));
}
.player__play {
  width: 78px; height: 78px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 0 0 10px rgba(37,139,255,.16), 0 16px 44px -14px rgba(37,139,255,.7);
  transition: transform .18s ease, background-color .18s ease;
}
.player__btn:hover .player__play { transform: scale(1.06); background: #1c7cf0; }
.player__label {
  position: absolute;
  bottom: 20px; left: 22px;
  font-size: .87rem;
  color: var(--text-2);
}
@media (max-width: 560px) {
  .player__play { width: 60px; height: 60px; }
  .player__label { display: none; }
}

/* --- Adimlar (gercek bir sira oldugu icin numaralandirildi) ---------------- */
.steps {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.step {
  padding: 34px 32px 34px 0;
  border-left: 1px solid var(--line);
  padding-left: 32px;
  position: relative;
}
.step:first-child { border-left: 0; padding-left: 0; }
.step::before {
  content: "";
  position: absolute; top: -1px; left: 0;
  width: 34%; height: 1px;
  background: var(--brand);
}
.step:first-child::before { left: 0; }
.step__num {
  font-family: var(--mono);
  font-size: .8rem;
  font-weight: 500;
  color: var(--brand-2);
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.step__title { font-size: 1.28rem; font-weight: 600; margin-bottom: 10px; }
.step__text { color: var(--text-2); font-size: .96rem; line-height: 1.68; }

.steps-after {
  margin-top: 40px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.steps-after p { font-size: 1.04rem; font-weight: 500; }

/* --- Uygulama ekranlari ---------------------------------------------------- */
.screens { display: grid; gap: clamp(48px, 7vw, 92px); }
.screen {
  display: grid;
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
  grid-template-columns: minmax(0, 1fr);
}
.screen__text { max-width: 30rem; }
.screen__title { font-size: clamp(1.4rem, 1.15rem + .9vw, 1.85rem); margin-bottom: 14px; }
.screen__desc { color: var(--text-2); font-size: 1rem; line-height: 1.7; }

/* --- Kisa urun videolari -------------------------------------------------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
}
.video-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #05070B;
  border-bottom: 1px solid var(--line);
}
.video-card__media iframe,
.video-card__media video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.video-card__live {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  padding: 5px 9px;
  border: 1px solid rgba(63,208,138,.32);
  border-radius: 100px;
  background: rgba(7,10,15,.84);
  color: var(--pos);
  font-family: var(--mono);
  font-size: .68rem;
}
.video-card__body { padding: 20px; }
.video-card__title { font-size: 1.08rem; font-weight: 600; margin-bottom: 8px; }
.video-card__desc { color: var(--text-2); font-size: .92rem; line-height: 1.6; }
@media (max-width: 900px) { .video-grid { grid-template-columns: 1fr; } }

/* --- Ucretsiz test bandi --------------------------------------------------- */
.trial {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 70% 130% at 50% 0%, rgba(37,139,255,.14), transparent 68%),
    rgba(13,17,23,.90);
  overflow: hidden;
}
.trial__inner { max-width: 44rem; }
.trial__title {
  font-size: clamp(1.9rem, 1.2rem + 2.5vw, 3rem);
  letter-spacing: -0.032em;
}
.trial__sub {
  margin-top: 16px;
  font-size: clamp(1.15rem, 1rem + .7vw, 1.6rem);
  font-weight: 600;
  color: var(--brand-2);
  letter-spacing: -0.024em;
  line-height: 1.25;
}
.trial__text { margin-top: 18px; color: var(--text-2); font-size: 1.04rem; line-height: 1.72; }
.trial__cta { margin-top: 32px; }
.trial__meta { margin-top: 16px; font-size: .875rem; color: var(--text-3); }

/* --- Paketler -------------------------------------------------------------- */
.plans {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(262px, 1fr));
  align-items: start;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.plan--featured {
  border-color: var(--brand-ring);
  background: linear-gradient(180deg, rgba(37,139,255,.07), var(--surface) 46%);
  box-shadow: 0 0 0 1px rgba(37,139,255,.12), 0 30px 70px -44px rgba(37,139,255,.55);
}
.plan__badge {
  position: absolute;
  top: -11px; left: 28px;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--brand);
  color: #fff;
  font-size: .755rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.plan__name { font-size: 1.16rem; font-weight: 600; margin-bottom: 18px; }
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-family: var(--mono);
  font-size: 2.05rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
}
.plan__price span { font-family: var(--font); font-size: .93rem; font-weight: 400; color: var(--text-3); }
.plan__price--empty {
  font-family: var(--font);
  font-size: .93rem;
  font-weight: 400;
  color: var(--text-3);
  font-style: italic;
  letter-spacing: 0;
}
.plan__features { margin: 24px 0 26px; display: grid; gap: 12px; }
.plan__features li {
  display: flex;
  gap: 11px;
  font-size: .945rem;
  color: var(--text-2);
  line-height: 1.55;
}
.plan__features svg { flex: none; margin-top: 3px; color: var(--brand-2); }
.plan__note { margin-top: 14px; font-size: .82rem; color: var(--text-3); text-align: center; }
.plan__cta { margin-top: auto; }

.empty-note {
  color: var(--text-3);
  font-size: .93rem;
  line-height: 1.6;
  font-style: italic;
}

/* --- Sonuclar tablosu ------------------------------------------------------ */
.results-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.results-scroll { overflow-x: auto; }
table.results {
  width: 100%;
  border-collapse: collapse;
  font-size: .925rem;
  min-width: 660px;
}
table.results th {
  text-align: left;
  padding: 16px 20px;
  font-weight: 500;
  font-size: .82rem;
  color: var(--text-3);
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
table.results td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--text-2);
}
table.results tr:last-child td { border-bottom: 0; }
table.results td:first-child { font-family: var(--mono); color: var(--text); font-size: .87rem; }

.results-empty {
  padding: clamp(40px, 6vw, 64px) 28px;
  text-align: center;
}
.results-empty h3 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 600; }
.results-empty p { color: var(--text-3); font-size: .95rem; max-width: 32rem; margin-inline: auto; line-height: 1.65; }

.disclaimer {
  margin-top: 20px;
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--text-3);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.022);
  color: var(--text-2);
  font-size: .9rem;
  line-height: 1.6;
}
.disclaimer svg { flex: none; margin-top: 2px; color: var(--text-3); }

/* --- Karsilastirma --------------------------------------------------------- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare__col { padding: clamp(28px, 3.4vw, 40px); }
.compare__col--manual {
  background: var(--surface);
  border-right: 1px solid var(--line);
}
.compare__col--auto {
  background: linear-gradient(180deg, rgba(37,139,255,.08), var(--surface-2) 55%);
}
.compare__title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.compare__col--manual .compare__title { color: var(--text-2); }
.compare__list { display: grid; gap: 15px; }
.compare__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .96rem;
  line-height: 1.55;
}
.compare__col--manual .compare__list li { color: var(--text-3); }
.compare__col--auto .compare__list li { color: var(--text-2); }
.compare__list svg { flex: none; margin-top: 3px; }
.compare__col--manual .compare__list svg { color: #5C6675; }
.compare__col--auto .compare__list svg { color: var(--brand-2); }

/* --- Teknik panel ---------------------------------------------------------- */
.tech {
  display: grid;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  grid-template-columns: minmax(0, 1fr);
}
.terminal {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #0A0E15;
  overflow: hidden;
  box-shadow: 0 34px 80px -46px rgba(0,0,0,.9);
}
.terminal__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 15px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.terminal__bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.16); }
.terminal__bar span {
  margin-left: 9px;
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--text-3);
}
.terminal__body {
  padding: 22px 20px;
  font-family: var(--mono);
  font-size: .82rem;
  line-height: 2.05;
  overflow-x: auto;
}
.terminal__body .l { display: block; white-space: pre; color: var(--text-2); }
.terminal__body .l--cmt { color: var(--text-3); }
.terminal__body .l--ok { color: var(--pos); }
.terminal__body .l--key { color: var(--brand-2); }
.terminal__empty {
  padding: 38px 22px;
  font-family: var(--font);
  font-size: .93rem;
  color: var(--text-3);
  line-height: 1.7;
  font-style: italic;
}

/* --- SSS ------------------------------------------------------------------- */
.faq { max-width: 52rem; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 24px 2px;
  text-align: left;
  font-size: 1.06rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  transition: color .15s ease;
}
.faq__q:hover { color: var(--brand-2); }
.faq__q svg { flex: none; color: var(--text-3); transition: transform .22s ease, color .15s ease; }
.faq__q[aria-expanded="true"] svg { transform: rotate(45deg); color: var(--brand-2); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .26s ease;
}
.faq__a[data-open="true"] { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
  padding: 0 2px 26px;
  color: var(--text-2);
  font-size: .99rem;
  line-height: 1.72;
  max-width: 44rem;
}

/* --- Son CTA --------------------------------------------------------------- */
.final {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 120% at 50% 100%, rgba(37,139,255,.13), transparent 70%),
    rgba(13,17,23,.91);
  text-align: center;
}
.final__inner { max-width: 40rem; margin-inline: auto; }
.final__title { font-size: clamp(1.75rem, 1.2rem + 2.1vw, 2.65rem); }
.final__text { margin-top: 18px; color: var(--text-2); font-size: 1.04rem; line-height: 1.7; }
.final__cta { margin-top: 30px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.final__meta { margin-top: 18px; font-size: .86rem; color: var(--text-3); }

/* --- Footer ---------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--line);
  padding-block: clamp(48px, 6vw, 72px) 34px;
  background: rgba(7,10,15,.94);
}
.footer__top {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer__about { max-width: 24rem; }
.footer__about p { margin-top: 16px; color: var(--text-3); font-size: .9rem; line-height: 1.7; }
.footer__col h4 {
  font-size: .87rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}
.footer__col li { margin-bottom: 11px; }
.footer__col a { color: var(--text-3); font-size: .91rem; transition: color .15s ease; }
.footer__col a:hover { color: var(--text-2); }

.footer__risk {
  margin-top: 32px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text-2);
  font-size: .875rem;
  line-height: 1.7;
}
.footer__risk strong { color: var(--text); font-weight: 600; }

.footer__bottom {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  color: var(--text-3);
  font-size: .85rem;
}

/* --- Floating WhatsApp ----------------------------------------------------- */
.wa {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 17px 11px 13px;
  border-radius: 100px;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-size: .9rem;
  font-weight: 500;
  box-shadow: 0 14px 40px -14px rgba(0,0,0,.85);
  transition: border-color .16s ease, background-color .16s ease;
}
.wa:hover { background: var(--surface-3); border-color: rgba(255,255,255,.24); }
.wa svg { flex: none; color: #25D366; }
@media (max-width: 480px) {
  .wa { padding: 12px; right: 14px; bottom: 14px; }
  .wa span { display: none; }
}

/* --- Modal (mobil indirme linki) ------------------------------------------- */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(3, 5, 9, .78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal.is-open { display: flex; }
.modal__box {
  width: 100%;
  max-width: 440px;
  padding: 30px 26px 26px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 40px 90px -40px #000;
}
.modal__title { font-size: 1.3rem; margin-bottom: 12px; }
.modal__text { color: var(--text-2); font-size: .95rem; line-height: 1.65; margin-bottom: 24px; }
.modal__row { display: flex; gap: 8px; margin-bottom: 12px; }
.modal__input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-elev);
  color: var(--text);
  font-size: .92rem;
  font-family: var(--mono);
}
.modal__input::placeholder { color: var(--text-3); font-family: var(--font); }
.modal__close {
  width: 100%;
  margin-top: 6px;
  padding: 10px;
  color: var(--text-3);
  font-size: .9rem;
}
.modal__close:hover { color: var(--text-2); }
.modal__status { font-size: .86rem; color: var(--brand-2); min-height: 20px; margin-top: 4px; }

/* ============================================================================
   RESPONSIVE  (mobile-first yazildi, buyuk ekranlar icin genisletiliyor)
   ========================================================================== */

@media (max-width: 991px) {
  .nav { display: none; }
  .header__actions .btn--header { display: none; }
  .header__actions .btn--header-support { display: none; }
  .nav-toggle { display: inline-flex; }

  .trust__row { grid-template-columns: repeat(2, 1fr); }
  .trust__item { padding: 17px 18px; font-size: .88rem; }
  .trust__item:first-child { padding-left: 18px; border-left: 1px solid var(--line); }
  .trust__item:nth-child(odd) { border-left: 0; padding-left: 0; }
  .trust__item:last-child { grid-column: 1 / -1; border-left: 0; padding-left: 0; border-top: 1px solid var(--line); }

  .steps { grid-template-columns: 1fr; }
  .step { border-left: 0; padding-left: 0; padding-block: 28px; border-top: 1px solid var(--line); }
  .step:first-child { border-top: 0; padding-top: 24px; }
  .step::before { display: none; }

  .compare { grid-template-columns: 1fr; }
  .compare__col--manual { border-right: 0; border-bottom: 1px solid var(--line); }

  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__about { grid-column: 1 / -1; }
}

@media (min-width: 768px) {
  .screen { grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); }
  .screen--flip .screen__text { order: 2; }
  .screen--flip .screen__media { order: 1; }
}

@media (min-width: 992px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 1.1fr);
    align-items: center;
  }
  /* Gorsel container'in sag kenarindan tasar */
  .hero__visual { margin-right: calc(var(--gutter) * -1 - 6vw); }

  .tech { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); }
}

@media (min-width: 1400px) {
  .hero__visual { margin-right: -9vw; }
}

@media (max-width: 560px) {
  .btn { width: 100%; }
  .btn--sm, .btn--header, .wa, .skip-link { width: auto; }
  .hero__cta .btn { width: 100%; }
  .final__cta .btn { width: 100%; }
  .modal__row .btn { width: auto; }
  .steps-after { flex-direction: column; align-items: stretch; }
}

/* --- Hareket tercihi ------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* ==========================================================================
   AYRI INDIRME SAYFASI
   ========================================================================== */
.download-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -10%, rgba(37,139,255,.22), transparent 42%),
    var(--bg);
}
.download-header {
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(7,10,15,.78);
  backdrop-filter: blur(14px);
}
.download-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.download-back { color: var(--text-2); font-size: .92rem; }
.download-back:hover { color: var(--text); }
.download-main { padding: clamp(48px, 8vw, 92px) 0 72px; }
.download-shell { max-width: 850px; margin-inline: auto; text-align: center; }
.download-kicker { color: var(--brand-2); font-family: var(--mono); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.download-title { margin-top: 17px; font-size: clamp(2rem, 1.3rem + 3vw, 3.55rem); }
.download-lead { max-width: 42rem; margin: 19px auto 0; color: var(--text-2); font-size: 1.05rem; line-height: 1.7; }
.download-card {
  position: relative;
  margin-top: 38px;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(37,139,255,.08), var(--surface) 52%);
  box-shadow: 0 38px 90px -48px #000, 0 0 70px -50px var(--brand-ring);
  overflow: hidden;
}
.download-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(to right, rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}
.download-count { position: relative; width: 88px; height: 88px; margin: 0 auto; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--brand-ring); background: var(--brand-dim); font-family: var(--mono); font-size: 2rem; color: #fff; box-shadow: 0 0 34px var(--brand-ring); }
.download-status { position: relative; margin-top: 20px; font-size: 1.2rem; font-weight: 600; }
.download-status-sub { position: relative; margin-top: 7px; color: var(--text-3); font-size: .91rem; }
.download-progress { position: relative; height: 4px; max-width: 390px; margin: 25px auto 0; border-radius: 9px; overflow: hidden; background: rgba(255,255,255,.07); }
.download-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--brand), var(--pos)); animation: download-progress 3s linear forwards; }
.download-actions { position: relative; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 27px; }
.download-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 25px; text-align: left; }
.download-point { padding: 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.025); color: var(--text-2); font-size: .9rem; line-height: 1.5; }
.download-point b { display: block; margin-bottom: 4px; color: var(--text); font-weight: 600; }
.download-risk { max-width: 48rem; margin: 22px auto 0; color: var(--text-3); font-size: .84rem; line-height: 1.65; }
.reviews-wrap { margin-top: clamp(58px, 8vw, 84px); text-align: left; }
.reviews-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.reviews-head h2 { font-size: clamp(1.45rem, 1.2rem + 1vw, 2rem); }
.reviews-head a { color: var(--brand-2); font-size: .9rem; }
.trust-summary { display: grid; grid-template-columns: 145px 1fr; gap: 22px; align-items: center; margin-bottom: 20px; padding: 22px; border: 1px solid rgba(63,208,138,.25); border-radius: var(--radius); background: linear-gradient(120deg, rgba(63,208,138,.09), rgba(17,23,34,.94) 54%); }
.trust-summary__score { min-height: 104px; display: grid; place-content: center; text-align: center; border-right: 1px solid var(--line); }
.trust-summary__score strong { display: block; color: var(--pos); font-family: var(--mono); font-size: 2.25rem; line-height: 1; }
.trust-summary__score span { margin-top: 8px; color: var(--text-2); font-size: .83rem; }
.trust-summary__line { display: flex; justify-content: space-between; gap: 12px; color: var(--text-2); font-size: .86rem; }
.trust-summary__line b { color: var(--text); }
.trust-summary__bar { height: 8px; margin-top: 12px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.07); }
.trust-summary__bar span { display: block; width: var(--positive-rate, 0%); height: 100%; border-radius: inherit; background: linear-gradient(90deg, #20b979, var(--pos)); box-shadow: 0 0 18px rgba(63,208,138,.4); animation: trust-fill 1.1s cubic-bezier(.22,.8,.3,1) both; transform-origin: left; }
.trust-summary__body p { margin-top: 11px; color: var(--text-3); font-size: .82rem; line-height: 1.55; }
.reviews-rail { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.reviews-track { display: flex; width: max-content; gap: 14px; }
.reviews-track.is-moving { animation: review-scroll 28s linear infinite; }
.review-card { width: min(340px, 78vw); padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.review-stars { color: var(--pos); letter-spacing: .12em; font-size: .95rem; }
.review-text { margin-top: 13px; color: var(--text-2); font-size: .94rem; line-height: 1.62; }
.review-meta { display: flex; justify-content: space-between; gap: 12px; margin-top: 17px; color: var(--text-3); font-size: .8rem; }
.reviews-empty { padding: 22px; border: 1px dashed var(--line-strong); border-radius: var(--radius); color: var(--text-3); text-align: center; font-size: .9rem; }
.reviews-empty b, .reviews-empty span { display: block; }
.reviews-empty b { margin-bottom: 5px; color: var(--text-2); }
@keyframes download-progress { to { width: 100%; } }
@keyframes review-scroll { to { transform: translateX(calc(-50% - 7px)); } }
@keyframes trust-fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@media (max-width: 680px) {
  .download-points { grid-template-columns: 1fr; }
  .reviews-head { align-items: flex-start; flex-direction: column; }
  .trust-summary { grid-template-columns: 1fr; }
  .trust-summary__score { min-height: 88px; border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 18px; }
}

/* ==========================================================================
   KRIPTO ODEME SAYFASI
   ========================================================================== */
.payment-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 20%, rgba(37,139,255,.14), transparent 32%),
    radial-gradient(circle at 86% 75%, rgba(63,208,138,.07), transparent 30%),
    var(--bg);
}
.payment-main { padding: clamp(44px, 7vw, 78px) 0 80px; }
.payment-shell { max-width: 1080px; }
.payment-intro { max-width: 660px; }
.payment-intro h1 { margin-top: 14px; font-size: clamp(2rem, 1.35rem + 2.4vw, 3.25rem); }
.payment-intro > p:last-child { margin-top: 17px; color: var(--text-2); font-size: 1.02rem; line-height: 1.7; }
.payment-layout { display: grid; grid-template-columns: minmax(240px, .72fr) minmax(0, 1.55fr); gap: 20px; align-items: start; margin-top: 36px; }
.payment-summary,
.payment-panel { border: 1px solid var(--line-strong); border-radius: 16px; background: rgba(17,23,34,.94); box-shadow: 0 28px 80px -54px #000; }
.payment-summary { position: sticky; top: 22px; padding: 26px; }
.payment-summary > span,
.payment-panel__head span,
.payment-detail > span { color: var(--text-3); font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; }
.payment-summary h2 { margin-top: 7px; font-size: 1.25rem; }
.payment-plan-price { margin-top: 17px; color: #fff; font-family: var(--mono); font-size: 1.75rem; font-weight: 600; }
.payment-summary ul { display: grid; gap: 10px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.payment-summary li { display: flex; gap: 8px; color: var(--text-2); font-size: .86rem; line-height: 1.45; }
.payment-summary li:first-letter { color: var(--pos); }
.payment-summary > a { display: inline-block; margin-top: 24px; color: var(--brand-2); font-size: .88rem; }
.payment-panel { padding: clamp(24px, 4vw, 34px); }
.payment-panel__head { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.payment-panel__head h2 { margin-top: 5px; font-size: 1.3rem; }
.rate-refresh { padding: 8px 11px; border: 1px solid var(--line-strong); border-radius: 7px; color: var(--text-2); font-size: .8rem; }
.rate-refresh:hover { color: var(--text); background: rgba(255,255,255,.045); }
.payment-methods { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; margin-top: 24px; }
.payment-method { padding: 13px 12px; border: 1px solid var(--line); border-radius: 9px; background: rgba(255,255,255,.022); text-align: left; }
.payment-method b { display: block; color: var(--text); font-family: var(--mono); font-size: .91rem; }
.payment-method span { display: block; margin-top: 2px; color: var(--text-3); font-size: .76rem; }
.payment-method:hover { border-color: var(--line-strong); }
.payment-method.is-active { border-color: var(--brand); background: var(--brand-dim); box-shadow: 0 0 0 1px rgba(37,139,255,.12) inset; }
.payment-alert { min-height: 24px; margin-top: 15px; color: #f0b66a; font-size: .84rem; line-height: 1.55; }
.payment-consents { display: grid; gap: 11px; margin-top: 20px; padding: 16px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.018); }
.payment-consents label { display: flex; align-items: flex-start; gap: 10px; color: var(--text-2); font-size: .84rem; line-height: 1.55; cursor: pointer; }
.payment-consents input { width: 17px; height: 17px; flex: none; margin-top: 2px; accent-color: var(--brand); }
.payment-consents a { color: var(--brand-2); text-decoration: underline; text-underline-offset: 2px; }
.payment-details { display: grid; grid-template-columns: 1.35fr .65fr; gap: 10px; margin-top: 6px; }
.payment-detail { min-width: 0; padding: 17px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.025); }
.payment-detail strong { display: block; margin-top: 7px; color: var(--text); font-family: var(--mono); font-size: .96rem; overflow-wrap: anywhere; }
.payment-detail button { margin-top: 11px; color: var(--brand-2); font-size: .78rem; }
.payment-detail button:disabled { color: var(--text-3); cursor: not-allowed; }
.payment-detail--amount strong { color: var(--pos); font-size: 1.16rem; }
.payment-detail--address { grid-column: 1 / -1; }
.payment-rate-line { grid-column: 1 / -1; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; color: var(--text-3); font-family: var(--mono); font-size: .75rem; }
.payment-warning { margin-top: 22px; padding: 15px 17px; border: 1px solid rgba(224,101,79,.22); border-left: 2px solid var(--neg); border-radius: 9px; background: rgba(224,101,79,.055); color: var(--text-2); font-size: .85rem; line-height: 1.6; }
.payment-warning b { color: var(--text); }
.payment-delivery-note { margin-top: 14px; padding: 15px 17px; border: 1px solid rgba(37,139,255,.24); border-radius: 9px; background: rgba(37,139,255,.06); color: var(--text-2); font-size: .85rem; line-height: 1.6; }
.payment-delivery-note b { display: block; color: var(--text); }
.payment-submit-toggle { margin-top: 18px; }
.payment-proof { margin-top: 12px; padding: 20px; border: 1px solid var(--line-strong); border-radius: 12px; background: rgba(5,8,13,.52); }
.payment-proof__head span { color: var(--brand-2); font-family: var(--mono); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; }
.payment-proof__head h3 { margin-top: 5px; font-size: 1.12rem; }
.payment-proof__head p { margin-top: 7px; color: var(--text-3); font-size: .84rem; line-height: 1.55; }
.payment-field { display: grid; gap: 7px; margin-top: 17px; }
.payment-field > span { color: var(--text-2); font-size: .86rem; font-weight: 600; }
.payment-field input { width: 100%; min-height: 46px; padding: 11px 13px; border: 1px solid var(--line-strong); border-radius: 8px; background: rgba(255,255,255,.035); color: var(--text); font: .9rem var(--sans); outline: none; }
.payment-field input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-dim); }
.payment-field input::placeholder { color: var(--text-3); }
.payment-field small { color: var(--text-3); font-size: .76rem; line-height: 1.5; }
.payment-form-error, .payment-form-status { margin-top: 14px; padding: 12px 14px; border-radius: 8px; font-size: .82rem; line-height: 1.55; }
.payment-form-error { border: 1px solid rgba(224,101,79,.3); background: rgba(224,101,79,.07); color: #f1a08f; }
.payment-form-status { border: 1px solid rgba(63,208,138,.3); background: rgba(63,208,138,.07); color: var(--text-2); }
.payment-form-status strong { display: block; color: var(--pos); }
.payment-proof .btn { margin-top: 16px; }
.payment-direct-support { display: block; width: max-content; max-width: 100%; margin: 16px auto 0; color: var(--brand-2); font-size: .84rem; text-align: center; }
.payment-footnote { margin-top: 14px; color: var(--text-3); font-size: .78rem; line-height: 1.6; text-align: center; }
.payment-empty { grid-column: 1 / -1; padding: 20px; border: 1px dashed var(--line-strong); border-radius: 9px; color: var(--text-3); font-size: .88rem; }
@media (max-width: 820px) {
  .payment-layout { grid-template-columns: 1fr; }
  .payment-summary { position: static; }
}
@media (max-width: 560px) {
  .payment-methods { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .payment-details { grid-template-columns: 1fr; }
  .payment-detail--address, .payment-rate-line { grid-column: auto; }
  .payment-panel__head { align-items: flex-start; }
}

/* Tek orkestre edilmis giris: yalnizca hero, yalnizca sayfa yuklenirken */
@media (prefers-reduced-motion: no-preference) {
  .hero__copy > *, .hero__visual {
    opacity: 0;
    transform: translateY(14px);
    animation: rise .62s cubic-bezier(.22,.8,.3,1) forwards;
  }
  .hero__copy > *:nth-child(1) { animation-delay: .04s; }
  .hero__copy > *:nth-child(2) { animation-delay: .10s; }
  .hero__copy > *:nth-child(3) { animation-delay: .16s; }
  .hero__copy > *:nth-child(4) { animation-delay: .22s; }
  .hero__copy > *:nth-child(5) { animation-delay: .28s; }
  .hero__copy > *:nth-child(6) { animation-delay: .32s; }
  .hero__visual { animation-delay: .18s; }
}
@keyframes rise { to { opacity: 1; transform: none; } }

/* Yazdirma */
@media print {
  .header, .wa, .modal, .player__btn { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ============================================================================
   CANLI DEMO PANELI
   Container query kullanir: panel hangi genislikte kapsayiciya konursa
   ona gore duzen alir (kayit sayfasinda 9:16 cerceve icinde de dogru calisir).
   ========================================================================== */

.dp {
  container-type: inline-size;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  overflow: hidden;
  box-shadow: 0 40px 90px -46px rgba(0,0,0,.9);
}

/* --- Mod degistirici ------------------------------------------------------ */
.dp__modes {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.24);
  flex-wrap: wrap;
}
.dp__mode {
  padding: 8px 15px;
  border-radius: 7px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-3);
  border: 1px solid transparent;
  transition: color .15s ease, background-color .15s ease, border-color .15s ease;
}
.dp__mode:hover { color: var(--text-2); }
.dp__mode.is-on {
  color: var(--text);
  background: var(--brand-dim);
  border-color: var(--brand-ring);
}
.dp__modeHint {
  margin-left: auto;
  font-size: .78rem;
  color: var(--text-3);
  white-space: nowrap;
}

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

/* --- Grafik --------------------------------------------------------------- */
.dp__chart {
  padding: 16px 18px 18px;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.dp__chartTop {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.dp__pair {
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.dp__pair span {
  display: block;
  margin-top: 3px;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 400;
  color: var(--text-3);
  letter-spacing: 0;
}
.dp__price {
  font-family: var(--mono);
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  transition: color .3s ease;
  white-space: nowrap;
}
.dp__price.is-up { color: var(--pos); }
.dp__price.is-down { color: var(--neg); }

/* Canvas mutlak konumlu: kendi boyutu ust duzeni etkilemez, boylece
   ResizeObserver geri besleme dongusu olusmaz. */
.dp__canvasWrap {
  position: relative;
  width: 100%;
  height: 220px;
  flex: none;
}
.dp__canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

/* --- Bot paneli ----------------------------------------------------------- */
.dp__side {
  padding: 16px 18px 20px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.2);
  min-width: 0;
}

.dp__status {
  padding: 11px 14px 12px;
  border: 1px solid rgba(63,208,138,.26);
  border-radius: var(--radius-sm);
  background: rgba(63,208,138,.07);
  margin-bottom: 18px;
}
.dp__statusTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
}
.dp__live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--pos);
}
.dp__live i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--pos);
  flex: none;
  animation: dpPulse 2s ease-in-out infinite;
}
@keyframes dpPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(63,208,138,.45); }
  50%      { box-shadow: 0 0 0 5px rgba(63,208,138,0); }
}
.dp__scan {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--text-3);
  white-space: nowrap;
}
.dp__bar {
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,.07);
  overflow: hidden;
}
.dp__bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(63,208,138,.35), var(--pos));
}

.dp__sideHead {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-3);
  margin-bottom: 12px;
}

.dp__signals { display: grid; gap: 10px; align-content: start; }

.dp__sig {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--text-3);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  transition: opacity .3s ease, transform .3s ease, border-color .3s ease;
}
.dp__sig--long { border-left-color: var(--pos); }
.dp__sig--short { border-left-color: var(--neg); }
.dp__sig.is-new { opacity: 0; transform: translateY(10px); }
.dp__sig.is-gone { opacity: 0; transform: translateX(16px); }
.dp__sig.is-open { border-color: rgba(255,255,255,.15); }
.dp__sig.is-waiting { animation: dpWait 2.4s ease-in-out infinite; }
@keyframes dpWait {
  0%, 100% { border-top-color: var(--line); border-right-color: var(--line); border-bottom-color: var(--line); }
  50%      { border-top-color: var(--brand-ring); border-right-color: var(--brand-ring); border-bottom-color: var(--brand-ring); }
}

.dp__sigTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.dp__sym { font-size: .95rem; font-weight: 600; letter-spacing: -0.015em; }
.dp__tag {
  padding: 3px 9px;
  border-radius: 5px;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
}
.dp__sig--long .dp__tag { background: rgba(63,208,138,.16); color: var(--pos); }
.dp__sig--short .dp__tag { background: rgba(224,101,79,.16); color: var(--neg); }
.dp__sig--market { border-left-color: var(--brand-2); }
.dp__tag--live { background: rgba(63,208,138,.14); color: var(--pos); }

.dp__sigMid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.dp__reason { font-size: .85rem; color: var(--text-3); }
.dp__tp {
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--text-2);
  white-space: nowrap;
}
.dp__marketPrice {
  font-family: var(--mono);
  font-size: .92rem;
  font-weight: 500;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.dp__marketPrice.is-up,
.dp__marketMeta .is-up { color: var(--pos); }
.dp__marketPrice.is-down,
.dp__marketMeta .is-down { color: var(--neg); }
.dp__marketMeta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-3);
  font-family: var(--mono);
  font-size: .7rem;
}
.dp__flowState {
  color: var(--text-2);
  font-weight: 500;
  text-align: right;
  white-space: nowrap;
}

.dp__sigAct { display: flex; gap: 8px; }

.dp__btn {
  flex: 1;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 600;
  transition: filter .15s ease;
}
.dp__btn:hover { filter: brightness(1.12); }
.dp__btn--long { background: rgba(63,208,138,.88); color: #06251A; }
.dp__btn--short { background: rgba(224,101,79,.88); color: #2A0D08; }
.dp__btn--skip {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-strong);
  color: var(--text-3);
  font-weight: 500;
}

.dp__pending, .dp__opened {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-family: var(--mono);
  letter-spacing: -0.01em;
}
.dp__pending { color: var(--text-3); }
.dp__opened { color: var(--pos); }

.dp__spin {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 1.6px solid rgba(255,255,255,.16);
  border-top-color: var(--brand-2);
  animation: dpSpin .8s linear infinite;
  flex: none;
}
@keyframes dpSpin { to { transform: rotate(360deg); } }

.dp__note {
  padding: 13px 18px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.32);
  color: var(--text-3);
  font-size: .8rem;
  line-height: 1.6;
}

/* --- Genis kapsayici: iki sutun ------------------------------------------ */
@container (min-width: 820px) {
  .dp__board {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .dp__side {
    border-top: 0;
    border-left: 1px solid var(--line);
    padding: 20px 20px 24px;
  }
  .dp__chart { padding: 20px 22px 22px; }
  /* Sarmalayici kalan dikey alani doldurur -> iki sutun esit yukseklikte olur */
  .dp__canvasWrap { height: auto; flex: 1 1 auto; min-height: 300px; }
}

@container (max-width: 430px) {
  .dp__canvasWrap { height: 180px; }
  .dp__price { font-size: 1.05rem; }
  .dp__modes { padding: 10px; }
  .dp__mode { padding: 8px 11px; font-size: .8rem; flex: 1; }
  .dp__modeHint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .dp__live i, .dp__sig.is-waiting, .dp__spin { animation: none; }
}

/* --- Dikey cerceve (9:16) icin panel her zaman tek sutun ------------------
   Kayit sayfalarinda kullanilir. Ozgullugu container query kuralindan
   yuksek oldugu icin !important gerekmez. */
.dp-stack .dp__board { grid-template-columns: minmax(0, 1fr); }
.dp-stack .dp__side { border-top: 1px solid var(--line); border-left: 0; }
.dp-stack .dp__canvasWrap { height: 600px; flex: none; }
