/* ─── RISK BANNER ─── */
.risk-banner {
  position: relative;
  z-index: 200;
  background: #1a0e00;
  border-bottom: 1px solid rgba(212,160,23,.3);
  padding: 70px 48px 12px 20px;
  font-size: .76rem;
  color: #c8a84b;
  line-height: 1.4;
  text-align: center;
}
.risk-banner strong { color: var(--gold-light); }
.risk-banner__close {
  position: absolute;
  right: 14px;
  top: 78px;
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 4px;
}
@media (max-width: 600px) {
  .risk-banner { padding-top: 62px; }
  .risk-banner__close { top: 70px; }
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #D4A017;
  --gold-light: #F5C842;
  --gold-dim:   #8B6914;
  --black:      #0A0A0B;
  --dark:       #111114;
  --dark2:      #18181D;
  --dark3:      #222228;
  --border:     rgba(212,160,23,.18);
  --text:       #E8E8EC;
  --muted:      #888;
  --white:      #fff;
  --radius:     14px;
  --radius-sm:  8px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ─── TYPOGRAPHY ─── */
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 900; line-height: 1.1; letter-spacing: -.03em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2; letter-spacing: -.02em; }
h3 { font-size: 1.15rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--muted); font-size: .97rem; }

.gold-text { color: var(--gold-light); }

/* ─── LAYOUT ─── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section--dark { background: var(--dark); }

.section__header { text-align: center; margin-bottom: 56px; }
.section__header h2 { margin: 8px 0 16px; }
.section__header p  { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

.section__tag {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,160,23,.07);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #000;
  box-shadow: 0 4px 24px rgba(212,160,23,.3);
}
.btn--gold:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 8px 32px rgba(212,160,23,.45); }
.btn--ghost {
  background: rgba(255,255,255,.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.12);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); }
.btn--outline {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid var(--gold);
}
.btn--outline:hover { background: rgba(212,160,23,.1); }
.btn--lg   { padding: 14px 28px; font-size: 1rem; border-radius: 10px; }
.btn--sm   { padding: 8px 18px; font-size: .85rem; }
.btn--full { width: 100%; justify-content: center; padding: 13px; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 250;
  padding: 16px 0;
  background: rgba(10,10,11,.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(10,10,11,.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__logo { display: flex; align-items: center; gap: 0; font-family: 'Orbitron', sans-serif; font-size: 1.4rem; font-weight: 900; }
.logo-sonic { color: var(--white); }
.logo-ai    { color: var(--gold-light); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav__links a:not(.btn) {
  padding: 8px 12px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}
.nav__links a:not(.btn):hover { color: var(--text); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── LOGO ─── */
.site-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: block;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,160,23,.12) 0%, transparent 70%), var(--black);
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,160,23,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,23,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero__particles { position: absolute; inset: 0; pointer-events: none; }

.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212,160,23,.1);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .05em;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.hero__title { max-width: 800px; }

.hero__subtitle {
  max-width: 560px;
  font-size: 1.1rem;
  color: #aaa;
}
.hero__subtitle strong { color: var(--gold-light); font-weight: 600; }

.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 16px;
  padding: 20px 32px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.stat { display: flex; flex-direction: column; align-items: center; padding: 0 28px; gap: 2px; }
