:root {
  --bg: #0a0b13;
  --bg-soft: #11131f;
  --surface: #151827;
  --surface-2: #1a1d30;
  --surface-3: #0f1a2e;
  --line: rgba(255,255,255,.08);
  --line-strong: rgba(255,211,122,.28);
  --text: #f8f9fd;
  --muted: #afb8cd;
  --gold: #ffbf52;
  --gold-2: #ffd980;
  --blue: #5a84ff;
  --green: #1fd27f;
  --danger: #ff7a7a;
  --shadow: 0 22px 60px rgba(0,0,0,.35);
  --radius: 24px;
  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(90,132,255,.18), transparent 30%),
    radial-gradient(circle at 100% 10%, rgba(255,191,82,.12), transparent 28%),
    linear-gradient(180deg, #090a11 0%, #0c0d16 55%, #090a11 100%);
  color: var(--text);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; border: none; outline: none; }
img, svg { display: block; max-width: 100%; }

.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.hidden { display: none !important; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  transition: .24s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { min-height: 58px; padding: 0 26px; }
.btn-block { width: 100%; }

.btn-primary {
  color: #0a0b13;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 14px 30px rgba(255,191,82,.2);
}

.btn-secondary {
  background: rgba(255,255,255,.04);
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn-plan {
  width: 100%;
  background: linear-gradient(135deg, #ff9b2f, #ff4b6e);
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-2);
  background: rgba(255,191,82,.08);
  border: 1px solid var(--line-strong);
}

.section-head {
  max-width: 50rem;
  margin-bottom: 28px;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-head p {
  max-width: 44rem;
  margin-inline: auto;
  color: var(--muted);
}

.up { color: var(--green); }
.down { color: var(--danger); }

.topbar {
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: rgba(12,13,20,.72);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 42px;
}

.topbar-copy, .topbar-links {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.sep { opacity: .45; }
.topbar-links a:hover { color: var(--text); }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(10,11,19,.78);
  border-bottom: 1px solid var(--line);
}

.header.compact .header-inner { padding: 10px 0; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  transition: .22s ease;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
  background: rgba(255,255,255,.04);
  padding: 4px;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong { font-size: 18px; line-height: 1.05; }
.brand-copy small { color: var(--muted); font-size: 13px; }

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 600;
}

.nav a:hover { color: var(--text); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 4px auto;
  border-radius: 99px;
}

h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: .94;
  letter-spacing: -.05em;
  max-width: 11.5ch;
  margin: 18px 0 18px;
}

h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: .97;
  letter-spacing: -.04em;
  margin: 14px 0 14px;
}

h3 {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.12;
  margin-bottom: 10px;
}

p { color: var(--muted); }

.lead {
  font-size: clamp(18px, 2vw, 22px);
  max-width: 38rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 0;
}

.hero-bg {
  position: absolute;
  inset: 0 0 auto 0;
  height: 100%;
  background: radial-gradient(circle at 18% 12%, rgba(255,191,82,.18), transparent 22%),
              radial-gradient(circle at 90% 4%, rgba(90,132,255,.16), transparent 20%);
  pointer-events: none;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.fx-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform-style: preserve-3d;
  --mx: 0px;
  --my: 0px;
}

.fx-grid,
.fx-orb,
.fx-ring,
.fx-wave,
.fx-candles,
.fx-particles {
  position: absolute;
  pointer-events: none;
}

.fx-grid {
  inset: -8% -5% 0 -5%;
  background:
    linear-gradient(rgba(90,132,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90,132,255,.09) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.95), rgba(0,0,0,.12));
  transform: rotateX(72deg) translate3d(calc(var(--mx) * .03), calc(80px + var(--my) * .02), -120px) scale(1.35);
  transform-origin: center top;
  opacity: .6;
}

.fx-orb {
  border-radius: 50%;
  filter: blur(14px);
  opacity: .6;
}

.fx-orb-a {
  width: 380px;
  height: 380px;
  top: -40px;
  left: -80px;
  background: radial-gradient(circle, rgba(255,191,82,.22), rgba(255,191,82,0));
  transform: translate3d(calc(var(--mx) * -.04), calc(var(--my) * -.03), 80px);
  animation: fxFloatA 14s ease-in-out infinite;
}

