/* ============================================================
   3PROFIT ACADEMY — Landing Page Styles
   Design: Dark premium trading aesthetic
   ============================================================ */

:root {
  --green:       #22c55e;
  --green-dark:  #16a34a;
  --green-glow:  rgba(34, 197, 94, 0.25);
  --gold:        #f59e0b;
  --red:         #ef4444;
  --bg-900:      #030712;
  --bg-800:      #0a0f1e;
  --bg-700:      #0f172a;
  --bg-600:      #1e293b;
  --bg-500:      #263048;
  --text-100:    #f8fafc;
  --text-200:    #e2e8f0;
  --text-400:    #94a3b8;
  --text-600:    #64748b;
  --border:      rgba(255, 255, 255, 0.07);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --shadow-card: 0 4px 32px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(34, 197, 94, 0.15);
  --font-head:   'Outfit', sans-serif;
  --font-body:   'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-900);
  color: var(--text-200);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ─── UTILITY ─────────────────────────── */
.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.gradient-text {
  background: linear-gradient(135deg, var(--green), #86efac, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-100);
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
}

.section-title-left {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text-100);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-400);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

/* ─── BUTTONS ─────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: 0 4px 24px rgba(34, 197, 94, 0.35);
  letter-spacing: .03em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.5);
  background: linear-gradient(135deg, #27d967, var(--green));
}

.btn-primary svg { transition: transform .25s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-xl { font-size: 1.15rem; padding: 20px 42px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-400);
  font-size: .95rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid transparent;
  transition: all .25s;
}
.btn-ghost:hover { color: var(--green); border-bottom-color: var(--green); }

.btn-nav-cta {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  letter-spacing: .05em;
  transition: all .25s;
  white-space: nowrap;
}
.btn-nav-cta:hover { opacity: .9; transform: translateY(-1px); }

.btn-buy {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 18px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all .3s;
  box-shadow: 0 4px 24px rgba(34, 197, 94, 0.4);
  letter-spacing: .03em;
}
.btn-buy:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(34, 197, 94, 0.6); }

.btn-sticky {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .95rem;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all .25s;
}
.btn-sticky:hover { opacity: .9; }

.pulse-btn {
  animation: pulse-glow 2.5s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 24px rgba(34, 197, 94, 0.35); }
  50%       { box-shadow: 0 4px 40px rgba(34, 197, 94, 0.7); }
}

/* ─── NOTIFICATION BAR ───────────────── */
.notif-bar {
  background: linear-gradient(90deg, #064e3b, #065f46, #064e3b);
  color: #fff;
  text-align: center;
  padding: 10px 48px 10px 16px;
  font-size: .875rem;
  font-weight: 500;
  position: relative;
  z-index: 1001;
}
.notif-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 1rem;
  padding: 4px 8px;
  transition: color .2s;
}
.notif-close:hover { color: #fff; }

/* ─── NAVBAR ──────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 10px 0;
  width: min(1180px, 92%);
  margin: 0 auto;
}
.nav-logo { flex-shrink: 0; }
.logo-img  { height: 72px; width: auto; object-fit: contain; }
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-400);
  transition: color .2s;
}
.nav-links a:hover { color: var(--green); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  z-index: 2001;
  position: relative;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-200);
  border-radius: 2px;
  transition: all .3s;
}

/* Transform into X when open */
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO ────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 60px;
  background: linear-gradient(160deg, var(--bg-900) 0%, #050d1a 50%, var(--bg-900) 100%);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,197,94,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 580px;
  padding: 0 5%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--green);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
  letter-spacing: .05em;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: blink-dot 1.8s ease-in-out infinite;
}
@keyframes blink-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .2; }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--text-100);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-400);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 520px;
}
.hero-sub strong { color: var(--text-200); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.stat-pill { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green);
}
.stat-lbl {
  font-size: .75rem;
  color: var(--text-400);
  font-weight: 500;
  letter-spacing: .05em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-guarantee-note {
  font-size: .82rem;
  color: var(--text-600);
}

/* ─── HERO VISUAL — TradingView Live Charts ─── */
.hero-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 2% 0 3%;
  position: relative;
  z-index: 2;
  min-width: 0;
}