.stat__value { font-family: 'Orbitron', sans-serif; font-size: 1.4rem; font-weight: 700; }
.stat__label { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.stat__divider { width: 1px; height: 40px; background: var(--border); }

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── HERO LIVE RESULTS ─── */
.hero__live-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.live-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.live-cards {
  display: flex;
  gap: 12px;
}
.live-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 28px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 120px;
}
.live-card--accent { border-color: var(--gold-dim); background: rgba(212,160,23,.06); }
.live-card__badge {
  font-family: 'Orbitron', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .1em;
}
.live-card__value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold-light);
}
.live-card__label { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.live-disclaimer { font-size: .7rem; color: var(--muted); text-align: center; max-width: 380px; }

/* ─── ACCOUNT CARDS ─── */
.accounts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}
.account-card {
  position: relative;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--transition), transform var(--transition);
}
.account-card:hover { border-color: var(--gold-dim); transform: translateY(-4px); }
.account-card--featured {
  border-color: var(--gold);
  background: rgba(212,160,23,.04);
}
.account-card__popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 99px;
  white-space: nowrap;
}
.account-card__badge {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: .9rem;
  font-weight: 900;
  color: var(--muted);
}
.account-card__badge--accent { border-color: var(--gold); color: var(--gold-light); background: rgba(212,160,23,.1); }
.account-card h3 { color: var(--text); font-size: 1.3rem; margin: 0; }
.account-card__tagline { font-size: .82rem; color: var(--gold); font-weight: 600; margin: -12px 0; }
.account-card__stat {
  padding: 16px;
  background: rgba(212,160,23,.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.account-card__stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
}
.account-card__stat-label { font-size: .72rem; color: var(--muted); }
.account-card__features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.account-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--text);
}
.account-card__features li svg { color: var(--gold-light); flex-shrink: 0; }
.accounts-disclaimer {
  text-align: center;
  font-size: .75rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── HERO MIN DEPOSIT LINE ─── */
.hero__min-deposit {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: .82rem;
  color: var(--muted);
  margin-top: -8px;
}
.hero__min-deposit strong { color: var(--gold-light); }
.hero__min-deposit svg   { color: #4ade80; }

/* ─── ACCOUNT CARD MIN DEPOSIT ─── */
.account-card__min {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(212,160,23,.07);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.account-card__min-label { font-size: .78rem; color: var(--muted); }
.account-card__min-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* ─── SOCIAL PROOF BAR ─── */
.social-proof-bar {
  background: linear-gradient(90deg, rgba(212,160,23,.08) 0%, rgba(212,160,23,.14) 50%, rgba(212,160,23,.08) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.social-proof-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.social-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 40px;
  text-align: center;
}
.social-proof-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}
.social-proof-label { font-size: .82rem; color: var(--muted); max-width: 200px; }
.social-proof-divider { width: 1px; height: 48px; background: var(--border); }

/* ─── COMPOUND GROWTH SECTION ─── */
.compound-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.compound-text { display: flex; flex-direction: column; gap: 28px; }
.compound-point { display: flex; gap: 16px; align-items: flex-start; }
.compound-point__icon { font-size: 1.6rem; flex-shrink: 0; }
.compound-point h4 { color: var(--text); margin-bottom: 6px; }
.compound-point p  { font-size: .9rem; line-height: 1.65; }

.compound-table-wrap {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.compound-table-header {
  padding: 16px 20px;
  background: rgba(212,160,23,.07);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.compound-table-header span { font-size: .88rem; font-weight: 700; color: var(--text); }
.compound-table-note { font-size: .72rem !important; color: var(--muted) !important; font-weight: 400 !important; }

.compound-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.compound-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.compound-table td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  color: var(--text);
}
.compound-table tr:last-child td { border-bottom: none; }
.compound-table__highlight { background: rgba(212,160,23,.06); }
.compound-table__highlight td { font-weight: 700; }
.green  { color: #4ade80; font-weight: 600; }
.bold   { font-weight: 800; }

.compound-table__disclaimer {
  padding: 12px 16px;
  font-size: .7rem;
  color: var(--muted);
  line-height: 1.5;
  border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
  .compound-wrap { grid-template-columns: 1fr; }
  .social-proof-divider { display: none; }
  .social-proof-item { padding: 12px 20px; }
}

/* ─── PERFORMANCE CARDS ─── */
.perf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}
.perf-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.perf-card--highlight {
  border-color: var(--gold-dim);
  background: rgba(212,160,23,.04);
}
.perf-card__week {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.perf-card__results { display: flex; gap: 16px; }
.perf-result {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.perf-result__badge {
  font-family: 'Orbitron', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--muted);
}
.perf-result__badge--accent { color: var(--gold-light); }
.perf-result__value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #4ade80;
}
.perf-card__note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: #4ade80;
  font-weight: 600;
}
.perf-quote {
  font-size: .95rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}
.perf-quote__attr { font-size: .78rem; color: var(--gold); font-weight: 600; }
.perf-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(255,165,0,.06);
  border: 1px solid rgba(255,165,0,.2);
  border-radius: var(--radius-sm);
  color: #c8a84b;
}
.perf-disclaimer svg { flex-shrink: 0; margin-top: 2px; }
.perf-disclaimer p { font-size: .82rem; color: #c8a84b; line-height: 1.6; margin: 0; }
.perf-disclaimer strong { color: var(--gold-light); }

/* ─── FOOTER TAGLINE ─── */
.footer__tagline {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ─── QR CARD SUB ─── */
.qr-card__sub { font-size: .8rem; color: var(--muted); }

/* ─── STEPS ─── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.step {
  flex: 1 1 240px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--dark2);
  transition: border-color var(--transition), transform var(--transition);
}
.step:hover { border-color: var(--gold-dim); transform: translateY(-4px); }
.step__number {
  font-family: 'Orbitron', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .12em;
}
.step__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(212,160,23,.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}
.step h3 { color: var(--text); }
.step p   { font-size: .9rem; }
.step__arrow {
  font-size: 1.5rem;
  color: var(--gold-dim);
  padding: 0 8px;
  align-self: center;
  flex-shrink: 0;
}

/* ─── GOLD GRID ─── */
.gold-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.gold-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--dark2);
  transition: border-color var(--transition), transform var(--transition);
}
.gold-card:hover { border-color: var(--gold-dim); transform: translateY(-3px); }
.gold-card__icon { font-size: 2rem; margin-bottom: 16px; }
.gold-card h3 { color: var(--text); margin-bottom: 10px; }

/* ─── FEATURES ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.feature-card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--dark2);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.feature-card:hover { border-color: var(--gold-dim); transform: translateY(-3px); }
.feature-card__line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover .feature-card__line { opacity: 1; }
.feature-card__icon { font-size: 1.8rem; margin-bottom: 16px; }
.feature-card h3 { color: var(--text); margin-bottom: 10px; }

/* ─── PLATFORM ─── */
.platform-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: center;
}
.platform-desc { font-size: 1rem; color: #aaa; margin: 16px 0 28px; }
.platform-list { display: flex; flex-direction: column; gap: 12px; }
.platform-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--text);
}
.platform-list li svg { color: var(--gold-light); flex-shrink: 0; }