.fx-orb-b {
  width: 420px;
  height: 420px;
  top: 4%;
  right: -120px;
  background: radial-gradient(circle, rgba(90,132,255,.18), rgba(90,132,255,0));
  transform: translate3d(calc(var(--mx) * .05), calc(var(--my) * -.02), 90px);
  animation: fxFloatB 16s ease-in-out infinite;
}

.fx-ring {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}

.fx-ring-a {
  width: 520px;
  height: 520px;
  top: -70px;
  right: 10%;
  transform: rotateX(74deg) rotateZ(12deg) translate3d(calc(var(--mx) * .03), calc(var(--my) * .03), 40px);
  animation: fxSpin 22s linear infinite;
}

.fx-ring-b {
  width: 360px;
  height: 360px;
  top: 120px;
  left: 8%;
  opacity: .55;
  transform: rotateX(74deg) rotateZ(-18deg) translate3d(calc(var(--mx) * -.03), calc(var(--my) * .02), 40px);
  animation: fxSpinReverse 18s linear infinite;
}

.fx-wave {
  left: 0;
  right: 0;
  height: 180px;
  border-radius: 50%;
  border-top: 1px solid rgba(255,255,255,.16);
  filter: drop-shadow(0 0 22px rgba(90,132,255,.18));
}

.fx-wave-a {
  bottom: 18%;
  transform: rotateX(72deg) translate3d(calc(var(--mx) * .04), calc(var(--my) * .015), 60px) scale(1.3);
  animation: fxPulse 10s ease-in-out infinite;
}

.fx-wave-b {
  bottom: 14%;
  opacity: .45;
  border-top-color: rgba(255,191,82,.2);
  transform: rotateX(72deg) translate3d(calc(var(--mx) * -.03), calc(var(--my) * .015), 10px) scale(1.05);
  animation: fxPulse 13s ease-in-out infinite reverse;
}

.fx-candles {
  display: flex;
  align-items: end;
  gap: 12px;
}

.fx-candles span {
  width: 9px;
  border-radius: 999px;
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(90,132,255,.18));
  box-shadow: 0 0 16px rgba(90,132,255,.16);
}

.fx-candles span::before,
.fx-candles span::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: rgba(255,255,255,.26);
}

.fx-candles span::before {
  top: -22px;
  height: 22px;
}

.fx-candles span::after {
  bottom: -18px;
  height: 18px;
}

.fx-candles-a {
  right: 8%;
  top: 12%;
  transform: translate3d(calc(var(--mx) * .045), calc(var(--my) * -.02), 120px) rotate(-7deg);
  opacity: .78;
}

.fx-candles-b {
  left: 6%;
  top: 38%;
  transform: translate3d(calc(var(--mx) * -.04), calc(var(--my) * .02), 85px) rotate(7deg) scale(.88);
  opacity: .45;
}

.fx-candles-a span:nth-child(1) { height: 54px; animation: candlePulse 6s ease-in-out infinite .2s; }
.fx-candles-a span:nth-child(2) { height: 86px; animation: candlePulse 5.5s ease-in-out infinite .7s; }
.fx-candles-a span:nth-child(3) { height: 66px; animation: candlePulse 7s ease-in-out infinite 1s; }
.fx-candles-a span:nth-child(4) { height: 112px; animation: candlePulse 6.5s ease-in-out infinite 1.3s; }
.fx-candles-a span:nth-child(5) { height: 78px; animation: candlePulse 5.8s ease-in-out infinite 1.8s; }
.fx-candles-a span:nth-child(6) { height: 126px; animation: candlePulse 6.2s ease-in-out infinite .5s; }
.fx-candles-a span:nth-child(7) { height: 94px; animation: candlePulse 7.2s ease-in-out infinite 1.1s; }
.fx-candles-a span:nth-child(8) { height: 138px; animation: candlePulse 6.8s ease-in-out infinite .9s; }
.fx-candles-b span:nth-child(1) { height: 48px; animation: candlePulse 6.4s ease-in-out infinite .1s; }
.fx-candles-b span:nth-child(2) { height: 72px; animation: candlePulse 7.1s ease-in-out infinite .4s; }
.fx-candles-b span:nth-child(3) { height: 58px; animation: candlePulse 5.9s ease-in-out infinite .9s; }
.fx-candles-b span:nth-child(4) { height: 92px; animation: candlePulse 6.7s ease-in-out infinite .3s; }
.fx-candles-b span:nth-child(5) { height: 76px; animation: candlePulse 7.4s ease-in-out infinite .8s; }
.fx-candles-b span:nth-child(6) { height: 108px; animation: candlePulse 5.6s ease-in-out infinite 1.1s; }