/* Row of 4 mini asset cards */
.live-assets-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  flex-shrink: 0;
}

.asset-mini-card {
  height: 130px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color .3s, transform .3s;
}
.asset-mini-card:hover {
  border-color: rgba(34, 197, 94, 0.45);
  transform: translateY(-2px);
}
/* SP500 featured card — highlighted */
.asset-mini-featured {
  border-color: rgba(34, 197, 94, 0.45) !important;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.12), inset 0 0 20px rgba(34, 197, 94, 0.04);
}
.asset-mini-card .tradingview-widget-container,
.asset-mini-card .tradingview-widget-container__widget {
  height: 100% !important;
  width: 100% !important;
}

/* Main background SP500 chart */
.tv-main-chart-wrapper {
  flex: 1;
  min-height: 320px;
  background: rgba(10, 15, 30, 0.45);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 60px rgba(34, 197, 94, 0.06), 0 4px 40px rgba(0,0,0,0.5);
  position: relative;
  display: flex;
  flex-direction: column;
}

.tv-chart-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 0;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-400);
  letter-spacing: .06em;
  flex-shrink: 0;
}

.tv-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: blink-dot 1.4s ease-in-out infinite;
}

.tv-main-chart-wrapper .tradingview-widget-container {
  flex: 1;
  height: 100% !important;
  width: 100% !important;
}
.tv-main-chart-wrapper .tradingview-widget-container__widget {
  height: 100% !important;
  width: 100% !important;
}

/* Keep .green utility */
.green { color: var(--green); }

/* ─── PARTICLE DOTS ──────────────────── */
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.6);
  animation: particle-float linear infinite;
}
@keyframes particle-float {
  0%   { transform: translateY(0) scale(1); opacity: .8; }
  50%  { opacity: .3; }
  100% { transform: translateY(-120px) scale(0); opacity: 0; }
}

/* ─── EMPATHY ─────────────────────────── */
.empathy {
  padding: 96px 0;
  text-align: center;
  background: var(--bg-800);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 48px 0;
}
.pain-card {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: left;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.pain-card:hover { border-color: rgba(34,197,94,.3); transform: translateY(-4px); }
.pain-card:hover::before { transform: scaleX(1); }
.pain-icon { font-size: 1.8rem; margin-bottom: 12px; }
.pain-card p { font-size: .95rem; color: var(--text-400); line-height: 1.65; }

.empathy-hook {
  font-size: 1.1rem;
  color: var(--text-200);
  max-width: 640px;
  margin: 0 auto;
  font-weight: 500;
}
.empathy-hook strong { color: var(--green); }

/* ─── QUALIFIER ───────────────────────── */
.qualifier {
  padding: 96px 0;
  background: var(--bg-900);
}
.qualifier .section-title { margin-bottom: 48px; }
.qualifier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.qualifier-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid;
}
.yes-card {
  background: rgba(34, 197, 94, 0.05);
  border-color: rgba(34, 197, 94, 0.2);
}
.no-card {
  background: rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.2);
}
.qualifier-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.qualifier-icon { font-size: 1.5rem; }
.qualifier-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-100);
}
.qualifier-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.qualifier-card ul li {
  font-size: .95rem;
  color: var(--text-400);
  padding-left: 20px;
  position: relative;
}
.yes-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.no-card  ul li::before { content: '✕'; position: absolute; left: 0; color: var(--red);   font-weight: 700; }