.platform-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.platform-card__header {
  padding: 20px 24px;
  background: #000;
  display: flex;
  align-items: center;
  gap: 10px;
}
.platform-brand {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
}
.platform-badge {
  font-size: .85rem;
  font-weight: 700;
  color: #ADFF2F;
  padding: 2px 10px;
  background: rgba(173,255,47,.1);
  border-radius: 4px;
  border: 1px solid rgba(173,255,47,.2);
}
.platform-card__body { padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.platform-stat { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.platform-stat:last-child { border-bottom: none; padding-bottom: 0; }
.platform-stat__label { font-size: .88rem; color: var(--muted); }
.platform-stat__value { font-weight: 700; font-size: .92rem; }
.platform-card .btn { margin: 0 24px 24px; width: calc(100% - 48px); }

/* ─── PARTNER ─── */
.partner-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
}
.partner-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.partner-card__avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(212,160,23,.1);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}
.partner-card h3 { color: var(--text); font-size: 1.25rem; }
.partner-card__role { font-size: .82rem; color: var(--gold); font-weight: 600; }
.partner-card__ids {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .8rem;
  color: var(--muted);
}
.partner-card__ids strong { color: var(--text); }
.partner-card__bio { font-size: .88rem; line-height: 1.6; }
.partner-card__contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--gold-light);
  transition: color var(--transition);
}
.partner-card__contact:hover { color: var(--gold); }

