/* ============ TradeProBox — Anasayfa landing ============ */
/* Override: public landing'de unauthenticated blur YOK */
body.unauthenticated.tradeprobox-page > *,
body.unauthenticated.tradeprobox-page header,
body.unauthenticated.tradeprobox-page main,
body.unauthenticated.tradeprobox-page section,
body.unauthenticated.tradeprobox-page footer {
  filter: none !important;
  pointer-events: auto !important;
  user-select: auto !important;
}
body.tradeprobox-page #loginModal[hidden] { display: none !important; }
body.tradeprobox-page.unauthenticated #loginModal { display: none !important; }
body.tradeprobox-page #loginModal.manual-open { display: grid !important; }

:root {
  --bg: #03060e;
  --bg-2: #04080f;
  --panel: rgba(13, 21, 41, 0.55);
  --panel-solid: #0b1326;
  --border: rgba(54, 78, 130, 0.32);
  --border-strong: rgba(70, 104, 175, 0.55);
  --blue: #2f7bff;
  --blue-bright: #3b86ff;
  --blue-soft: #5ea0ff;
  --cyan: #3d9bff;
  --green: #25c26e;
  --green-soft: #3ad98a;
  --red: #ef4757;
  --text: #eef2f9;
  --text-2: #c2cbdb;
  --muted: #8590a6;
  --muted-2: #5a6580;
  --glow: rgba(35, 110, 255, 0.55);
  --radius: 16px;
  --maxw: 1660px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

body.light {
  --bg: #eef2f8;
  --bg-2: #e6ecf5;
  --panel: rgba(255, 255, 255, 0.75);
  --panel-solid: #ffffff;
  --border: rgba(40, 70, 130, 0.18);
  --border-strong: rgba(40, 90, 200, 0.3);
  --text: #0c1426;
  --text-2: #2c3a55;
  --muted: #5a6580;
  --muted-2: #8a94a8;
  --glow: rgba(35, 110, 255, 0.22);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* ambient background glows */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(820px 560px at 62% 30%, rgba(28, 86, 210, 0.26), transparent 62%),
    radial-gradient(520px 420px at 80% 46%, rgba(20, 70, 200, 0.14), transparent 60%),
    radial-gradient(900px 900px at 50% 120%, rgba(18, 50, 140, 0.16), transparent 60%),
    linear-gradient(180deg, #03060e 0%, #04070f 50%, #020409 100%);
}
body.light .bg-glow {
  background:
    radial-gradient(900px 620px at 60% 18%, rgba(60, 130, 255, 0.16), transparent 60%),
    radial-gradient(700px 500px at 85% 40%, rgba(60, 130, 255, 0.1), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 60%, var(--bg) 100%);
}

.shell {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
}

/* ============ NAV ============ */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(5, 9, 18, 0.85), rgba(5, 9, 18, 0.35));
  border-bottom: 1px solid var(--border);
}
body.light header.nav {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.5));
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.brand .logo {
  width: 46px;
  height: 40px;
  display: grid;
  place-items: center;
  position: relative;
  filter: drop-shadow(0 3px 10px rgba(40, 110, 255, 0.45));
}
.brand .logo svg { width: 46px; height: 40px; }
.brand-name { color: var(--text); font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0 auto;
  list-style: none;
}
.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -7px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--blue-bright);
  transition: width 0.22s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--text); }

.nav-right { display: flex; align-items: center; gap: 14px; }

/* mobil hamburger butonu (sadece telefon/tablet'te gorunur) */
.nav-burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
  place-items: center;
  flex-shrink: 0;
}
.nav-burger svg { width: 24px; height: 24px; }

/* buttons */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 11px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
  padding: 10px 20px;
}
.btn-ghost:hover { background: rgba(60, 110, 220, 0.12); border-color: var(--blue); }
.btn-primary {
  background: linear-gradient(135deg, #1f6dff, #3b86ff);
  color: #fff;
  padding: 11px 22px;
  box-shadow: 0 8px 22px rgba(35, 110, 255, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(35, 110, 255, 0.55); }
.btn-lg { padding: 16px 30px; font-size: 16px; border-radius: 13px; }

.lang {
  display: flex; align-items: center; gap: 6px;
  color: var(--text-2); font-weight: 600; font-size: 14px;
  cursor: pointer; padding: 8px 6px;
  user-select: none;
}
.lang:hover { color: var(--text); }
.icon-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text-2);
  cursor: pointer;
  transition: 0.2s;
}
.icon-btn:hover { color: var(--text); border-color: var(--blue); }

/* ============ HERO ============ */
.hero {
  display: grid;
  grid-template-columns: 1.08fr 1.15fr 0.46fr;
  gap: 36px;
  align-items: center;
  padding: 56px 0 40px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 30px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  white-space: nowrap;
  color: var(--blue-soft);
  background: rgba(40, 100, 220, 0.08);
  margin-bottom: 26px;
}
.badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(59, 134, 255, 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(59, 134, 255, 0.25); }
  50% { box-shadow: 0 0 0 7px rgba(59, 134, 255, 0); }
}