/* ─── BENEFITS ────────────────────────── */
.benefits {
  padding: 96px 0;
  background: var(--bg-800);
  text-align: center;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.benefit-card {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: left;
  transition: all .35s;
  position: relative;
  overflow: hidden;
}
.benefit-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(34,197,94,.1), transparent 60%);
  opacity: 0;
  transition: opacity .35s;
}
.benefit-card:hover { border-color: rgba(34,197,94,.4); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.4), 0 0 30px rgba(34,197,94,.1); }
.benefit-card:hover::after { opacity: 1; }
.benefit-num { font-family: var(--font-head); font-size: 4rem; font-weight: 900; color: rgba(34,197,94,.1); line-height: 1; margin-bottom: -12px; }
.benefit-icon { font-size: 2rem; margin-bottom: 12px; }
.benefit-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--text-100); margin-bottom: 10px; }
.benefit-card p { font-size: .9rem; color: var(--text-400); line-height: 1.65; }

/* ─── DIFFERENT ───────────────────────── */
.different {
  padding: 96px 0;
  background: var(--bg-900);
}
.different-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.different-body {
  color: var(--text-400);
  margin-bottom: 16px;
  line-height: 1.7;
}
.different-body strong { color: var(--text-200); }
.different-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.dstat {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  text-align: center;
}
.dstat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green);
}
.dstat-lbl { font-size: .75rem; color: var(--text-400); font-weight: 500; }

.different-cover { position: relative; }
.cover-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  display: block;
  object-fit: cover;
  max-height: 380px;
}
.cover-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(3, 7, 18, 0.9);
  border: 1px solid rgba(239, 68, 68, 0.5);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-100);
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(10px);
}
.cover-badge-icon { animation: blink-dot 1s ease-in-out infinite; font-size: .6rem; }

/* ─── TESTIMONIALS ────────────────────── */
.testimonials {
  padding: 96px 0;
  background: var(--bg-800);
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
  text-align: left;
}
.tcard {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all .3s;
}
.tcard:hover { transform: translateY(-4px); border-color: rgba(34,197,94,.25); }
.featured-tcard {
  border-color: rgba(34,197,94,.4);
  background: linear-gradient(160deg, rgba(34,197,94,.06), var(--bg-700));
  position: relative;
}
.tcard-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.tcard-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  color: #fff;
  font-size: .9rem;
  flex-shrink: 0;
}
.tcard-name { font-weight: 700; font-size: .95rem; color: var(--text-100); }
.tcard-location { font-size: .78rem; color: var(--text-600); }
.tcard-stars { margin-left: auto; color: var(--gold); font-size: .85rem; }
.tcard-text { font-size: .9rem; color: var(--text-400); line-height: 1.7; margin-bottom: 16px; }
.tcard-result {
  display: inline-block;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.25);
  color: var(--green);
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
}

/* ─── MODULES ─────────────────────────── */
.modules {
  padding: 96px 0;
  background: var(--bg-900);
  text-align: center;
}
.modules-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 48px 0;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.module-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-700);
  padding: 20px 28px;
  transition: all .25s;
  cursor: pointer;
}
.module-item:hover { background: var(--bg-600); padding-left: 36px; }
.module-num {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  min-width: 44px;
  text-align: center;
  flex-shrink: 0;
}
.module-content { flex: 1; text-align: left; }
.module-content h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--text-100); margin-bottom: 4px; }
.module-content p  { font-size: .85rem; color: var(--text-400); }
.module-arrow { color: var(--text-600); font-size: 1.2rem; transition: all .25s; }
.module-item:hover .module-arrow { color: var(--green); transform: translateX(4px); }
.modules-cta { margin-top: 8px; }

