/* =============================================
   GOLD IA BOT — AUTHORITY EDITION
   High-Conversion Premium Sales Page
   ============================================= */

/* ── DESIGN TOKENS ── */
:root {
  --bg-deep: #020203;
  --bg-primary: #060608;
  --bg-elevated: #0B0B0F;
  --bg-surface: #111115;
  --bg-glass: rgba(255,255,255,0.03);
  --bg-glass-strong: rgba(255,255,255,0.06);

  --border-subtle: rgba(255,255,255,0.06);
  --border-medium: rgba(255,255,255,0.10);
  --border-gold: rgba(245,196,0,0.20);
  --border-gold-strong: rgba(245,196,0,0.40);

  --gold-600: #C9A000;
  --gold-500: #F5C400;
  --gold-400: #FFD54F;
  --gold-300: #FFE082;
  --gold-gradient: linear-gradient(135deg, #FFE259 0%, #FFA751 50%, #F5A623 100%);
  --gold-gradient-rich: linear-gradient(135deg, #FFD700 0%, #F5C400 30%, #E8A523 60%, #B8860B 100%);
  --gold-glow: 0 0 60px rgba(245,196,0,0.18);
  --gold-glow-strong: 0 0 100px rgba(245,196,0,0.30);

  --green-500: #25D366;
  --green-glow: 0 8px 32px rgba(37,211,102,0.30);
  --red-500: #E53E3E;
  --red-bg: rgba(229,62,62,0.06);
  --red-border: rgba(229,62,62,0.15);

  --text-primary: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.62);
  --text-muted: rgba(255,255,255,0.36);
  --text-dim: rgba(255,255,255,0.18);

  --container-max: 1180px;
  --section-py: 110px;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; cursor: pointer; background: none; color: inherit; }
ul, ol { list-style: none; }

/* ── GLOBAL BACKGROUND MESH ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(245,196,0,0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(245,165,35,0.04) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255,215,0,0.02) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

/* Animated grid background */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,196,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,196,0,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  pointer-events: none;
}

/* ── LAYOUT ── */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* ── SECTION TYPOGRAPHY ── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid var(--border-gold);
  border-radius: 100px;
}

.section-title {
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  margin-bottom: 22px;
}
.section-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 60px;
}
.section-desc strong { color: var(--text-primary); font-weight: 600; }

.section-dark { background: var(--bg-primary); padding: var(--section-py) 0; position: relative; }
.section-elevated { background: var(--bg-elevated); padding: var(--section-py) 0; position: relative; }
.section-deep { background: var(--bg-deep); padding: var(--section-py) 0; position: relative; }

/* ── SCROLL REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(.22,1,.36,1), transform 0.9s cubic-bezier(.22,1,.36,1);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   URGENCY BAR
   ═══════════════════════════════════════════ */
.urgency-bar {
  background: linear-gradient(90deg, #8B1A1A, #C0392B, #E53E3E, #C0392B, #8B1A1A);
  background-size: 200% 100%;
  animation: gradient-slide 8s linear infinite;
  padding: 11px 0;
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid rgba(0,0,0,0.3);
}
.urgency-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  max-width: var(--container-max); margin: 0 auto; padding: 0 24px;
}
.ub-text { font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 0.04em; text-shadow: 0 1px 2px rgba(0,0,0,0.3); }
.ub-timer { display: flex; align-items: center; gap: 4px; }
.t-block {
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px; padding: 4px 10px;
  font-size: 20px; font-weight: 900; color: #fff;
  min-width: 46px; text-align: center;
  font-variant-numeric: tabular-nums;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.t-sep { font-size: 18px; color: rgba(255,255,255,0.7); font-weight: 700; }

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(6,6,8,0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: var(--container-max); margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 40px; height: 40px;
  background: var(--gold-gradient-rich);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(245,196,0,0.35), inset 0 1px 0 rgba(255,255,255,0.4);
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-text .lt1 { font-size: 18px; font-weight: 900; letter-spacing: 0.08em; color: #fff; display: block; line-height: 1; }
.logo-text .lt2 {
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em;
  background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block; margin-top: 3px;
}
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-wpp-btn {
  display: flex; align-items: center; gap: 6px;
  background: var(--green-500); color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 10px 16px; border-radius: var(--r-sm);
  transition: all 0.25s;
  box-shadow: 0 4px 14px rgba(37,211,102,0.25);
}
.nav-wpp-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(37,211,102,0.4); }
.nav-cta-btn {
  background: var(--gold-gradient); color: #000;
  font-size: 13px; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 10px 22px; border-radius: var(--r-sm);
  transition: all 0.25s;
  box-shadow: 0 4px 18px rgba(245,196,0,0.35);
  position: relative; overflow: hidden;
}
.nav-cta-btn::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: shimmer 3s infinite;
}
.nav-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 26px rgba(245,196,0,0.5); }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top, rgba(245,196,0,0.08) 0%, transparent 60%),
    var(--bg-primary);
}
.hero-orb-1, .hero-orb-2, .hero-orb-3 {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px);
}
.hero-orb-1 {
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,196,0,0.18) 0%, transparent 60%);
  animation: float-orb 18s ease-in-out infinite;
}
.hero-orb-2 {
  top: 30%; right: -150px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,165,0,0.10) 0%, transparent 60%);
  animation: float-orb-2 22s ease-in-out infinite alternate;
}
.hero-orb-3 {
  bottom: -150px; left: -100px; width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(184,134,11,0.10) 0%, transparent 60%);
  animation: float-orb-3 25s ease-in-out infinite alternate;
}