.fx-particles {
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(255,255,255,.35) 0 1.2px, transparent 1.4px),
    radial-gradient(circle at 24% 68%, rgba(90,132,255,.3) 0 1.4px, transparent 1.6px),
    radial-gradient(circle at 58% 18%, rgba(255,191,82,.28) 0 1.3px, transparent 1.5px),
    radial-gradient(circle at 74% 46%, rgba(255,255,255,.22) 0 1.1px, transparent 1.3px),
    radial-gradient(circle at 88% 28%, rgba(90,132,255,.28) 0 1.5px, transparent 1.7px),
    radial-gradient(circle at 82% 74%, rgba(255,191,82,.24) 0 1.3px, transparent 1.5px);
  transform: translate3d(calc(var(--mx) * .02), calc(var(--my) * .02), 20px);
  animation: fxDrift 18s linear infinite;
  opacity: .85;
}

@keyframes fxFloatA {
  0%,100% { transform: translate3d(calc(var(--mx) * -.04), calc(var(--my) * -.03), 80px) scale(1); }
  50% { transform: translate3d(calc(var(--mx) * -.02), calc(var(--my) * -.05 - 12px), 110px) scale(1.08); }
}

@keyframes fxFloatB {
  0%,100% { transform: translate3d(calc(var(--mx) * .05), calc(var(--my) * -.02), 90px) scale(1); }
  50% { transform: translate3d(calc(var(--mx) * .025), calc(var(--my) * -.045 - 14px), 130px) scale(1.06); }
}

@keyframes fxSpin {
  from { transform: rotateX(74deg) rotateZ(12deg) translate3d(calc(var(--mx) * .03), calc(var(--my) * .03), 40px); }
  to { transform: rotateX(74deg) rotateZ(372deg) translate3d(calc(var(--mx) * .03), calc(var(--my) * .03), 40px); }
}

@keyframes fxSpinReverse {
  from { transform: rotateX(74deg) rotateZ(-18deg) translate3d(calc(var(--mx) * -.03), calc(var(--my) * .02), 40px); }
  to { transform: rotateX(74deg) rotateZ(-378deg) translate3d(calc(var(--mx) * -.03), calc(var(--my) * .02), 40px); }
}

@keyframes fxPulse {
  0%,100% { opacity: .5; }
  50% { opacity: .95; }
}

@keyframes fxDrift {
  0% { transform: translate3d(calc(var(--mx) * .02), calc(var(--my) * .02), 20px) translateY(0); }
  50% { transform: translate3d(calc(var(--mx) * .03), calc(var(--my) * .015), 20px) translateY(-10px); }
  100% { transform: translate3d(calc(var(--mx) * .02), calc(var(--my) * .02), 20px) translateY(0); }
}

@keyframes candlePulse {
  0%,100% { transform: scaleY(1) translateY(0); opacity: .85; }
  50% { transform: scaleY(1.08) translateY(-4px); opacity: 1; }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1.03fr) minmax(360px,460px);
  gap: 32px;
  align-items: start;
}

.hero h1 .crypto,
.hero h1 .forex,
.hero h1 .commodities {
  background: linear-gradient(90deg, #fff, #999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 .crypto {
  background: linear-gradient(135deg, #f7931a 0%, #ffae4d 30%, #ffd966 60%, #f7931a 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerElite 8s ease infinite;
}

.hero h1 .forex {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 30%, #4a7db5 60%, #1e3c72 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerElite 10s ease infinite;
}

.hero h1 .commodities {
  background: linear-gradient(135deg, #c9a227 0%, #e6b422 30%, #f5d76e 60%, #c9a227 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerElite 9s ease infinite;
}

@keyframes shimmerElite {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-copy { padding-top: 26px; }

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 26px 0 20px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: #dbe2f2;
  font-size: 14px;
}

.proof-chip strong { color: #fff; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 14px;
}

.stat-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(22,25,39,.92), rgba(15,17,26,.96));
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.hero-side { display: grid; gap: 16px; }

.form-card, .market-indicators, .info-card, .table-card, .ai-card, .news-card,
.step-card, .faq-list details, .footer-risk, .footer-contact, .plan-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(21,24,39,.94), rgba(13,15,24,.98));
  box-shadow: var(--shadow);
}