/* ─── BONUSES ─────────────────────────── */
.bonuses {
  padding: 96px 0;
  background: linear-gradient(160deg, var(--bg-800), var(--bg-900));
  text-align: center;
}
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 48px 0 32px;
}
.bonus-card {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: left;
  position: relative;
  transition: all .3s;
}
.bonus-card:hover { transform: translateY(-4px); border-color: rgba(34,197,94,.3); }
.bonus-featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(245,158,11,.06), var(--bg-700));
}
.bonus-featured:hover { border-color: var(--gold); }
.bonus-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-900);
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.bonus-value {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-600);
  text-decoration: line-through;
  margin-bottom: 12px;
}
.bonus-icon { font-size: 2rem; margin-bottom: 12px; }
.bonus-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--text-100); margin-bottom: 10px; }
.bonus-card p  { font-size: .88rem; color: var(--text-400); line-height: 1.65; }

.bonus-total {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: var(--text-400);
  margin-bottom: 28px;
  font-weight: 500;
}
.bonus-total-val {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-100);
  display: flex;
  align-items: center;
  gap: 8px;
}
.free-badge {
  background: var(--green);
  color: var(--bg-900);
  font-size: .7rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 99px;
  letter-spacing: .05em;
}

/* ─── PRICING ─────────────────────────── */
.pricing {
  padding: 96px 0;
  background: var(--bg-900);
  text-align: center;
}
.pricing-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 48px;
  text-align: left;
}
.pricing-stack {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.pricing-stack h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.stack-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.stack-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
  color: var(--text-400);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.stack-price { font-weight: 600; color: var(--text-200); }
.stack-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.stack-total span { font-weight: 600; color: var(--text-200); font-size: .95rem; }
.total-val { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--text-100); text-decoration: line-through; color: var(--text-600); }

.pricing-card {
  background: var(--bg-700);
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-card), 0 0 50px rgba(34,197,94,.15);
  text-align: center;
}
.pricing-badge-top {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--bg-900);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 800;
  padding: 6px 20px;
  border-radius: 99px;
  margin-bottom: 20px;
  letter-spacing: .05em;
}
.pricing-timer-label { font-size: .82rem; color: var(--text-400); margin-bottom: 12px; }

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  background: var(--bg-800);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  border: 1px solid var(--border);
}
.countdown-unit {
  text-align: center;
  min-width: 56px;
}
.countdown-unit span {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.countdown-unit label { font-size: .68rem; color: var(--text-600); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.countdown-sep { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--text-600); margin-bottom: 12px; }

.pricing-original { font-size: .9rem; color: var(--text-600); text-decoration: line-through; margin-bottom: 4px; }
.pricing-today-label { font-size: .85rem; color: var(--text-400); margin-bottom: 4px; }
.pricing-price {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 900;
  color: var(--text-100);
  line-height: 1;
  margin-bottom: 24px;
}
.price-currency { font-size: 1.5rem; color: var(--text-400); }

.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; text-align: left; }
.pf-item { font-size: .9rem; color: var(--text-200); }

.pricing-sub { font-size: .78rem; color: var(--text-600); margin-top: 12px; margin-bottom: 16px; }
.payment-icons {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.pay-icon {
  background: var(--bg-600);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-400);
}
.pricing-save {
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: var(--radius-sm);
  padding: 10px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--green);
}

/* ─── GUARANTEE ───────────────────────── */
.guarantee {
  padding: 96px 0;
  background: var(--bg-800);
}
.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 56px;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px;
}
.guarantee-badge {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(34,197,94,.35);
}
.guarantee-shield { font-size: 2rem; }
.guarantee-days { font-family: var(--font-head); font-size: 2.4rem; font-weight: 900; color: #fff; line-height: 1; }
.guarantee-label { font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.8); letter-spacing: .1em; }
.guarantee-text h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-100);
  margin-bottom: 16px;
}
.guarantee-text p { color: var(--text-400); margin-bottom: 12px; line-height: 1.7; }
.guarantee-text strong { color: var(--text-200); }
.guarantee-text .btn-primary { margin-top: 12px; }