/* Floating gold coins */
.gold-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.coin {
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold-gradient-rich);
  box-shadow: 0 0 12px rgba(245,196,0,0.6), inset 0 0 6px rgba(255,255,255,0.4);
  opacity: 0.6;
  animation: coin-fall 14s linear infinite;
}
.coin::before {
  content: '$';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(0,0,0,0.5); font-size: 11px; font-weight: 900;
}
.coin:nth-child(1) { left: 5%; animation-delay: 0s; width: 14px; height: 14px; }
.coin:nth-child(2) { left: 18%; animation-delay: 3s; width: 22px; height: 22px; }
.coin:nth-child(3) { left: 35%; animation-delay: 6s; width: 16px; height: 16px; }
.coin:nth-child(4) { left: 55%; animation-delay: 1.5s; width: 20px; height: 20px; }
.coin:nth-child(5) { left: 72%; animation-delay: 4.5s; width: 15px; height: 15px; }
.coin:nth-child(6) { left: 88%; animation-delay: 2s; width: 18px; height: 18px; }
.coin:nth-child(7) { left: 12%; animation-delay: 7s; width: 12px; height: 12px; }
.coin:nth-child(8) { left: 62%; animation-delay: 8.5s; width: 24px; height: 24px; }
.coin:nth-child(9) { left: 28%; animation-delay: 11s; width: 16px; height: 16px; }
.coin:nth-child(10) { left: 80%; animation-delay: 9.5s; width: 19px; height: 19px; }

.hero-content { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero-left { text-align: left; }
.hero-right { position: relative; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,196,0,0.08);
  border: 1px solid rgba(245,196,0,0.25);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.badge-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 12px var(--green-500);
  animation: pulse-dot 1.8s infinite;
}

.hero-title {
  font-size: clamp(40px, 6.5vw, 76px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 22px;
}
.hero-title span {
  background: var(--gold-gradient-rich);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}
.hero-title span::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 3px; width: 100%;
  background: var(--gold-gradient);
  border-radius: 2px;
  opacity: 0.4;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-sub strong { color: rgba(255,255,255,0.92); font-weight: 600; }

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }

/* Trust line */
.hero-trust {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.trust-avatars { display: flex; }
.trust-avatars img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  object-fit: cover;
  margin-left: -10px;
}
.trust-avatars img:first-child { margin-left: 0; }
.trust-text { font-size: 13px; color: var(--text-secondary); line-height: 1.4; }
.trust-text strong { color: #fff; font-weight: 700; }
.trust-stars { color: var(--gold-500); letter-spacing: 2px; font-size: 13px; }

/* Hero Right — Trading Dashboard Mockup */
.dashboard-mock {
  position: relative;
  background: linear-gradient(180deg, #14141A 0%, #0A0A0F 100%);
  border: 1px solid var(--border-medium);
  border-radius: var(--r-xl);
  padding: 16px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(245,196,0,0.1),
    0 0 60px rgba(245,196,0,0.15);
  transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
  transition: transform 0.6s ease;
}
.dashboard-mock:hover { transform: perspective(1200px) rotateY(-3deg) rotateX(1deg); }

.dash-top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 8px 12px;
  border-bottom: 1px solid var(--border-subtle);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; background: #2a2a30; }
.dash-dots span:first-child { background: #FF5F57; }
.dash-dots span:nth-child(2) { background: #FEBC2E; }
.dash-dots span:nth-child(3) { background: #28C840; }
.dash-title {
  font-size: 11px; color: var(--text-muted);
  font-weight: 600; letter-spacing: 0.1em;
}
.dash-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; color: var(--green-500); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.dash-status::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-500); box-shadow: 0 0 8px var(--green-500);
  animation: pulse-dot 1.5s infinite;
}

.dash-body { padding: 16px 8px 8px; }

.dash-pair {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 14px;
}
.dash-pair-name { font-size: 16px; font-weight: 900; color: #fff; letter-spacing: 0.02em; }
.dash-pair-price {
  font-size: 22px; font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-variant-numeric: tabular-nums;
}
.dash-pair-change {
  font-size: 11px; font-weight: 700;
  background: rgba(37,211,102,0.15);
  color: var(--green-500);
  padding: 3px 8px; border-radius: 4px;
}

.dash-chart-wrap {
  background: #08080C;
  border-radius: 10px;
  padding: 12px;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.dash-chart-wrap svg { width: 100%; height: 100%; }
.dash-chart-overlay {
  position: absolute;
  top: 10px; right: 10px;
  display: flex; gap: 6px;
  z-index: 2;
}
.chart-tab {
  font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 8px; border-radius: 4px;
  background: rgba(255,255,255,0.04); color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}
.chart-tab.active {
  background: rgba(245,196,0,0.12); color: var(--gold-400);
  border-color: var(--border-gold);
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}
.dash-stat {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 10px;
  text-align: left;
}
.dash-stat-lbl {
  font-size: 9px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700;
  margin-bottom: 4px;
}
.dash-stat-val {
  font-size: 15px; font-weight: 800; color: #fff;
  font-variant-numeric: tabular-nums;
}
.dash-stat-val.up { color: var(--green-500); }
.dash-stat-val.gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Floating profit ticker */
.profit-ticker {
  position: absolute;
  top: 30px; left: -30px;
  background: linear-gradient(135deg, #0F1A0F 0%, #0A140A 100%);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 20px rgba(37,211,102,0.15);
  animation: float-y 4s ease-in-out infinite;
  z-index: 3;
}
.profit-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(37,211,102,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.profit-text { line-height: 1.2; }
.profit-text .pt1 { font-size: 10px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.profit-text .pt2 { font-size: 18px; font-weight: 900; color: var(--green-500); font-variant-numeric: tabular-nums; }

/* Floating IA badge */
.ia-badge {
  position: absolute;
  bottom: 20px; right: -25px;
  background: linear-gradient(135deg, #1A1306 0%, #0A0A0F 100%);
  border: 1px solid var(--border-gold-strong);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 20px rgba(245,196,0,0.2);
  animation: float-y 5s ease-in-out infinite reverse;
  z-index: 3;
}
.ia-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 16px rgba(245,196,0,0.4);
}
.ia-text { line-height: 1.2; }
.ia-text .it1 { font-size: 10px; font-weight: 700; color: var(--gold-400); text-transform: uppercase; letter-spacing: 0.08em; }
.ia-text .it2 { font-size: 13px; font-weight: 800; color: #fff; }

/* ── BUTTON SYSTEM ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-gradient);
  color: #000;
  font-size: 16px; font-weight: 900; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 18px 32px;
  border-radius: var(--r-sm);
  box-shadow: 0 10px 36px rgba(245,196,0,0.35), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: all 0.25s;
  position: relative; overflow: hidden;
}
.btn-gold::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 3s infinite;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(245,196,0,0.5); }

.btn-wpp {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-500); color: #fff;
  font-size: 15px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 18px 24px; border-radius: var(--r-sm);
  box-shadow: var(--green-glow);
  transition: all 0.25s;
}
.btn-wpp:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(37,211,102,0.45); }

.btn-wpp .wpp-label { display: flex; flex-direction: column; text-align: left; line-height: 1.15; }
.btn-wpp .wpp-label .wl1 { font-size: 11px; opacity: 0.85; font-weight: 600; text-transform: none; letter-spacing: 0; }
.btn-wpp .wpp-label .wl2 { font-size: 15px; font-weight: 800; }

.hero-note {
  display: block;
  font-size: 13px; color: var(--text-muted);
  margin-top: 8px;
}

/* ── HERO METRICS ── */
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  margin-top: 60px;
}
.metric {
  padding: 28px 20px;
  border-right: 1px solid var(--border-subtle);
  text-align: center;
  position: relative;
  transition: background 0.3s;
}
.metric:hover { background: rgba(245,196,0,0.04); }
.metric:last-child { border-right: none; }
.metric-value {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 900;
  background: var(--gold-gradient-rich);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; letter-spacing: -0.025em;
}
.metric-label { font-size: 12px; color: var(--text-muted); margin-top: 8px; font-weight: 500; }

/* ═══════════════════════════════════════════
   AS SEEN IN
   ═══════════════════════════════════════════ */
.as-seen {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 32px 0;
}
.as-seen-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
}
.as-seen-lbl {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--text-muted);
  padding-right: 12px;
  border-right: 1px solid var(--border-subtle);
}
.as-seen-logos {
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap; justify-content: center;
}
.as-logo {
  font-weight: 900; letter-spacing: 0.05em;
  color: var(--text-muted);
  opacity: 0.6;
  font-size: 18px;
  transition: opacity 0.3s, color 0.3s;
  font-style: italic;
}
.as-logo:hover { opacity: 1; color: #fff; }
.as-logo.serif { font-family: Georgia, serif; font-style: normal; font-size: 22px; }
.as-logo.bold { letter-spacing: -0.02em; font-size: 22px; font-style: normal; }

/* ═══════════════════════════════════════════
   SOCIAL PROOF STRIP
   ═══════════════════════════════════════════ */
.social-strip {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 0;
}
.strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.strip-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--text-secondary);
}
.strip-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(245,196,0,0.10); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

/* ═══════════════════════════════════════════
   VSL / VIDEO PRESENTATION
   ═══════════════════════════════════════════ */
.vsl-section {
  background: var(--bg-primary);
  padding: var(--section-py) 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.vsl-wrap {
  position: relative;
  max-width: 900px;
  margin: 48px auto 0;
  aspect-ratio: 16/9;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 60px rgba(245,196,0,0.15);
}
.vsl-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.65), rgba(0,0,0,0.35)),
    url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1600&q=80') center/cover;
}
.vsl-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 18px;
  cursor: pointer;
  transition: transform 0.4s;
}
.vsl-play:hover { transform: scale(1.05); }
.play-btn {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px rgba(245,196,0,0.15), 0 0 0 24px rgba(245,196,0,0.05);
  animation: pulse-ring 2s ease-in-out infinite;
}
.play-btn::after {
  content: ''; width: 0; height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 26px solid #000;
  margin-left: 6px;
}
.vsl-cta-text {
  color: #fff; font-size: 18px; font-weight: 800;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
  letter-spacing: 0.02em;
}
.vsl-duration {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(0,0,0,0.7);
  color: #fff; font-size: 12px; font-weight: 700;
  padding: 6px 10px; border-radius: 4px;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════
   CARD SYSTEM
   ═══════════════════════════════════════════ */
.card-grid { display: grid; gap: 18px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: linear-gradient(180deg, var(--bg-surface) 0%, rgba(17,17,21,0.5) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,196,0,0.3), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--gold-glow);
}
.card:hover::before { opacity: 1; }

.card-icon {
  font-size: 36px;
  margin-bottom: 18px;
  display: inline-block;
  width: 60px; height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245,196,0,0.12), rgba(245,196,0,0.04));
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
}
.card h3 {
  font-size: 20px; font-weight: 800; color: var(--text-primary);
  margin-bottom: 10px; letter-spacing: -0.015em;
}
.card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ═══════════════════════════════════════════
   ALERT CARDS (Red Flags)
   ═══════════════════════════════════════════ */