.partner-benefits { display: flex; flex-direction: column; gap: 24px; margin-top: 8px; }
.partner-benefit { display: flex; gap: 16px; align-items: flex-start; }
.partner-benefit__icon { font-size: 1.5rem; flex-shrink: 0; }
.partner-benefit h4 { color: var(--text); margin-bottom: 4px; }

/* ─── GET STARTED / QR ─── */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 380px));
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}
.qr-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.qr-card__label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Actual QR image */
.qr-image {
  width: 220px;
  height: 220px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
  padding: 10px;
}

/* Placeholder shown when no image provided */
.qr-placeholder {
  width: 220px;
  height: 220px;
  border-radius: 12px;
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,160,23,.03);
}
.qr-placeholder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}
.qr-placeholder__inner svg { color: var(--gold-dim); }
.qr-placeholder__inner p { font-size: .85rem; font-weight: 600; color: var(--text); margin: 0; }
.qr-placeholder__inner span { font-size: .75rem; line-height: 1.4; }

.qr-card__desc { font-size: .85rem; max-width: 260px; }
.qr-card__desc strong { color: var(--text); }

.cta-direct { text-align: center; }
.cta-direct > p { font-size: .9rem; margin-bottom: 16px; }
.url-chips { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.url-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.url-chip__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}
.url-chip code {
  font-size: .85rem;
  color: var(--text);
  font-family: 'Courier New', monospace;
}

/* ─── QR CENTER ─── */
.qr-center {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.qr-card--large {
  max-width: 340px;
  width: 100%;
  gap: 20px;
}
.qr-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  width: 248px;
  height: 248px;
}
.qr-wrap canvas { display: block; }