/* ─── URGENCY ─────────────────────────── */
.urgency {
  padding: 96px 0;
  background: var(--bg-900);
  text-align: center;
}
.urgency-inner {
  max-width: 720px;
  margin: 0 auto;
}
.urgency-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text-100);
  margin-bottom: 24px;
}
.urgency-inner p { color: var(--text-400); margin-bottom: 16px; line-height: 1.75; }
.urgency-inner strong { color: var(--text-200); }

.warning-box {
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.3);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  color: var(--gold);
  font-size: .95rem;
  margin: 28px 0;
  text-align: left;
}
.warning-box strong { color: var(--gold); }

.action-plan {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 32px 0;
  text-align: left;
}
.action-plan h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 24px;
}
.action-steps { display: flex; flex-direction: column; gap: 20px; }
.action-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.action-step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.action-step strong { display: block; color: var(--text-100); font-weight: 700; margin-bottom: 4px; }
.action-step p { font-size: .9rem; color: var(--text-400); margin: 0; }

/* ─── FAQ ─────────────────────────────── */
.faq {
  padding: 96px 0;
  background: var(--bg-800);
  text-align: center;
}
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 8px;
}
.faq-question {
  width: 100%;
  background: var(--bg-700);
  border: none;
  color: var(--text-100);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all .25s;
  text-align: left;
  gap: 12px;
}
.faq-question:hover { background: var(--bg-600); color: var(--green); }
.faq-icon { font-size: 1.3rem; color: var(--green); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  background: var(--bg-600);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 20px 24px; color: var(--text-400); font-size: .9rem; line-height: 1.7; }

/* ─── TWO PATHS ───────────────────────── */
.two-paths {
  padding: 96px 0;
  background: var(--bg-900);
  text-align: center;
}
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}
.path-card {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid;
}
.path-no {
  background: rgba(71,85,105,.15);
  border-color: rgba(71,85,105,.3);
}
.path-yes {
  background: rgba(34,197,94,.06);
  border-color: rgba(34,197,94,.3);
  box-shadow: 0 0 40px rgba(34,197,94,.08);
}
.path-icon { font-size: 2.5rem; margin-bottom: 16px; }
.path-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.path-no  h3 { color: var(--text-400); }
.path-yes h3 { color: var(--text-100); }
.path-card p { font-size: .95rem; color: var(--text-400); line-height: 1.7; margin-bottom: 24px; }
.path-yes .btn-primary { display: inline-flex; }