.alert-card {
  background: linear-gradient(180deg, var(--red-bg), rgba(229,62,62,0.02));
  border: 1px solid var(--red-border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all 0.3s;
}
.alert-card:hover { transform: translateY(-4px); border-color: rgba(229,62,62,0.35); box-shadow: 0 16px 50px rgba(229,62,62,0.15); }
.alert-card .card-icon {
  background: linear-gradient(135deg, rgba(229,62,62,0.15), rgba(229,62,62,0.05));
  border-color: var(--red-border);
  font-size: 28px;
}
.alert-card h3 { font-size: 19px; font-weight: 800; color: var(--red-500); margin-bottom: 8px; }
.alert-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ═══════════════════════════════════════════
   INCLUDE ITEMS
   ═══════════════════════════════════════════ */
.include-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: 22px;
  transition: all 0.3s;
}
.include-item:hover { border-color: var(--border-gold); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }

.include-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: linear-gradient(135deg, rgba(245,196,0,0.12), rgba(245,196,0,0.04));
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.include-text h4 { font-size: 16px; font-weight: 800; color: var(--text-primary); margin-bottom: 6px; }
.include-text p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; }
.include-value {
  display: inline-block;
  font-size: 11px; font-weight: 800; color: var(--gold-400);
  background: rgba(245,196,0,0.1); border: 1px solid var(--border-gold);
  padding: 3px 10px; border-radius: 100px;
  margin-top: 8px; letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════
   PROOF CARDS
   ═══════════════════════════════════════════ */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.proof-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.4s;
}
.proof-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--gold-glow);
  transform: translateY(-4px);
}
.proof-head {
  padding: 16px 24px;
  background: linear-gradient(90deg, rgba(245,196,0,0.08), rgba(245,196,0,0.02));
  border-bottom: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: space-between;
}
.proof-title {
  font-size: 15px; font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.proof-badge {
  background: var(--gold-gradient); color: #000;
  font-size: 10px; font-weight: 900;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 4px;
}
.proof-body { padding: 24px; }
.proof-metrics {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 10px; margin-bottom: 20px;
}
.pm {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}
.pm-val {
  font-size: 26px; font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.pm-lbl {
  font-size: 10px; color: var(--text-muted);
  margin-top: 6px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700;
}
.proof-chart {
  background: #08080C;
  border-radius: 10px;
  height: 140px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  position: relative;
}
.proof-chart svg { width: 100%; height: 100%; }

/* ═══════════════════════════════════════════
   AUTHORITY / FOUNDER SECTION
   ═══════════════════════════════════════════ */
.founder {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-deep) 100%);
  padding: var(--section-py) 0;
  position: relative; overflow: hidden;
}
.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px; align-items: center;
}
.founder-photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(245,196,0,0.15);
}
.founder-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  filter: contrast(1.05) saturate(1.1);
}
.founder-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
}
.founder-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
}
.founder-name { font-size: 22px; font-weight: 900; color: #fff; letter-spacing: -0.01em; }
.founder-role {
  font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 4px;
}
.founder-creds-bar {
  position: absolute; top: 16px; left: 16px; right: 16px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.cred {
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 10px; font-weight: 700; color: var(--gold-400);
  text-transform: uppercase; letter-spacing: 0.06em;
}

.founder-text h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 900; letter-spacing: -0.03em;
  line-height: 1.05; margin-bottom: 20px;
}
.founder-text h2 span {
  background: var(--gold-gradient-rich);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.founder-text > p {
  font-size: 16px; color: var(--text-secondary); line-height: 1.75;
  margin-bottom: 24px;
}
.founder-text p strong { color: #fff; font-weight: 600; }
.founder-quote {
  border-left: 3px solid var(--gold-500);
  padding: 4px 0 4px 18px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  margin: 28px 0;
}
.founder-achievements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.achievement {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: 18px;
  text-align: center;
}
.achievement-val {
  font-size: 28px; font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.achievement-lbl { font-size: 12px; color: var(--text-muted); margin-top: 6px; font-weight: 500; }

/* ═══════════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════════ */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-glass);
}
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
  padding: 18px 16px;
  background: rgba(0,0,0,0.3);
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--text-muted); text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}
.compare-table th:first-child { text-align: left; }
.compare-table th.col-gold {
  background: linear-gradient(180deg, rgba(245,196,0,0.12), rgba(245,196,0,0.04));
  border-bottom: 1px solid var(--border-gold);
  position: relative;
}
.compare-table th.col-gold::before {
  content: 'RECOMENDADO'; position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  font-size: 9px; font-weight: 900; color: #000;
  background: var(--gold-gradient);
  padding: 3px 10px; border-radius: 100px;
  letter-spacing: 0.08em; white-space: nowrap;
}
.compare-table th.col-gold span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.compare-table td {
  padding: 16px; font-size: 14px;
  color: var(--text-secondary); text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--text-primary); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); transition: background 0.2s; }