/* ─── FAQ ─── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--gold-dim); }
.faq-item summary {
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 20px 18px; font-size: .9rem; }

/* ─── FOOTER ─── */
.footer { background: #000; padding: 64px 0 32px; border-top: 1px solid var(--border); }
.footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand { max-width: 320px; }
.footer__brand .nav__logo { margin-bottom: 14px; display: inline-flex; }
.footer__brand p { font-size: .88rem; }
.footer__links { display: flex; gap: 56px; }
.footer__col h4 { color: var(--text); margin-bottom: 16px; font-size: .88rem; text-transform: uppercase; letter-spacing: .08em; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: .88rem; color: var(--muted); transition: color var(--transition); }
.footer__col a:hover { color: var(--gold-light); }

.footer__disclaimer {
  padding: 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 32px;
}
.footer__disclaimer h4 { font-size: .85rem; margin-bottom: 10px; color: var(--text); }
.footer__disclaimer p { font-size: .78rem; line-height: 1.7; color: var(--muted); }

.footer__bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.footer__bottom p { font-size: .78rem; }

/* ─── TELEGRAM BUTTON ─── */
.btn--tg {
  background: #229ED9;
  color: #fff;
  box-shadow: 0 4px 20px rgba(34,158,217,.35);
}
.btn--tg:hover { filter: brightness(1.12); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(34,158,217,.5); }

/* ─── TELEGRAM JOIN CARD ─── */
.tg-join-card {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 28px 32px;
  background: rgba(34,158,217,.07);
  border: 1px solid rgba(34,158,217,.25);
  border-radius: var(--radius);
  flex-wrap: wrap;
}
.tg-join-card__icon {
  width: 60px; height: 60px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #229ED9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(34,158,217,.4);
}
.tg-join-card__text { flex: 1; min-width: 200px; }
.tg-join-card__text h3 { color: var(--text); margin-bottom: 6px; font-size: 1.1rem; }
.tg-join-card__text p  { font-size: .88rem; line-height: 1.6; }
.tg-join-card__text strong { color: var(--gold-light); }

/* ─── URL CHIP TELEGRAM ─── */
.url-chip--tg {
  background: rgba(34,158,217,.08);
  border-color: rgba(34,158,217,.25);
  text-decoration: none;
  transition: background var(--transition);
}
.url-chip--tg:hover { background: rgba(34,158,217,.16); }
.url-chip--tg .url-chip__label { color: #229ED9; }
.url-chip--tg code { color: var(--text); }

/* ─── FOOTER TELEGRAM LINK ─── */
.footer__tg-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #229ED9 !important;
}
.footer__tg-link:hover { color: #5bb8e8 !important; }

/* ─── FLOATING TELEGRAM BUTTON ─── */
.tg-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #229ED9;
  color: #fff;
  border-radius: 99px;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(34,158,217,.45);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.tg-float:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(34,158,217,.6); background: #1a8bbf; }
.tg-float__label { white-space: nowrap; }

@media (max-width: 480px) {
  .tg-float__label { display: none; }
  .tg-float { padding: 14px; border-radius: 50%; bottom: 20px; right: 20px; }
  .tg-join-card { flex-direction: column; align-items: flex-start; }
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav__burger { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    background: rgba(10,10,11,.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }
  .nav__links.open { display: flex; }
  .nav__links a:not(.btn) { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--border); }
  .nav__links .btn { width: 100%; justify-content: center; }

  .platform-wrap,
  .partner-wrap { grid-template-columns: 1fr; }
  .partner-wrap { grid-template-rows: auto auto; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__links { flex-wrap: wrap; gap: 32px; }

  .steps { flex-direction: column; align-items: center; }
  .step__arrow { transform: rotate(90deg); }

  .hero__stats { gap: 8px; }
  .stat { padding: 8px 16px; }
  .stat__divider { display: none; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero__inner { padding-top: 80px; }
  .hero__cta { flex-direction: column; align-items: center; }
  .hero__cta .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ─── COUNTDOWN BAR ─── */
.countdown-bar {
  background: #130e00;
  border-bottom: 1px solid rgba(212,160,23,.3);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: var(--gold-light);
  text-align: center;
  position: sticky;
  top: 60px;
  z-index: 199;
}
.countdown-bar__label { font-weight: 600; color: var(--muted); }
.countdown-bar__suffix { color: var(--muted); font-style: italic; }
.countdown-digits {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Courier New', 'Courier', monospace;
  font-weight: 700;
}
.countdown-digits span {
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold-light);
  min-width: 2ch;
  text-align: center;
  background: rgba(212,160,23,.1);
  padding: 2px 6px;
  border-radius: 4px;
}
.countdown-digits em {
  font-style: normal;
  font-size: .72rem;
  color: var(--muted);
  margin-right: 4px;
}
@media (max-width: 600px) {
  .countdown-bar { gap: 8px; font-size: .76rem; top: 56px; }
  .countdown-bar__suffix { display: none; }
}

/* ─── LANGUAGE BUTTON ─── */
.lang-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: inherit;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 6px 14px;
  border-radius: 99px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.lang-btn:hover {
  border-color: var(--gold-dim);
  color: var(--gold-light);
  background: rgba(212,160,23,.07);
}

/* ─── TESTIMONIALS ─── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}
.testimonial-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); border-color: var(--gold-dim); border-left-color: var(--gold-light); }
.testimonial-card--team {
  border-left-color: var(--gold-light);
  background: rgba(212,160,23,.04);
}
.testimonial-card__stars {
  display: flex;
  gap: 3px;
}
.testimonial-card__stars span {
  color: var(--gold-light);
  font-size: 1.1rem;
  line-height: 1;
}
.testimonial-card__quote {
  font-size: .95rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.testimonial-card__author strong {
  font-size: .88rem;
  color: var(--gold-light);
}
.testimonial-card__author span {
  font-size: .76rem;
  color: var(--muted);
}
.testimonial-disclaimer {
  text-align: center;
  font-size: .75rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── PROFIT CALCULATOR ─── */
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calc-input-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}
.calc-input-group label strong { color: var(--gold-light); }
.calc-input-prefix {
  display: flex;
  align-items: center;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.calc-input-prefix:focus-within { border-color: var(--gold-dim); }
.calc-prefix {
  padding: 10px 14px;
  background: rgba(212,160,23,.08);
  color: var(--gold-light);
  font-weight: 700;
  font-size: .95rem;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}
.calc-input-group input[type="number"],
.calc-input-group select {
  width: 100%;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
  padding: 10px 14px;
  outline: none;
  transition: border-color var(--transition);
  -moz-appearance: textfield;
}
.calc-input-prefix input[type="number"] {
  border: none;
  border-radius: 0;
  background: transparent;
}
.calc-input-group input[type="number"]:focus,
.calc-input-group select:focus { border-color: var(--gold-dim); }
.calc-input-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.calc-input-group input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: var(--dark3);
  border-radius: 2px;
  outline: none;
  border: none;
  cursor: pointer;
  accent-color: var(--gold);
}
.calc-input-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(212,160,23,.4);
}
.calc-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  color: var(--muted);
  margin-top: 4px;
}

.calc-output {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.calc-output__header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(212,160,23,.04);
}
.calc-output__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.calc-output__value {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.calc-output__profit,
.calc-output__growth {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
  color: var(--muted);
}
.calc-output__profit span:last-child,
.calc-output__growth span:last-child {
  font-weight: 700;
  font-size: .95rem;
}
.calc-table-wrap {
  max-height: 240px;
  overflow-y: auto;
}
.calc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
}
.calc-table th {
  padding: 10px 16px;
  text-align: left;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--dark2);
}
.calc-table td {
  padding: 9px 16px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  color: var(--text);
}
.calc-table tr:last-child td { border-bottom: none; }
.calc-table tr.calc-table__highlight td { background: rgba(212,160,23,.06); font-weight: 700; }
.calc-disclaimer {
  padding: 12px 16px;
  font-size: .7rem;
  color: var(--muted);
  line-height: 1.55;
  border-top: 1px solid var(--border);
}
@media (max-width: 860px) {
  .calc-wrap { grid-template-columns: 1fr; }
}

