: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;
}

.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 h1 span {
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 0 transparent);
}

.hero h1 span:hover {
  filter: drop-shadow(0 0 12px currentColor);
  transform: scale(1.02);
  display: inline-block;
}

.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;
}

.field-grid.single { grid-template-columns: 1fr; }

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);
}

textarea {
  resize: vertical;
  min-height: 110px;
}

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; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-note, .form-status {
  font-size: 12px;
  color: var(--muted);
}

.form-status.success { color: var(--green); }
.form-status.error { color: var(--danger); }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffbf52' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
}

select option {
  background-color: var(--surface);
  color: var(--text);
  padding: 12px;
}

select option:hover,
select option:focus,
select option:active,
select option:checked {
  background: linear-gradient(135deg, var(--gold), var(--gold-2)) !important;
  color: #0a0b13 !important;
}

select option[value=""] {
  color: var(--muted);
  font-style: italic;
}

.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 34s linear infinite;
}

.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);
  transition: all 0.2s ease;
}

.tag-row span:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,.2);
}

.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-frame { width: 100%; }

.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);
  -webkit-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;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  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, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
}

.payment-icon-wrapper:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  border-color: var(--gold);
}

.payment-icon-wrapper svg,
.payment-icon-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.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 16px 14px;
  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;
  position: relative;
}

.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;
  transition: 0.2s ease;
}

.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;
  transition: 0.2s ease;
}

.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;
}

.float-wrap {
  position: fixed;
  right: 18px;
  bottom: 110px;
  z-index: 60;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.float-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(21,24,39,.96), rgba(13,15,24,.98));
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
  color: var(--text);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: var(--line-strong);
  box-shadow: 0 12px 28px rgba(0,0,0,.45);
}

.float-btn.primary {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ff9b2f, #ff4b6e);
  border-color: transparent;
  color: #fff;
}

.float-btn.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
}

.float-btn.telegram:hover {
  background: #0088cc;
  border-color: #0088cc;
}

.float-btn.chat:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.float-icon { width: 26px; height: 26px; }

.float-label {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
}

.chatbot {
  position: fixed;
  right: 22px;
  bottom: 180px;
  z-index: 61;
  width: min(390px, calc(100% - 24px));
  display: none;
}

.chatbot.open { display: block; }

.chat-shell {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(21,24,39,.98), rgba(13,15,24,.995));
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
}

.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.chat-head small {
  display: block;
  color: var(--muted);
}

.chat-close {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
}

.chat-body {
  max-height: 360px;
  overflow: auto;
  display: grid;
  gap: 12px;
  padding: 16px;
}

.bubble {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 14px;
}

.bubble.bot {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: #eef3ff;
}

.bubble.user {
  background: rgba(255,191,82,.14);
  border: 1px solid var(--line-strong);
  margin-left: auto;
}

.chat-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 16px 16px;
}

.quick-btn {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: #e7eefc;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 0 16px 16px;
}

.chat-form input { min-height: 50px; }

.mobile-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 59;
  gap: 10px;
  padding: 10px;
  border-radius: 22px;
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  background: rgba(10,11,19,.84);
  box-shadow: 0 20px 40px rgba(0,0,0,.32);
}

.mobile-cta .btn {
  flex: 1;
  min-width: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-2);
  background: rgba(255,191,82,.08);
  border: 1px solid var(--line-strong);
}

@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; }
  .float-wrap { right: 10px; bottom: 94px; gap: 8px; }
  .float-btn { width: 48px; height: 48px; }
  .float-btn.primary { width: 52px; height: 52px; }
  .float-icon { width: 21px; height: 21px; }
  .float-label { display: none; }
  .float-btn:hover { transform: none; }
  .chatbot { right: 12px; bottom: 170px; width: calc(100% - 24px); }
  .mobile-cta { display: flex; }
  .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; }
}