.form-card, .market-indicators, .table-card, .ai-card, .news-card, .footer-risk, .footer-contact {
  border-radius: 28px;
}

.form-card {
  padding: 22px;
  position: sticky;
  top: 86px;
}

.form-head p { margin-top: 6px; }

.lead-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #e5ebf8;
}

input, select, textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: var(--text);
}

input:focus, select:focus, textarea:focus {
  border-color: rgba(255,211,122,.48);
  box-shadow: 0 0 0 4px rgba(255,211,122,.1);
}

input.error, select.error, textarea.error {
  border-color: var(--danger);
}

.error-message {
  color: var(--danger);
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.error-message.show { display: block; }

.form-note, .form-status {
  font-size: 12px;
  color: var(--muted);
}

.form-status.success { color: var(--green); }
.form-status.error { color: var(--danger); }

.ticker-wrap {
  margin-top: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  padding: 16px 0;
  animation: ticker 80s linear infinite; /* slower */
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.ticker-item .label { color: #dfe6f7; }
.ticker-item .price { color: var(--muted); }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.section {
  padding: 88px 0;
  position: relative;
}

.section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.plan-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 22px;
  display: grid;
  gap: 16px;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #ff9b2f, #ff4b6e);
}

.plan-card.featured {
  transform: translateY(-8px);
  border-color: rgba(255,191,82,.36);
}

.plan-name {
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffb87a;
  letter-spacing: .08em;
}

.plan-price {
  font-size: 40px;
  line-height: 1;
  letter-spacing: -.04em;
}

.plan-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 10px;
  min-height: 220px;
}

.comparison-section {
  margin: 48px 0;
  overflow-x: auto;
}

.comparison-section h3 {
  margin-bottom: 24px;
  text-align: center;
}

.comparison-table {
  min-width: 800px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child { border-bottom: none; }

.comparison-row.header {
  background: rgba(255, 191, 82, 0.1);
  font-weight: 700;
  color: var(--gold);
}

.feature-cell, .plan-cell { padding: 16px 12px; text-align: left; }

.plan-cell {
  text-align: center;
  border-left: 1px solid var(--line);
}

.comparison-row:hover { background: rgba(255, 255, 255, 0.02); }

.market-panel { display: grid; gap: 18px; }

.tv-card {
  padding: 12px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(20,22,36,.96), rgba(13,14,22,.99));
  box-shadow: var(--shadow);
}

.tv-chart {
  height: 560px;
  border-radius: 22px;
  overflow: hidden;
  background: #10131d;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.info-card { padding: 24px; border-radius: 24px; }

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag-row span {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  color: var(--text);
}

.table-card { padding: 20px; }

.table-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.table-wrap { overflow: auto; }

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

th, td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .06em;
  color: #d9e2f5;
}

tbody tr:nth-child(odd) { background: rgba(255,255,255,.02); }
tbody tr:hover { background: rgba(90,132,255,.08); }
td { color: #f1f4fb; }

.platform-grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 28px;
  align-items: center;
}

.bullet-list {
  margin: 18px 0 24px;
  padding-left: 18px;
  color: var(--muted);
}

.bullet-list li + li { margin-top: 10px; }

.platform-preview {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
}

.preview-header {
  background: #1a1d2e;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}

.preview-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.preview-dot.red { background: #ff5f56; }
.preview-dot.yellow { background: #ffbd2e; }
.preview-dot.green { background: #27c93f; }

.preview-title {
  color: var(--muted);
  font-size: 13px;
  margin-left: 8px;
}

.preview-content {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.preview-frame:hover .preview-image {
  transform: scale(1.05);
}

.preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
  padding: 20px;
}

.preview-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.preview-stat {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.2);
}

.preview-stat span {
  font-size: 12px;
  color: var(--muted);
  margin-right: 8px;
}

.preview-stat strong { font-size: 14px; }

.funding-strip {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(5px);
}

.payment-icons-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.payment-icon-wrapper {
  flex: 0 0 auto;
  width: 140px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.payment-icon-wrapper:hover {
  transform: translateY(-4px) scale(1.04);
  border-color: var(--gold);
}

.ai-news-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 18px;
}

.ai-card, .news-card { padding: 24px; }

.ai-points {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.ai-point {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
}

.ai-point strong { display: block; margin-bottom: 6px; }

.news-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.news-refresh {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

.news-list { display: grid; gap: 12px; }

.news-item {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
}

.news-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.news-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  position: relative;
  padding: 22px;
  border-radius: 26px;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  padding: 1px;
  background: linear-gradient(135deg, #ffab33, #ff4271);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffab33, #ff4271);
  color: #fff;
  font-weight: 900;
  margin-bottom: 14px;
}

.carousel-container {
  margin: 48px 0;
}

.carousel {
  overflow: hidden;
  margin: 24px 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  padding: 0 10px;
}

@media (min-width: 768px) {
  .carousel-slide { flex: 0 0 50%; }
}
@media (min-width: 1024px) {
  .carousel-slide { flex: 0 0 33.333%; }
}

.story-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.story-rating {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: 4px;
}

.story-text {
  flex: 1;
  font-style: italic;
  color: #e5ebf8;
  margin-bottom: 16px;
  line-height: 1.6;
}

.story-author {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.story-author strong {
  display: block;
  color: var(--text);
}

.story-author span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.story-plan {
  display: inline-block !important;
  margin-top: 8px;
  padding: 4px 10px;
  background: rgba(255, 191, 82, 0.1);
  border: 1px solid rgba(255, 191, 82, 0.3);
  border-radius: 20px;
  font-size: 11px !important;
  color: var(--gold) !important;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
}

.carousel-btn:hover {
  background: var(--surface-2);
  border-color: var(--gold);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.5;
  cursor: pointer;
}

.dot.active {
  opacity: 1;
  background: var(--gold);
  transform: scale(1.2);
}

.video-section {
  margin: 48px 0;
  text-align: center;
}

.video-container {
  max-width: 800px;
  margin: 24px auto;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 191, 82, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.video-thumbnail:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--gold);
}

.video-iframe {
  width: 100%;
  height: 100%;
}

.brochure-section { margin: 32px 0; }

.brochure-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(90, 132, 255, 0.1), rgba(255, 191, 82, 0.1));
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  flex-wrap: wrap;
}

.brochure-icon { font-size: 40px; }
.brochure-card h4 { margin-bottom: 4px; }
.brochure-card p { margin: 0; }

.risk-expander {
  margin: 24px 0;
  border: 1px solid rgba(255, 191, 82, 0.3);
  border-radius: 16px;
  background: rgba(255, 191, 82, 0.05);
}

.risk-trigger {
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.chevron {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.risk-expander.expanded .chevron { transform: rotate(180deg); }

.risk-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.risk-expander.expanded .risk-content { max-height: 500px; }

.risk-content-inner {
  padding: 0 20px 20px 20px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 191, 82, 0.2);
}

.risk-content-inner h4 {
  color: var(--text);
  margin-bottom: 12px;
  font-size: 18px;
}

.risk-content-inner ul {
  margin: 12px 0;
  padding-left: 20px;
}

.risk-content-inner li {
  margin-bottom: 8px;
  color: #d1d9f0;
}

.risk-footer {
  margin-top: 16px;
  font-style: italic;
  color: var(--gold-2);
}

.gdpr-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 16px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gdpr-banner.show { transform: translateY(0); }

.gdpr-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.gdpr-buttons { display: flex; gap: 12px; }

.exit-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.exit-popup.show { display: flex; }

.exit-popup-content {
  max-width: 500px;
  width: 90%;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  padding: 32px;
  position: relative;
  text-align: center;
}

.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

.faq-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.faq-list { display: grid; gap: 12px; }

.faq-list details {
  border-radius: 22px;
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  padding-right: 28px;
  position: relative;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  line-height: 1;
}

.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin-top: 12px; }

.footer { padding: 34px 0 110px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 18px;
}

.footer-risk, .footer-contact { padding: 24px; }
.footer-risk h3, .footer-contact h3 { margin-bottom: 12px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.pdf-download-btn {
  background: rgba(255,191,82,0.15);
  border: 1px solid rgba(255,191,82,0.4);
  border-radius: 60px;
  padding: 6px 16px;
  font-weight: 700;
  font-size: 13px;
  color: #ffbf52;
  cursor: pointer;
  transition: 0.2s;
  font-family: inherit;
}
.pdf-download-btn:hover {
  background: rgba(255,191,82,0.25);
  transform: translateY(-1px);
}

.capacity-card {
  margin: 18px 0 6px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,191,82,.22);
  background: radial-gradient(circle at 20% 20%, rgba(255,191,82,.15), transparent 45%),
              linear-gradient(180deg, rgba(28,20,18,.96), rgba(12,13,22,.98));
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,.34);
}
.capacity-label {
  color: #f7c464;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.capacity-number {
  margin: 12px 0 8px;
  padding: 0 8px;
  font-size: clamp(56px, 9vw, 84px);
  line-height: .9;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 2px;
}
.capacity-subtext {
  color: #cbd3e7;
  font-size: 15px;
}

.whatsapp-fixed {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(180deg, #34d16f, #20b958);
  box-shadow: 0 18px 38px rgba(0,0,0,.32);
  z-index: 60;
  transition: transform .22s ease, box-shadow .22s ease;
}
.whatsapp-fixed:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 22px 46px rgba(0,0,0,.36); }
.whatsapp-fixed .float-icon { width: 28px; height: 28px; }

@media (max-width: 1200px) {
  .plan-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1080px) {
  .hero-grid, .platform-grid, .ai-news-grid, .faq-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats, .market-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .form-card { position: static; }
}

@media (max-width: 820px) {
  .topbar-links a:first-child { display: none; }
  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(10,11,19,.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 16px;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-actions .btn-ghost,
  .header-actions .btn-primary { display: none; }
  .hero { padding-top: 26px; }
  .hero-grid { grid-template-columns: 1fr; }
  .field-grid, .hero-stats, .market-grid, .plan-grid, .steps-grid,
  .footer-bottom, .chat-quick {
    grid-template-columns: 1fr;
  }
  .proof-row, .hero-actions { flex-direction: column; }
  .hero-actions .btn, .mobile-cta .btn { width: 100%; }
  .tv-chart { height: 420px; }
}

@media (max-width: 768px) {
  .float-wrap { right: 14px; bottom: 96px; gap: 10px; }
  .float-stack { gap: 10px; }
  .float-btn { width: 54px; height: 54px; }
  .float-btn.primary { width: 58px; height: 58px; }
  .float-icon { width: 23px; height: 23px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 20px), var(--container)); }
  .topbar { display: none; }
  .section { padding: 66px 0; }
  h1 { font-size: clamp(38px, 11vw, 56px); max-width: none; }
  .lead { font-size: 18px; }
  .form-card, .ai-card, .news-card, .table-card, .footer-risk, .footer-contact {
    padding: 18px;
    border-radius: 22px;
  }
  .plan-card, .step-card, .faq-list details, .info-card { border-radius: 22px; }
  .whatsapp-fixed { width: 58px; height: 58px; right: 14px; bottom: 14px; }
  .footer { padding-bottom: 98px; }
  .brochure-card { flex-direction: column; text-align: center; }
  .gdpr-content { flex-direction: column; text-align: center; }
  .funding-strip { padding: 24px 0; }
  .payment-icons-center { gap: 12px; }
  .payment-icon-wrapper { width: 58px; height: 38px; border-radius: 8px; }
}

@media (max-width: 480px) {
  .payment-icons-center { gap: 8px; }
  .payment-icon-wrapper { width: 52px; height: 34px; }
}

/* Phone field adjustments – no prefix dropdown needed */
.phone-combined { display: none; } /* old style removed */