.td-gold {
  background: rgba(245,196,0,0.04) !important;
  font-weight: 800 !important;
}
.td-good { color: #4ADE80 !important; }
.td-bad  { color: #E24B4A !important; }
.td-gold.td-good {
  background: var(--gold-gradient) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tcard {
  background: linear-gradient(180deg, var(--bg-surface) 0%, rgba(17,17,21,0.4) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all 0.4s;
  text-align: left;
  position: relative;
}
.tcard::before {
  content: '"'; position: absolute;
  top: 8px; right: 22px;
  font-size: 90px; font-family: Georgia, serif;
  color: rgba(245,196,0,0.1);
  line-height: 1; pointer-events: none;
}
.tcard:hover {
  border-color: var(--border-gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), var(--gold-glow);
  transform: translateY(-5px);
}
.tcard-stars { color: var(--gold-500); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.tcard-text {
  font-size: 15px; color: rgba(255,255,255,0.85);
  line-height: 1.7; margin-bottom: 24px;
}
.tcard-author { display: flex; align-items: center; gap: 14px; }
.tcard-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-gold);
  flex-shrink: 0;
}
.tcard-name { font-size: 14px; font-weight: 800; color: var(--text-primary); }
.tcard-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.tcard-verified {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 700; color: var(--green-500);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════
   PHONE / MOBILE PREVIEW SECTION
   ═══════════════════════════════════════════ */
.phone-section {
  background: var(--bg-primary);
  padding: var(--section-py) 0;
  position: relative; overflow: hidden;
}
.phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.phone-wrap {
  position: relative;
  display: flex; justify-content: center;
  perspective: 1500px;
}
.phone {
  width: 280px;
  height: 580px;
  background: #0A0A0F;
  border-radius: 40px;
  border: 8px solid #1a1a1f;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(245,196,0,0.15),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  transform: rotateY(-12deg) rotateX(4deg);
  animation: phone-float 6s ease-in-out infinite;
}
.phone-notch {
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 26px;
  background: #000; border-radius: 14px;
  z-index: 5;
}
.phone-screen {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #08080C 0%, #0A0A0F 100%);
  padding: 50px 16px 20px;
  overflow: hidden;
}
.phone-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4px 12px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 14px;
}
.phone-pair {
  display: flex; align-items: center; gap: 8px;
}
.phone-pair-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold-gradient); display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900; color: #000;
}
.phone-pair-name { font-size: 13px; font-weight: 800; color: #fff; }
.phone-pair-sub { font-size: 9px; color: var(--text-muted); margin-top: 1px; text-transform: uppercase; letter-spacing: 0.08em; }
.phone-live {
  font-size: 9px; font-weight: 700; color: var(--green-500);
  display: flex; align-items: center; gap: 4px;
}
.phone-live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-500); box-shadow: 0 0 8px var(--green-500);
  animation: pulse-dot 1.5s infinite;
}
.phone-price {
  text-align: center;
  margin-bottom: 16px;
}
.phone-price-val {
  font-size: 32px; font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.phone-price-change {
  font-size: 11px; font-weight: 700;
  color: var(--green-500);
  background: rgba(37,211,102,0.1);
  display: inline-block;
  padding: 2px 8px; border-radius: 4px;
  margin-top: 4px;
}
.phone-chart {
  background: #050507;
  border-radius: 8px;
  height: 120px;
  margin-bottom: 14px;
  padding: 8px;
  overflow: hidden;
}
.phone-chart svg { width: 100%; height: 100%; }
.phone-trades {
  background: rgba(255,255,255,0.025);
  border-radius: 8px;
  padding: 10px;
}
.phone-trades-head {
  font-size: 9px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.phone-trade {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0;
  border-top: 1px solid var(--border-subtle);
  font-size: 11px;
}
.phone-trade-left { display: flex; align-items: center; gap: 6px; }
.phone-trade-tag {
  font-size: 8px; font-weight: 800; padding: 2px 6px; border-radius: 3px;
  letter-spacing: 0.06em;
}
.phone-trade-tag.buy { background: rgba(37,211,102,0.15); color: var(--green-500); }
.phone-trade-tag.sell { background: rgba(229,62,62,0.15); color: var(--red-500); }
.phone-trade-name { color: #fff; font-weight: 600; }
.phone-trade-profit { color: var(--green-500); font-weight: 800; font-variant-numeric: tabular-nums; }

.phone-feature {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 22px;
}
.phone-feature-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245,196,0,0.15), rgba(245,196,0,0.05));
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.phone-feature h4 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.phone-feature p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ═══════════════════════════════════════════
   GUARANTEE
   ═══════════════════════════════════════════ */
.guarantee-box {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(245,196,0,0.06), rgba(245,196,0,0.01));
  border: 2px solid var(--gold-500);
  border-radius: var(--r-2xl);
  padding: 52px;
  display: flex; align-items: center; gap: 44px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 60px rgba(245,196,0,0.15);
}
.g-seal {
  width: 140px; min-width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--gold-gradient-rich);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 10px 50px rgba(245,196,0,0.4), inset 0 2px 0 rgba(255,255,255,0.3);
  animation: seal-glow 3s ease-in-out infinite;
  position: relative;
}
.g-seal::before {
  content: ''; position: absolute; inset: 8px;
  border: 2px dashed rgba(0,0,0,0.3); border-radius: 50%;
  animation: rotate 20s linear infinite;
}
.g-seal .gs1 { font-size: 11px; font-weight: 800; color: #000; letter-spacing: 0.1em; text-transform: uppercase; z-index: 1; }
.g-seal .gs2 { font-size: 38px; font-weight: 900; color: #000; line-height: 1; z-index: 1; }
.g-seal .gs3 { font-size: 11px; font-weight: 800; color: #000; text-transform: uppercase; z-index: 1; letter-spacing: 0.08em; }
.g-content h3 {
  font-size: 28px; font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 12px; letter-spacing: -0.02em;
}
.g-content p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; }

/* ═══════════════════════════════════════════
   ORDER / PRICING
   ═══════════════════════════════════════════ */
.order-section {
  background:
    radial-gradient(ellipse at top, rgba(245,196,0,0.08) 0%, transparent 60%),
    var(--bg-deep);
  padding: var(--section-py) 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.order-card {
  max-width: 600px;
  margin: 48px auto 0;
  background: linear-gradient(180deg, rgba(20,20,28,0.95), rgba(10,10,15,0.95));
  border: 1px solid var(--border-gold);
  border-radius: var(--r-2xl);
  padding: 52px 44px;
  position: relative; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 80px rgba(245,196,0,0.15);
}
.order-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--gold-gradient);
}
.order-card::after {
  content: ''; position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(245,196,0,0.04), transparent 30%);
  animation: rotate 16s linear infinite;
  pointer-events: none;
}
.order-card > * { position: relative; z-index: 1; }