h1.headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 5.2vw, 90px);
  line-height: 0.98;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
h1.headline .l-white { color: var(--text); }
h1.headline .l-blue {
  background: linear-gradient(100deg, #2f7bff, #5ea0ff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
h1.headline .l-grey {
  background: linear-gradient(180deg, var(--text), #7d8aa6);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size: 19px;
  color: var(--text-2);
  margin-bottom: 8px;
  font-weight: 500;
}
.lead2 {
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 34px;
  font-weight: 500;
}
.lead2 b { color: var(--blue-soft); font-weight: 700; }

.feat-inline {
  display: flex;
  gap: 38px;
  margin-bottom: 38px;
  flex-wrap: wrap;
}
.feat-inline .fi {
  display: flex;
  align-items: center;
  gap: 13px;
}
.feat-inline .fi-ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(45, 100, 215, 0.14);
  border: 1px solid var(--border-strong);
  color: var(--blue-soft);
  flex-shrink: 0;
}
.feat-inline .fi-ic svg { width: 21px; height: 21px; }
.feat-inline .fi-t {
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.6px;
  color: var(--text);
}
.feat-inline .fi-s {
  font-size: 12.5px; color: var(--muted);
  margin-top: 2px;
}

.cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* hero center scene */
.scene {
  position: relative;
  height: 600px;
  display: grid;
  place-items: center;
}
.stage {
  position: relative;
  width: 580px;
  height: 600px;
}
.globe {
  position: absolute;
  width: 500px; height: 500px;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  opacity: 0.92;
}
.globe svg { width: 100%; height: 100%; display: block; overflow: visible; }
.globe .glb-rot { transform-box: fill-box; transform-origin: center; animation: spin 90s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.scene-glow {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  left: 50%; bottom: 40px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(40, 110, 255, 0.4), transparent 62%);
  filter: blur(26px);
}
.rings {
  position: absolute;
  bottom: 56px; left: 46%;
  transform: translateX(-50%);
  width: 440px; height: 150px;
  perspective: 600px;
  z-index: 2;
}
.rings span {
  position: absolute;
  left: 50%; top: 50%;
  border: 1.5px solid rgba(70, 175, 255, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(76deg);
  box-shadow: 0 0 18px rgba(60, 170, 255, 0.5), inset 0 0 14px rgba(60, 170, 255, 0.3);
  animation: ringPulse 4s ease-in-out infinite;
}
.rings span:nth-child(1) { width: 130px; height: 130px; border-color: rgba(120, 210, 255, 0.8); }
.rings span:nth-child(2) { width: 240px; height: 240px; opacity: 0.7; animation-delay: 0.5s; }
.rings span:nth-child(3) { width: 360px; height: 360px; opacity: 0.45; animation-delay: 1s; }
.rings span:nth-child(4) { width: 470px; height: 470px; opacity: 0.22; animation-delay: 1.5s; }
@keyframes ringPulse { 0%, 100% { opacity: 0.7; } 50% { opacity: 0.28; } }
.rings .core {
  position: absolute; left: 50%; top: 50%;
  width: 60px; height: 16px; border: none;
  transform: translate(-50%, -50%) rotateX(76deg);
  border-radius: 50%;
  background: radial-gradient(circle, #cfeaff, #3aa0ff 55%, transparent 75%);
  box-shadow: 0 0 30px 8px rgba(80, 180, 255, 0.7);
  animation: corePulse 2.6s ease-in-out infinite;
}
@keyframes corePulse { 0%,100% { opacity: 0.85; } 50% { opacity: 1; } }
.rings .beam {
  position: absolute; left: 50%; bottom: 50%;
  width: 26px; height: 150px;
  transform: translateX(-50%);
  background: linear-gradient(to top, rgba(120, 200, 255, 0.55), rgba(120, 200, 255, 0));
  filter: blur(7px);
  border-radius: 50%;
  animation: beamPulse 3s ease-in-out infinite;
}
@keyframes beamPulse { 0%,100% { opacity: 0.6; height: 140px; } 50% { opacity: 0.95; height: 175px; } }

.chart-svg {
  position: absolute;
  width: 580px; height: 600px;
  top: 0; left: 0;
  filter: drop-shadow(0 0 22px rgba(55, 140, 255, 0.7));
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}

/* laptop mockup */
.laptop {
  position: absolute;
  left: 8px; bottom: 96px;
  width: 392px;
  z-index: 3;
}
.laptop-screen {
  width: 100%; height: 248px;
  border-radius: 14px 14px 4px 4px;
  background: linear-gradient(155deg, #141c30, #0a1120);
  border: 2px solid rgba(95, 135, 205, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 50px rgba(40, 110, 255, 0.18);
  padding: 9px;
  overflow: hidden;
}
.laptop-base {
  width: 460px;
  height: 13px;
  margin-left: -34px;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(180deg, #2a3450, #161d2e);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.5);
  position: relative;
}
.laptop-base::after {
  content: "";
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: 90px; height: 5px;
  border-radius: 0 0 7px 7px;
  background: #0c1322;
}
.lt-deck {
  width: 100%; height: 100%;
  border-radius: 8px;
  background: #070d1a;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}
.lt-head {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 11px;
  border-bottom: 1px solid rgba(60, 90, 150, 0.25);
}
.lt-dots { display: flex; gap: 5px; }
.lt-dots i { width: 7px; height: 7px; border-radius: 50%; display: block; }
.lt-dots i:nth-child(1) { background: #ef4757; }
.lt-dots i:nth-child(2) { background: #f5b53d; }
.lt-dots i:nth-child(3) { background: #25c26e; }
.lt-title { font-size: 9.5px; color: var(--muted); font-weight: 600; letter-spacing: 0.4px; }
.lt-pair-tag {
  margin-left: auto; font-family: var(--font-display);
  font-size: 10px; font-weight: 700; color: #fff;
}
.lt-pair-tag b { color: var(--green-soft); font-weight: 600; margin-left: 5px; font-size: 9px; }
.lt-body { display: grid; grid-template-columns: 1fr 86px; min-height: 0; }
.lt-chart { position: relative; }
.lt-chart svg { width: 100%; height: 100%; display: block; }
.lt-side {
  border-left: 1px solid rgba(60, 90, 150, 0.22);
  padding: 7px 8px;
  display: flex; flex-direction: column; gap: 6px;
}
.lt-ob { font-size: 8px; display: flex; justify-content: space-between; font-variant-numeric: tabular-nums; }
.lt-ob.s { color: #ef6571; }
.lt-ob.b { color: #3ad98a; }
.lt-ob .ob-fill { position: relative; }
.lt-foot {
  display: flex; gap: 3px; align-items: flex-end;
  height: 34px; padding: 0 10px 8px;
}
.lt-foot i {
  flex: 1; border-radius: 1.5px;
  background: linear-gradient(180deg, rgba(59,134,255,0.7), rgba(59,134,255,0.15));
}

/* phone mockup */
.phone {
  position: absolute;
  right: 6px; bottom: 70px;
  width: 210px; height: 428px;
  border-radius: 32px;
  background: linear-gradient(160deg, #1a2236, #0a1120);
  border: 2px solid rgba(95, 135, 205, 0.45);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.65), 0 0 50px rgba(40, 110, 255, 0.3);
  padding: 10px;
  z-index: 5;
}
.phone::before {
  content: "";
  position: absolute;
  top: 13px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 5px;
  border-radius: 3px;
  background: rgba(120, 150, 210, 0.3);
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 25px;
  background: #070d1a;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 16px 14px 12px;
}
.ph-top {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; color: var(--text-2); font-weight: 600;
  margin-bottom: 14px;
}
.ph-pair { font-size: 11px; color: var(--muted); }
.ph-price {
  font-family: var(--font-display);
  font-weight: 700; font-size: 23px; color: #fff;
}
.ph-price span { color: var(--green-soft); font-size: 12px; font-weight: 600; margin-left: 6px; }
.ph-chart { flex: 1; margin: 12px 0; }
.ph-stats { display: flex; justify-content: space-between; margin-bottom: 12px; }
.ph-stats div { text-align: center; }
.ph-stats .k { font-size: 8px; color: var(--muted-2); letter-spacing: 0.5px; }
.ph-stats .v { font-size: 11px; color: var(--text-2); font-weight: 600; margin-top: 3px; }
.ph-actions { display: flex; gap: 8px; }
.ph-actions button {
  flex: 1; border: none; border-radius: 9px;
  padding: 9px 0; font-size: 12px; font-weight: 700; color: #fff;
  font-family: var(--font-body); cursor: pointer;
}
.ph-buy { background: linear-gradient(135deg, #1ba85e, #25c26e); }
.ph-sell { background: linear-gradient(135deg, #d83a49, #ef4757); }

/* hero right feature panel */
.feat-panel {
  border: none;
  background: transparent;
  backdrop-filter: none;
  padding: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.fp-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 14px 12px;
  border-radius: 14px;
  transition: background 0.2s;
}
.fp-item:hover { background: rgba(50, 100, 210, 0.08); }
.fp-ic {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(45, 100, 215, 0.12);
  border: 1px solid rgba(70, 110, 190, 0.3);
  color: var(--blue-soft);
}
.fp-ic svg { width: 20px; height: 20px; }
.fp-t {
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.4px; color: var(--text);
  line-height: 1.15;
}
.fp-s { font-size: 12px; color: var(--muted); margin-top: 5px; line-height: 1.4; }

/* ============ STATS ROW ============ */
.stats {
  display: flex;
  gap: 16px;
  padding: 16px 0 70px;
}
.stat-card {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(8px);
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.2s;
}
.stat-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.stat-card.wide { flex: 1.55; }
.stat-card.profit { flex: 1.4; }
.sc-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.4px;
  color: var(--blue-soft); margin-bottom: 14px;
}
.sc-sub { font-size: 11px; color: var(--muted-2); margin-bottom: 6px; letter-spacing: 0.5px; }
.sc-val {
  font-family: var(--font-display);
  font-weight: 700; font-size: 26px; color: var(--text);
  letter-spacing: -0.5px;
  transition: color 0.3s;
}
.sc-val.sm { font-size: 22px; }
.sc-chg {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 700; margin-top: 8px;
}
.up { color: var(--green-soft); }
.down { color: var(--red); }
.sc-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; }
.spark { width: 100%; height: 42px; margin-top: 12px; }
.flash-up { animation: flashUp 0.6s; }
.flash-down { animation: flashDown 0.6s; }
@keyframes flashUp { 0% { color: var(--green-soft); } 100% { color: var(--text); } }
@keyframes flashDown { 0% { color: var(--red); } 100% { color: var(--text); } }

.profit-wrap { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.donut {
  width: 96px; height: 96px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(var(--blue) 0 38%, var(--green) 38% 62%, rgba(80,110,170,0.25) 62% 100%);
  display: grid; place-items: center;
  position: relative;
}
.donut::after {
  content: ""; position: absolute;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--panel-solid);
}

@media (max-width: 1480px) {
  .stage { transform: scale(0.82); }
  .hero { gap: 24px; }
}
@media (max-width: 1180px) {
  .shell { padding: 0 26px; }
  .hero { grid-template-columns: 1fr 1.05fr 0.46fr; gap: 18px; }
  .stage { transform: scale(0.66); }
  .scene { height: 480px; }
  h1.headline { font-size: clamp(40px, 6vw, 64px); }
  .feat-inline { gap: 22px; }
  .stats { flex-wrap: wrap; }
  .stat-card { flex: 1 1 30%; }
}
@media (max-width: 900px) {
  .shell { padding: 0 20px; }
  /* --- mobil navigasyon: hamburger akordeon menu --- */
  .nav-inner { flex-wrap: wrap; height: auto; min-height: 64px; padding: 10px 0; gap: 12px; }
  .brand { margin-right: auto; font-size: 19px; }
  .nav-burger { display: grid; }
  header.nav nav { flex-basis: 100%; order: 5; display: none; }
  header.nav .nav-right { flex-basis: 100%; order: 6; display: none; flex-wrap: wrap; gap: 10px; }
  header.nav.menu-open nav { display: block; }
  header.nav.menu-open .nav-right { display: flex; padding-bottom: 8px; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; margin: 0; }
  .nav-links a { padding: 13px 4px; font-size: 16px; border-bottom: 1px solid var(--border); }
  .nav-links a::after { display: none; }
  .nav-right .btn { flex: 1 1 auto; justify-content: center; }

  .hero { grid-template-columns: 1fr; padding: 30px 0 28px; }
  .feat-panel { flex-direction: row; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
  .fp-item { flex: 1 1 44%; }
  .scene { display: none; }
  .stats { flex-wrap: wrap; }
  /* .wide ve .profit'in genis flex'ini ezerek temiz 2 sutun */
  .stat-card, .stat-card.wide, .stat-card.profit { flex: 1 1 46%; }
}

/* ============ TELEFON ince ayar (<=600px) ============ */
@media (max-width: 600px) {
  .shell { padding: 0 16px; }
  h1.headline { font-size: clamp(34px, 11vw, 46px); letter-spacing: -1px; }
  .badge { font-size: 10.5px; letter-spacing: 1.4px; padding: 8px 14px; margin-bottom: 20px; }
  .lead, .lead2 { font-size: 16px; }
  .lead2 { margin-bottom: 24px; }
  .feat-inline { flex-direction: column; gap: 16px; margin-bottom: 26px; }
  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; justify-content: center; }
  .btn-lg { padding: 15px 24px; font-size: 15px; }
  .feat-panel { flex-direction: column; gap: 2px; }
  .fp-item { flex: 1 1 100%; }
  /* stat kartlari telefonda tek sutun */
  .stat-card, .stat-card.wide, .stat-card.profit { flex: 1 1 100%; }
  .stats { padding: 12px 0 48px; }
  .sc-val { font-size: 23px; }
  .donut { width: 84px; height: 84px; }
  .donut::after { width: 56px; height: 56px; }
}
