/* ================================================
   ARSENAL DIGITAL — LANDING PAGE STYLES
   Dark · Modern · Conversion-Optimized
   ================================================ */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --bg-primary:    #05050f;
  --bg-secondary:  #09091a;
  --bg-card:       rgba(255, 255, 255, 0.035);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border:        rgba(255, 255, 255, 0.07);
  --border-hover:  rgba(124, 58, 237, 0.55);

  --accent-purple: #7c3aed;
  --accent-purple-light: #a78bfa;
  --accent-cyan:   #06b6d4;
  --accent-cyan-light: #67e8f9;
  --accent-gold:   #f59e0b;
  --accent-gold-light: #fcd34d;
  --accent-pink:   #ec4899;

  --text-primary:  #f1f5f9;
  --text-secondary:#94a3b8;
  --text-muted:    #475569;

  --grad-purple-cyan: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
  --grad-gold-pink:   linear-gradient(135deg, #f59e0b 0%, #ec4899 100%);
  --grad-purple-pink: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);

  --accent-green: #10b981;
  --accent-green-light: #6ee7b7;
  --accent-rose:  #f43f5e;
  --accent-rose-light: #fda4af;

  --glow-purple: 0 0 40px rgba(124, 58, 237, 0.35);
  --glow-cyan:   0 0 40px rgba(6, 182, 212, 0.35);
  --glow-gold:   0 0 40px rgba(245, 158, 11, 0.35);
  --glow-green:  0 0 40px rgba(16, 185, 129, 0.35);
  --glow-pink:   0 0 40px rgba(244, 63, 94, 0.35);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Space Grotesk', system-ui, sans-serif;

  --container: 1200px;
  --container-sm: 780px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---- CANVAS ---- */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-purple); border-radius: 99px; }

/* ---- CONTAINER ---- */
.container    { max-width: var(--container);    margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.container--sm{ max-width: var(--container-sm); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ---- TYPOGRAPHY ---- */
.text-gradient {
  background: var(--grad-purple-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: var(--grad-gold-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-purple-light);
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.25);
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.section-title--sm {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.7;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::before { opacity: 1; }

/* Primary */
.btn--primary {
  background: var(--grad-purple-cyan);
  color: #fff;
  box-shadow: var(--glow-purple);
}
.btn--primary::before {
  background: linear-gradient(135deg, #6d28d9, #0891b2);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.5), var(--glow-cyan);
}

/* Secondary (cyan) */
.btn--secondary {
  background: linear-gradient(135deg, #0891b2, #7c3aed);
  color: #fff;
  box-shadow: var(--glow-cyan);
}
.btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(6, 182, 212, 0.5);
}

/* Gold */
.btn--gold {
  background: var(--grad-gold-pink);
  color: #fff;
  box-shadow: var(--glow-gold);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(245, 158, 11, 0.5);
}

/* Ghost */
.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn--ghost::before { background: rgba(255,255,255,0.05); }
.btn--ghost:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* Nav btn */
.btn--nav {
  font-size: 0.85rem;
  padding: 10px 20px;
  background: rgba(124, 58, 237, 0.15);
  color: var(--accent-purple-light);
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: var(--radius-sm);
}
.btn--nav:hover {
  background: rgba(124, 58, 237, 0.3);
  transform: translateY(-1px);
}

/* Sizes */
.btn--lg  { font-size: 1.05rem; padding: 16px 36px; border-radius: var(--radius-md); }
.btn--xl  { font-size: 1.15rem; padding: 20px 48px; border-radius: var(--radius-lg); }
.btn--full{ width: 100%; justify-content: center; }

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(5, 5, 15, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  margin-right: auto;
}
.logo-icon { font-size: 1.5rem; line-height: 1; }
.logo-accent { color: var(--accent-purple-light); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--grad-purple-cyan);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--text-primary); }
.nav__links a:hover::after { width: 100%; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  text-align: center;
}

/* ---- FLOATING MATH SYMBOLS ---- */
.hero__mathbg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.math-sym {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-size: var(--size);
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--accent-purple);
  opacity: 0.055;
  animation: floatSym var(--dur, 9s) ease-in-out var(--delay, 0s) infinite alternate;
  user-select: none;
  line-height: 1;
}

@keyframes floatSym {
  0%   { transform: translateY(0)    rotate(0deg);   opacity: 0.04;  }
  50%  { transform: translateY(-18px) rotate(8deg);  opacity: 0.1;   }
  100% { transform: translateY(-28px) rotate(-6deg); opacity: 0.055; }
}

.hero__aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(124, 58, 237, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(6, 182, 212, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
  animation: auroraMove 12s ease-in-out infinite alternate;
}

@keyframes auroraMove {
  0%   { transform: scale(1) translate(0, 0); }
  33%  { transform: scale(1.05) translate(-20px, 10px); }
  66%  { transform: scale(0.98) translate(15px, -15px); }
  100% { transform: scale(1.02) translate(-10px, 20px); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 99px;
  margin-bottom: 32px;
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px var(--accent-cyan); transform: scale(1); }
  50%       { box-shadow: 0 0 20px var(--accent-cyan); transform: scale(1.3); }
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero__headline .text-gradient { display: block; }

.hero__subheadline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 44px;
  line-height: 1.75;
}
.hero__subheadline em { color: var(--accent-cyan-light); font-style: normal; font-weight: 600; }

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  width: fit-content;
  margin: 0 auto;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}

.proof-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  background: var(--grad-purple-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.proof-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--grad-purple-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proof-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.03em;
}

.proof-divider {
  width: 1px;
  height: 52px;
  background: var(--border);
  flex-shrink: 0;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent-purple), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}
.hero__scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.025);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}