.order-tag {
  display: inline-block;
  font-size: 12px; font-weight: 900;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #C0392B, #E53E3E);
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(229,62,62,0.3);
}
.order-name {
  font-size: 32px; font-weight: 900; color: #fff;
  margin-bottom: 28px; letter-spacing: -0.02em;
}
.price-old { font-size: 22px; color: var(--text-muted); text-decoration: line-through; }
.price-new {
  font-size: 80px; font-weight: 900;
  background: var(--gold-gradient-rich);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; letter-spacing: -0.04em;
  margin-top: 4px;
}
.price-info { font-size: 13px; color: var(--text-muted); margin: 12px 0 32px; }

.order-includes { text-align: left; margin-bottom: 32px; }
.order-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text-secondary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.order-item:last-child { border-bottom: none; }
.order-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 13px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(245,196,0,0.25);
}
.order-item-val {
  margin-left: auto;
  font-size: 12px; color: var(--gold-400); font-weight: 700;
}

.order-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.btn-gold-lg {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gold-gradient); color: #000;
  font-size: 18px; font-weight: 900; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 22px 16px; border-radius: var(--r-sm);
  box-shadow: 0 12px 40px rgba(245,196,0,0.35), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: all 0.25s;
  position: relative; overflow: hidden;
}
.btn-gold-lg::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 3s infinite;
}
.btn-gold-lg:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(245,196,0,0.5); }