/* ─── FOOTER ──────────────────────────── */
.footer {
  background: var(--bg-900);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo { height: 64px; margin-bottom: 12px; }
.footer-tagline { font-size: .875rem; color: var(--text-600); margin-bottom: 16px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: all .2s;
}
.social-btn:hover { background: var(--bg-600); border-color: var(--green); }
.footer-links-group h4 {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-links-group a {
  display: block;
  font-size: .85rem;
  color: var(--text-600);
  margin-bottom: 8px;
  transition: color .2s;
}
.footer-links-group a:hover { color: var(--green); }
.footer-contact h4 {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-contact p { font-size: .85rem; color: var(--text-600); margin-bottom: 6px; }
.footer-secure {
  margin-top: 16px;
  font-size: .78rem;
  color: var(--green);
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p { font-size: .82rem; color: var(--text-600); margin-bottom: 8px; }
.footer-disclaimer { font-style: italic; max-width: 600px; margin: 0 auto; }

/* ─── STICKY BOTTOM BAR ───────────────── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(3, 7, 18, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 14px 20px;
  transform: translateY(100%);
  transition: transform .4s ease;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.sticky-price { display: flex; align-items: center; gap: 12px; }
.sticky-original { font-size: .85rem; color: var(--text-600); text-decoration: line-through; }
.sticky-now { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--text-100); }
.sticky-off { background: var(--green); color: var(--bg-900); font-family: var(--font-head); font-size: .72rem; font-weight: 800; padding: 2px 10px; border-radius: 99px; }

/* ─── SOCIAL PROOF POPUP ──────────────── */
.proof-popup {
  position: fixed;
  bottom: 80px;
  left: 20px;
  z-index: 998;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  max-width: 280px;
  transform: translateX(-120%);
  transition: transform .5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.proof-popup.show { transform: translateX(0); }
.proof-avatar { font-size: 1.5rem; }
.proof-text { font-size: .8rem; color: var(--text-400); }
.proof-text strong { color: var(--text-100); }
.proof-text small { color: var(--text-600); }

/* ─── RESPONSIVE ──────────────────────── */
@media (max-width: 1024px) {
  .hero { flex-direction: column; padding: 100px 0 60px; text-align: center; }
  .hero-content { max-width: 640px; text-align: center; }
  .hero-stats { justify-content: center; }
  .hero-cta-group { justify-content: center; }
  .hero-visual { margin-top: 40px; width: 100%; padding: 0 4%; }
  .tv-main-chart-wrapper { min-height: 280px; }
  .different-inner { grid-template-columns: 1fr; }
  .pricing-wrapper { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .qualifier-grid { grid-template-columns: 1fr; }
  .paths-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(3,7,18,.97);
    z-index: 2000;
    justify-content: flex-start;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 40px;
    overflow-y: auto;
    gap: 32px;
    font-size: 1.3rem;
  }
  .hamburger { display: flex; }
  .btn-nav-cta { display: none; }
  .guarantee-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .different-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .live-assets-row { grid-template-columns: repeat(2, 1fr); }
  .asset-mini-card { height: 95px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .live-assets-row { grid-template-columns: repeat(2, 1fr); }
  .tv-main-chart-wrapper { min-height: 220px; }
  .guarantee-badge { width: 90px; height: 90px; }
  .guarantee-badge .guarantee-days { font-size: 2rem; }
}

/* ═══════════════════════════════════════════════════
   BONUS BANNER — "va y ven" animated claim bar
   ═══════════════════════════════════════════════════ */

/* Keyframes */
@keyframes bonus-slide-up {
  0%   { transform: translateY(120%); opacity: 0; }
  60%  { transform: translateY(-8px); opacity: 1; }
  80%  { transform: translateY(4px); }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes bonus-bounce {
  0%,100% { transform: translateY(0); }
  30%     { transform: translateY(-6px); }
  60%     { transform: translateY(-3px); }
}

@keyframes bonus-glow-pulse {
  0%,100% { box-shadow: 0 -4px 40px rgba(34,197,94,.18), 0 0 0 0 rgba(34,197,94,.35); }
  50%     { box-shadow: 0 -4px 60px rgba(34,197,94,.35), 0 0 0 6px rgba(34,197,94,0); }
}

@keyframes bonus-shimmer-sweep {
  0%   { left: -100%; }
  100% { left: 200%; }
}

@keyframes bonus-shake {
  0%,100% { transform: translateX(0) translateY(0); }
  20%     { transform: translateX(-4px) translateY(-2px); }
  40%     { transform: translateX(4px) translateY(-2px); }
  60%     { transform: translateX(-3px) translateY(0); }
  80%     { transform: translateX(3px) translateY(0); }
}

@keyframes cta-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes spots-blink {
  0%,100% { color: #ff4d4d; text-shadow: 0 0 10px rgba(255,77,77,.5); }
  50%     { color: #ff8080; text-shadow: 0 0 20px rgba(255,77,77,.8); }
}

/* ── Base banner ── */
.bonus-banner {
  display: none;               /* shown by JS */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2147483647;
  background: linear-gradient(
    135deg,
    rgba(3, 14, 8, 0.97) 0%,
    rgba(5, 30, 15, 0.97) 40%,
    rgba(6, 40, 20, 0.97) 100%
  );
  border-top: 2px solid rgba(34, 197, 94, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  animation:
    bonus-slide-up .8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
    bonus-glow-pulse 2.5s ease-in-out infinite 1s;
}

.bonus-banner.visible {
  display: flex !important;
}

/* Periodic bounce */
.bonus-banner.bounce-anim {
  animation:
    bonus-bounce .6s ease-in-out,
    bonus-glow-pulse 2.5s ease-in-out infinite;
}

/* Periodic shake */
.bonus-banner.shake-anim {
  animation: bonus-shake .5s ease-in-out;
}

/* Shimmer sweep */
.bonus-shimmer {
  position: absolute;
  top: 0; bottom: 0;
  width: 60%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(34,197,94,.06) 50%,
    transparent 100%
  );
  animation: bonus-shimmer-sweep 3.5s linear infinite;
  pointer-events: none;
}

/* ── Layout ── */
.bonus-banner {
  align-items: center;
  gap: 0;
  padding: 16px 56px 16px 20px;
}

.bonus-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding-right: 20px;
  border-right: 1px solid rgba(34,197,94,.2);
  margin-right: 20px;
}

.bonus-fire {
  font-size: 2.2rem;
  animation: bonus-bounce 2s ease-in-out infinite;
  display: block;
  line-height: 1;
}

.bonus-spots-block {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bonus-spots-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  animation: spots-blink 1.2s ease-in-out infinite;
}

.bonus-spots-lbl {
  font-size: .7rem;
  font-weight: 700;
  color: var(--text-400);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Center copy ── */
.bonus-center {
  flex: 1;
  min-width: 0;
}

.bonus-tag {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
}

.bonus-headline {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 800;
  color: var(--text-100);
  line-height: 1.2;
  margin-bottom: 4px;
}

.bonus-highlight {
  background: linear-gradient(90deg, var(--green), #86efac, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-body {
  font-size: .8rem;
  color: var(--text-400);
  line-height: 1.5;
}
.bonus-body strong { color: var(--text-200); }

/* ── Right CTA ── */
.bonus-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-left: 20px;
}

.bonus-cta-btn {
  display: block;
  background: linear-gradient(
    270deg,
    #22c55e, #16a34a, #15803d, #22c55e, #86efac, #22c55e
  );
  background-size: 300% auto;
  animation: cta-shimmer 2.5s linear infinite;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  border-radius: var(--radius-md);
  padding: 14px 24px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(34,197,94,.45);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}

.bonus-cta-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 36px rgba(34,197,94,.65);
}

.bonus-cta-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bonus-cta-icon { font-size: 1.2rem; }

.bonus-cta-text {
  font-size: .9rem;
  line-height: 1.3;
  text-align: left;
}
.bonus-cta-text small {
  font-size: .72rem;
  font-weight: 500;
  opacity: .85;
  display: block;
}

.bonus-cta-arrow {
  font-size: 1.1rem;
  animation: bonus-bounce 1.5s ease-in-out infinite;
  display: inline-block;
}

.bonus-guarantee {
  font-size: .68rem;
  color: var(--text-600);
  text-align: center;
}

/* ── Close button ── */
.bonus-close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text-400);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: .8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  z-index: 2;
}
.bonus-close-btn:hover { background: rgba(255,255,255,.15); color: #fff; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .bonus-banner {
    flex-direction: column;
    gap: 12px;
    padding: 20px 48px 16px 16px;
    text-align: center;
    bottom: 12px;
    left: 12px;
    right: 12px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(34, 197, 94, 0.5);
  }
  .bonus-left {
    border-right: none;
    border-bottom: 1px solid rgba(34,197,94,.2);
    padding-right: 0;
    padding-bottom: 12px;
    margin-right: 0;
    justify-content: center;
  }
  .bonus-right { margin-left: 0; }
}

@media (max-width: 480px) {
  .bonus-spots-num { font-size: 2rem; }
  .bonus-headline { font-size: .95rem; }
  .bonus-body { display: none; }
  .bonus-cta-btn { padding: 12px 18px; }
}