.trust-bar__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.trust-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-logo {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--transition);
}
.trust-logo:hover { color: var(--text-secondary); }

/* ===== 6W INTRO ===== */
.intro-6w {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  text-align: center;
}

.six-w-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}

.w-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.w-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-purple-cyan);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}
.w-card:hover {
  border-color: rgba(124, 58, 237, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--glow-purple);
}
.w-card > * { position: relative; z-index: 1; }

.w-icon { font-size: 2rem; margin-bottom: 16px; }
.w-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.w-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* ===== PRODUCTS ===== */
.products {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: linear-gradient(to bottom, transparent, rgba(124, 58, 237, 0.04), transparent);
}

/* 6-card grid: two balanced rows of three cards */
.products__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  align-items: start;
}

.products__grid .product-card:nth-child(1),
.products__grid .product-card:nth-child(2),
.products__grid .product-card:nth-child(3),
.products__grid .product-card:nth-child(4),
.products__grid .product-card:nth-child(5),
.products__grid .product-card:nth-child(6) { grid-column: span 2; }

.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px 32px;
  transition: var(--transition-slow);
  overflow: hidden;
}

.product-card--featured {
  border-color: rgba(124, 58, 237, 0.2);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.product-card__glow {
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  top: -80px; right: -60px;
  opacity: 0.12;
  filter: blur(60px);
  transition: opacity var(--transition);
  pointer-events: none;
}
.product-card:hover .product-card__glow { opacity: 0.25; }

.product-card__glow--purple { background: var(--accent-purple); }
.product-card__glow--cyan   { background: var(--accent-cyan); }
.product-card__glow--gold   { background: var(--accent-gold); }
.product-card__glow--green  { background: var(--accent-green); }
.product-card__glow--pink   { background: var(--accent-rose); }

.product-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.badge--hot    { background: rgba(124, 58, 237, 0.2);  color: var(--accent-purple-light); border: 1px solid rgba(124,58,237,0.3); }
.badge--new    { background: rgba(6, 182, 212, 0.15); color: var(--accent-cyan-light);   border: 1px solid rgba(6,182,212,0.3); }
.badge--value  { background: rgba(245, 158, 11, 0.15);color: var(--accent-gold-light);   border: 1px solid rgba(245,158,11,0.3); }
.badge--kids   { background: rgba(245, 158, 11, 0.15);color: var(--accent-gold-light);   border: 1px solid rgba(245,158,11,0.3); }
.badge--urgent { background: rgba(16, 185, 129, 0.15);color: var(--accent-green-light);  border: 1px solid rgba(16,185,129,0.3); }
.badge--pro    { background: rgba(244, 63, 94, 0.15); color: var(--accent-rose-light);   border: 1px solid rgba(244,63,94,0.3); }

/* ---- CARD TOP ROW (badge + platform chip) ---- */
.card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.card-top-row .product-card__badge { margin-bottom: 0; }

/* ---- PLATFORM CHIP ---- */
.platform-chip {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 99px;
  white-space: nowrap;
}
.platform--hotmart  { background: rgba(255,87,34,0.15);  color: #ff9068; border: 1px solid rgba(255,87,34,0.3); }
.platform--udemy    { background: rgba(167,139,250,0.15); color: #c4b5fd; border: 1px solid rgba(167,139,250,0.3); }
.platform--coursera { background: rgba(6,182,212,0.15);  color: #67e8f9; border: 1px solid rgba(6,182,212,0.3); }
.platform--clickbank{ background: rgba(16,185,129,0.15); color: #6ee7b7; border: 1px solid rgba(16,185,129,0.3); }

/* ---- NEW BUTTON VARIANTS ---- */
.btn--green {
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  box-shadow: var(--glow-green);
}
.btn--green:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(16, 185, 129, 0.5);
}
.btn--pink {
  background: linear-gradient(135deg, #be185d, #f43f5e);
  color: #fff;
  box-shadow: var(--glow-pink);
}
.btn--pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(244, 63, 94, 0.5);
}

.product-card__category {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cat-icon { font-size: 1rem; }

.product-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.product-card__title em {
  font-style: italic;
  color: var(--accent-cyan-light);
  -webkit-text-fill-color: initial;
}

.product-card__hook {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.65;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.product-card__benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.product-card__benefits li {
  display: flex;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  min-width: 22px;
  background: rgba(124, 58, 237, 0.15);
  color: var(--accent-purple-light);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 1px;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.meta-rating { display: flex; flex-direction: column; gap: 2px; }
.stars { color: #fbbf24; font-size: 0.9rem; letter-spacing: 1px; }
.rating-text { font-size: 0.78rem; color: var(--text-muted); }

.meta-price { display: flex; align-items: baseline; gap: 8px; }
.price-original { font-size: 0.9rem; color: var(--text-muted); text-decoration: line-through; }
.price-current {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  background: var(--grad-purple-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-card__disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* ===== TRUST SECTION ===== */
.trust-section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.trust-section__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: center;
}

.trust-section__visual { position: relative; }

.avatar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.avatar-ring {
  position: absolute;
  top: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--grad-purple-cyan);
  opacity: 0.08;
  filter: blur(40px);
}

.avatar-img {
  font-size: 4rem;
  width: 96px; height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.15);
  border: 2px solid rgba(124, 58, 237, 0.3);
  border-radius: 50%;
  position: relative;
}

.avatar-badge {
  font-size: 0.75rem;
  color: var(--accent-cyan-light);
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 4px 12px;
  border-radius: 99px;
  font-weight: 600;
}

.trust-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.t-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.t-stat__number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  min-width: 60px;
  background: var(--grad-gold-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.t-stat__label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.trust-copy {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 1rem;
}
.trust-copy--highlight {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--accent-cyan-light);
  border-left: 3px solid var(--accent-cyan);
  padding-left: 20px;
  margin: 28px 0;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trust-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-list li::before { content: ''; }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(to bottom, transparent, rgba(6, 182, 212, 0.03), transparent);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 60px;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(33.33% / 2 + 16px);
  right: calc(33.33% / 2 + 16px);
  height: 1px;
  background: linear-gradient(to right, var(--accent-purple), var(--accent-cyan));
  opacity: 0.4;
}

.step { padding: 0 32px; position: relative; }

.step__number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  background: var(--grad-purple-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
  margin-bottom: 20px;
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  text-align: center;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  text-align: left;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--glow-purple);
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  font-weight: 900;
  color: var(--accent-purple);
  opacity: 0.3;
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad-purple-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.author-info { flex: 1; }
.author-info strong { display: block; font-size: 0.9rem; color: var(--text-primary); }
.author-info span  { font-size: 0.78rem; color: var(--text-muted); }

.author-rating { color: #fbbf24; font-size: 0.75rem; }

/* ===== FAQ ===== */
.faq {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  text-align: center;
}

.faq__list {
  margin-top: 56px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.is-open { border-color: rgba(124, 58, 237, 0.3); }

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}
.faq-item__question:hover { color: var(--accent-purple-light); }

.faq-icon {
  font-size: 1.4rem;
  color: var(--accent-purple);
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.is-open .faq-item__answer { max-height: 200px; }

.faq-item__answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(245, 158, 11, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta__inner { position: relative; z-index: 1; }

.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
}

.final-cta__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.final-cta__urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--accent-gold-light);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 8px 20px;
  border-radius: 99px;
  margin-bottom: 36px;
  font-weight: 600;
}

.urgency-dot {
  width: 7px; height: 7px;
  background: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-gold);
  animation: pulse 2s ease-in-out infinite;
}

.final-cta__buttons { margin-bottom: 24px; }

.final-cta__legal {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer__brand .nav__logo { margin-bottom: 16px; }
.footer__brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--text-primary); }

.footer__bottom { text-align: center; }

.footer__disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 700px;
  margin: 0 auto 12px;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 24px;
}

/* ---- Footer social buttons ---- */
.footer__soc {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .8rem;
  border-radius: 50px;
  font-size: .77rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: var(--transition);
  text-decoration: none;
}
.footer__soc--wa {
  border-color: rgba(37,211,102,.3);
  color: #4ade80;
}
.footer__soc--wa:hover {
  background: rgba(37,211,102,.1);
  transform: translateY(-1px);
}
.footer__soc--fb {
  border-color: rgba(96,165,250,.3);
  color: #60a5fa;
}
.footer__soc--fb:hover {
  background: rgba(96,165,250,.1);
  transform: translateY(-1px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.3); }
  50%       { box-shadow: 0 0 50px rgba(124, 58, 237, 0.6), 0 0 100px rgba(124, 58, 237, 0.2); }
}

.product-cta { animation: glow-pulse 3s ease-in-out infinite; }
.product-cta:hover { animation: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  /* 6-card grid: three balanced rows of two cards */
  .products__grid { grid-template-columns: repeat(4, 1fr); }
  .products__grid .product-card:nth-child(1),
  .products__grid .product-card:nth-child(2)  { grid-column: span 2; }
  .products__grid .product-card:nth-child(3),
  .products__grid .product-card:nth-child(4)  { grid-column: span 2; }
  .products__grid .product-card:nth-child(5),
  .products__grid .product-card:nth-child(6)  { grid-column: span 2; }
}

@media (max-width: 1024px) {
  .steps-grid           { grid-template-columns: 1fr; }
  .steps-grid::before   { display: none; }
  .six-w-grid           { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid   { grid-template-columns: 1fr 1fr; }
  .trust-section__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__top          { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav__links   { display: none; }
  .btn--nav     { display: none; }
  .nav__burger  { display: flex; }

  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(5, 5, 15, 0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
  }

  .hero__proof    { flex-direction: column; padding: 24px; width: 100%; }
  .proof-divider  { width: 80%; height: 1px; }
  .hero__ctas     { flex-direction: column; align-items: stretch; text-align: center; }

  /* all cards in single column on mobile */
  .products__grid { grid-template-columns: 1fr; }
  .products__grid .product-card:nth-child(n) { grid-column: 1; }

  .six-w-grid          { grid-template-columns: 1fr; }
  .testimonials__grid  { grid-template-columns: 1fr; }
  .footer__links       { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero__headline  { font-size: 2.2rem; }
  .section-title   { font-size: 1.75rem; }
  .product-card    { padding: 28px 24px 24px; }
  .footer__links   { grid-template-columns: 1fr; }
  .math-sym        { opacity: 0.03; }
}