.btn-wpp-order {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--green-500); color: #fff;
  font-size: 15px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 22px 16px; border-radius: var(--r-sm);
  box-shadow: var(--green-glow);
  transition: all 0.25s;
}
.btn-wpp-order:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(37,211,102,0.45); }
.btn-wpp-order .wpp-label { display: flex; flex-direction: column; text-align: left; line-height: 1.15; }
.btn-wpp-order .wpp-label .wl1 { font-size: 11px; opacity: 0.85; font-weight: 600; text-transform: none; letter-spacing: 0; }
.btn-wpp-order .wpp-label .wl2 { font-size: 15px; font-weight: 800; }

.order-note { font-size: 12px; color: var(--text-dim); }
.order-note span { color: var(--gold-500); font-weight: 700; }

.payment-icons {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 18px;
  opacity: 0.6;
}
.payment-icon {
  height: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  display: flex; align-items: center;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════ */
.faq-list {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item.active { border-color: var(--border-gold); background: rgba(245,196,0,0.03); }
.faq-question {
  width: 100%;
  padding: 22px 26px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 16px; font-weight: 700;
  color: var(--text-primary); text-align: left;
  transition: color 0.3s;
}
.faq-item.active .faq-question { color: var(--gold-400); }
.faq-icon {
  font-size: 24px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
  font-weight: 300;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 26px 22px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  padding: 52px 0;
  text-align: center;
}
.footer .logo { justify-content: center; margin-bottom: 28px; }
.footer-links {
  display: flex; gap: 28px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 28px;
}
.footer-links a { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-500); }
.footer-disc {
  font-size: 11px; color: var(--text-dim);
  max-width: 720px; margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   FLOATING WHATSAPP
   ═══════════════════════════════════════════ */
.floating-wpp {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 900;
  width: 62px; height: 62px;
  background: var(--green-500);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.25s;
  animation: float-pulse 2s infinite;
}
.floating-wpp:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.floating-wpp svg { width: 30px; height: 30px; fill: #fff; }

/* ═══════════════════════════════════════════
   LIVE ACTIVITY NOTIFICATIONS
   ═══════════════════════════════════════════ */
.live-notif {
  position: fixed;
  bottom: 100px; left: 24px;
  z-index: 880;
  width: 310px;
  background: linear-gradient(135deg, rgba(20,20,28,0.95), rgba(10,10,15,0.95));
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  padding: 12px 14px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(245,196,0,0.15);
  backdrop-filter: blur(20px);
  transform: translateX(-380px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(.22,1,.36,1), opacity 0.5s;
}
.live-notif.show { transform: translateX(0); opacity: 1; }
.live-notif-avatar {
  width: 42px; height: 42px; min-width: 42px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: #000;
  border: 2px solid var(--bg-deep);
  position: relative;
}
.live-notif-avatar::after {
  content: ''; position: absolute;
  bottom: -2px; right: -2px;
  width: 12px; height: 12px;
  background: var(--green-500); border-radius: 50%;
  border: 2px solid var(--bg-deep);
}
.live-notif-body { flex: 1; min-width: 0; }
.live-notif-name { font-size: 13px; font-weight: 800; color: #fff; }
.live-notif-action { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }
.live-notif-time { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ═══════════════════════════════════════════
   LIVE VIEWERS
   ═══════════════════════════════════════════ */
.live-viewers {
  position: fixed;
  top: 88px; right: 24px;
  z-index: 880;
  background: rgba(20,20,28,0.85);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 8px 14px;
  display: flex; align-items: center; gap: 8px;
  backdrop-filter: blur(16px);
  font-size: 12px; color: #fff; font-weight: 600;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  animation: live-viewers-in 0.6s ease-out 1s both;
}
.live-viewers-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-500); box-shadow: 0 0 12px var(--green-500);
  animation: pulse-dot 1.6s infinite;
}
.live-viewers strong { color: var(--gold-400); font-weight: 800; }

@keyframes live-viewers-in {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   KEYFRAMES
   ═══════════════════════════════════════════ */
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.85); } }
@keyframes shimmer { 0% { left: -100%; } 100% { left: 200%; } }
@keyframes float-pulse { 0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 36px rgba(37,211,102,0.65); } }
@keyframes seal-glow { 0%, 100% { box-shadow: 0 10px 50px rgba(245,196,0,0.4), inset 0 2px 0 rgba(255,255,255,0.3); } 50% { box-shadow: 0 10px 70px rgba(245,196,0,0.65), inset 0 2px 0 rgba(255,255,255,0.3); } }
@keyframes float-orb { 0%, 100% { transform: translate(-50%, 0) scale(1); } 33% { transform: translate(-40%, 30px) scale(1.1); } 66% { transform: translate(-60%, -20px) scale(0.9); } }
@keyframes float-orb-2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-40px, 40px) scale(1.2); } }
@keyframes float-orb-3 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(30px, -30px) scale(1.15); } }
@keyframes float-y { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes phone-float { 0%, 100% { transform: rotateY(-12deg) rotateX(4deg) translateY(0); } 50% { transform: rotateY(-10deg) rotateX(3deg) translateY(-14px); } }
@keyframes coin-fall {
  0% { top: -30px; transform: rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { top: 110%; transform: rotate(720deg); opacity: 0; }
}
@keyframes gradient-slide { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(245,196,0,0.5), 0 0 0 0 rgba(245,196,0,0.3); }
  100% { box-shadow: 0 0 0 24px rgba(245,196,0,0), 0 0 0 48px rgba(245,196,0,0); }
}
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid, .founder-grid, .phone-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-left { text-align: center; }
  .hero-left .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-trust { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .card-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-photo { max-width: 420px; margin: 0 auto; }
  .live-viewers { display: none; }
}

@media (max-width: 768px) {
  :root { --section-py: 72px; }

  .nav-wpp-btn { display: none; }
  .hero { padding: 56px 0 72px; }
  .hero-title { font-size: clamp(36px, 9vw, 56px); }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn-gold, .btn-wpp { justify-content: center; }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(odd) { border-right: 1px solid var(--border-subtle); }
  .metric:nth-child(even) { border-right: none; }
  .metric:nth-child(1), .metric:nth-child(2) { border-bottom: 1px solid var(--border-subtle); }

  .card-grid.cols-2, .card-grid.cols-3, .proof-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .strip-inner { gap: 22px; }
  .as-seen-logos { gap: 18px; }
  .as-logo { font-size: 14px; }
  .as-logo.serif, .as-logo.bold { font-size: 16px; }

  .guarantee-box { flex-direction: column; text-align: center; padding: 36px 24px; gap: 24px; }
  .order-card { padding: 36px 24px; }
  .order-buttons { grid-template-columns: 1fr; }
  .price-new { font-size: 64px; }

  .founder-achievements { grid-template-columns: 1fr; gap: 12px; }
  .profit-ticker, .ia-badge { display: none; }
  .dashboard-mock { transform: none; }
  .live-notif { left: 12px; right: 12px; width: auto; bottom: 92px; }
  .container { padding: 0 16px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 38px; }
  .section-title { font-size: 30px; }
  .strip-inner { flex-direction: column; gap: 14px; }
  .urgency-inner { gap: 10px; }
  .ub-text { font-size: 12px; }
  .phone { transform: none; }
}