/* ─── STICKY CTA ─── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: rgba(10,10,11,.97);
  border-top: 2px solid var(--gold);
  backdrop-filter: blur(16px);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  padding: 12px 0;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.sticky-cta__text {
  font-size: .92rem;
  color: var(--text);
}
.sticky-cta__text strong { color: var(--gold-light); }
.sticky-cta__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .sticky-cta__text { font-size: .82rem; }
  .sticky-cta__inner { justify-content: center; text-align: center; }
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  max-width: 380px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
  display: none;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  animation: slideUpIn .4s ease forwards;
}
.cookie-banner.show { display: flex; }
@keyframes slideUpIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner__inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-banner__inner p {
  font-size: .85rem;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}
.cookie-banner__inner p a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__btns {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
@media (max-width: 480px) {
  .cookie-banner { left: 12px; right: 12px; max-width: none; bottom: 12px; }
}

/* ─── FOOTER CONTACT ─── */
.footer__contact {
  padding: 24px;
  background: rgba(212,160,23,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__contact-heading {
  font-size: .92rem;
  color: var(--text) !important;
  font-weight: 500;
  margin: 0;
}
.footer__contact-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .footer__contact { flex-direction: column; align-items: flex-start; }
}

/* ─── LANGUAGE SWITCHER BODY CLASS ─── */
body.lang-hr .en { display: none !important; }
body:not(.lang-hr) .hr { display: none !important; }
