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

:root {
  --bg: #070D1A;
  --bg-2: #0C1528;
  --bg-card: #0F1A2E;
  --fg: #E8F0FE;
  --fg-muted: #6B7FA3;
  --accent: #00FF94;
  --accent-dim: rgba(0, 255, 148, 0.12);
  --accent-glow: rgba(0, 255, 148, 0.25);
  --border: rgba(0, 255, 148, 0.12);
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Noto Sans SC', 'Figtree', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 { font-family: 'Syne', system-ui, sans-serif; font-weight: 700; line-height: 1.15; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-headline {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--fg);
  margin-bottom: 20px;
}

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}

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

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,148,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,148,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

/* Nodes */
.node {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow), 0 0 60px var(--accent-glow);
  animation: pulse 3s ease-in-out infinite;
}

.node::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0.4;
}

.node-1 { width: 12px; height: 12px; top: 25%; left: 55%; animation-delay: 0s; }
.node-2 { width: 8px; height: 8px; top: 40%; left: 70%; animation-delay: 0.6s; }
.node-3 { width: 6px; height: 6px; top: 55%; left: 62%; animation-delay: 1.2s; }
.node-4 { width: 10px; height: 10px; top: 60%; left: 80%; animation-delay: 0.3s; }
.node-5 { width: 7px; height: 7px; top: 35%; left: 85%; animation-delay: 0.9s; }

/* Connector lines */
.connector {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--accent));
  height: 1px;
  opacity: 0.3;
}
.c1 { top: 27%; left: 58%; width: 80px; transform: rotate(15deg); }
.c2 { top: 42%; left: 68%; width: 60px; transform: rotate(20deg); }
.c3 { top: 58%; left: 60%; width: 70px; transform: rotate(-10deg); }
.c4 { top: 62%; left: 78%; width: 50px; transform: rotate(5deg); }

.glow-center {
  position: absolute;
  top: 50%; left: 55%;
  transform: translate(-50%, -50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,255,148,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-label,
.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  background: var(--accent-dim);
}

.hero-headline {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-cta {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--bg);
  background: var(--accent);
  padding: 14px 36px;
  border-radius: 10px;
  text-decoration: none;
  margin-bottom: 48px;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 0 24px var(--accent-glow);
}
.hero-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 400;
}

.stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Stages Section */
.stages {
  padding: 100px 60px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.stages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.stage-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.3s;
}

.stage-card:hover { border-color: var(--accent); }

.stage-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.stage-icon {
  margin-bottom: 16px;
  opacity: 0.9;
}

.stage-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--fg);
}

.stage-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Commissions Section */
.commissions {
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid var(--border);
}

.commissions-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.commissions-note {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Tier cards */
.tier {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.tier:last-child { margin-bottom: 0; }

.tier-badge {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 6px;
  min-width: 70px;
  text-align: center;
}

.tier-l1 .tier-badge { background: rgba(0,255,148,0.15); }
.tier-l2 .tier-badge { color: #7BCEFF; border-color: rgba(123,206,255,0.3); background: rgba(123,206,255,0.08); }
.tier-l3 .tier-badge { color: #B89FFF; border-color: rgba(184,159,255,0.3); background: rgba(184,159,255,0.08); }
.tier-l2 .tier-badge { background: rgba(123,206,255,0.08); }
.tier-l3 .tier-badge { background: rgba(184,159,255,0.08); }

.tier-info { flex: 1; }

.tier-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.tier-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 4px;
}

.tier-label { color: var(--fg-muted); }
.tier-val { color: var(--fg); font-weight: 500; }
.tier-val.accent { color: var(--accent); font-weight: 700; font-size: 15px; }

/* Playbook Section */
.playbook {
  padding: 100px 60px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.playbook-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 48px;
}

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

.play-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.play-icon { margin-bottom: 16px; }

.play-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--fg);
}

.play-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Closing Section */
.closing {
  padding: 120px 60px;
  border-top: 1px solid var(--border);
}

.closing-inner { max-width: 680px; }

.closing-headline {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 28px;
}

.closing-accent { color: var(--accent); }

.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.closing-cta {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--bg);
  background: var(--accent);
  padding: 14px 36px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 0 24px var(--accent-glow);
}
.closing-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* Footer */
.footer {
  padding: 40px 60px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}

.footer-meta {
  font-size: 13px;
  color: var(--fg-muted);
}

.footer-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  margin-left: auto;
}
.footer-cta:hover { background: var(--accent-dim); border-color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 900px) {
  .hero { padding: 100px 32px 60px; }
  .stages { padding: 72px 32px; }
  .commissions { padding: 72px 32px; grid-template-columns: 1fr; gap: 48px; }
  .playbook { padding: 72px 32px; }
  .closing { padding: 80px 32px; }
  .footer { padding: 32px; }

  .stages-grid { grid-template-columns: repeat(2, 1fr); }
  .playbook-grid { grid-template-columns: 1fr; }

  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .stat-value { font-size: 18px; }

  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .stages-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 36px; }
  .nav { padding: 14px 20px; }
  .nav-cta { font-size: 12px; padding: 7px 14px; }
}

/* ===================== */
/* Section shared layout */
/* ===================== */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ========================= */
/* Benefits Section          */
/* ========================= */
.benefits {
  padding: 96px 40px;
  border-top: 1px solid var(--border);
}

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

/* 5 cards: first 3 on top row, last 2 centered on bottom */
.benefits-grid .benefit-card:nth-child(4) { grid-column: 1 / 2; }
.benefits-grid .benefit-card:nth-child(5) { grid-column: 2 / 3; }

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.25s, transform 0.2s;
}
.benefit-card:hover {
  border-color: rgba(0, 255, 148, 0.35);
  transform: translateY(-2px);
}

.benefit-icon { margin-bottom: 16px; }

.benefit-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.benefit-card strong { color: var(--accent); font-weight: 700; }

/* ========================= */
/* How It Works Section      */
/* ========================= */
.howitworks {
  padding: 96px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.steps-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 52px;
}

.step-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--accent);
  opacity: 0.6;
  flex-shrink: 0;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}

.step-icon { margin-bottom: 16px; }

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.steps-cta {
  text-align: center;
  margin-top: 48px;
}

/* ========================= */
/* Commissions section tweak */
/* ========================= */
.commissions {
  padding: 96px 40px;
}

/* ========================= */
/* Earnings / Snapshots      */
/* ========================= */
.earnings {
  padding: 96px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.earnings-sub {
  font-size: 15px;
  color: var(--fg-muted);
  margin-top: -4px;
  margin-bottom: 48px;
}

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

.snapshot-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}

.snapshot-card--featured {
  border-color: rgba(0, 255, 148, 0.4);
  box-shadow: 0 0 30px rgba(0, 255, 148, 0.06);
}

.snapshot-featured-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.snapshot-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.snapshot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.snapshot-meta { flex: 1; }

.snapshot-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}

.snapshot-period {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
}

.snapshot-badge {
  font-size: 11px;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 6px;
}

.snapshot-body { display: flex; flex-direction: column; gap: 10px; }

.snapshot-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--fg-muted);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.snapshot-val {
  color: var(--fg);
  font-weight: 500;
}

.snapshot-val.accent {
  color: var(--accent);
  font-weight: 700;
}

.snapshot-total {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  padding-top: 4px;
  margin-top: 4px;
}

.snapshot-total-val {
  font-size: 18px;
  color: var(--accent);
  font-family: 'Syne', sans-serif;
}

.earnings-disclaimer {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.5;
  margin-top: 28px;
  line-height: 1.5;
}

/* ========================= */
/* FAQ Section               */
/* ========================= */
.faq {
  padding: 96px 40px;
  border-top: 1px solid var(--border);
}

.faq-list {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  background: var(--bg-card);
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--fg);
  font-size: 15px;
  font-weight: 500;
  font-family: 'Noto Sans SC', system-ui, sans-serif;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(0, 255, 148, 0.04); }

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-open .faq-question { background: rgba(0, 255, 148, 0.05); }
.faq-open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  background: var(--bg);
}

.faq-open .faq-answer {
  max-height: 200px;
  padding: 16px 24px 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.faq-cta {
  margin-top: 40px;
  text-align: center;
}

.faq-cta p {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.faq-contact {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 255, 148, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.faq-contact:hover { border-color: var(--accent); }

/* ========================= */
/* Closing Section Updates   */
/* ========================= */
.closing {
  padding: 96px 40px;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.closing-glow {
  position: absolute;
  top: 50%; left: -100px;
  transform: translateY(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,255,148,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.closing-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* ========================= */
/* Footer Updates            */
/* ========================= */
.footer-links {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

/* ========================= */
/* Responsive — new sections */
/* ========================= */
@media (max-width: 900px) {
  .benefits { padding: 72px 24px; }
  .howitworks { padding: 72px 24px; }
  .earnings { padding: 72px 24px; }
  .faq { padding: 72px 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
  .commissions { padding: 72px 24px; grid-template-columns: 1fr; gap: 48px; }

  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid .benefit-card:nth-child(4),
  .benefits-grid .benefit-card:nth-child(5) { grid-column: auto; }

  .steps-row { flex-direction: column; gap: 12px; }
  .step-connector { display: none; }

  .earnings-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .hero { padding: 90px 20px 60px; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .stat-sep { display: none; }

  .footer-top { flex-direction: column; gap: 8px; align-items: flex-start; }
  .footer-cta { margin-left: 0; }
  .footer-bottom { flex-direction: column; gap: 4px; }
}

/* ========================= */
/* Lead Form Section         */
/* ========================= */
.leadform {
  padding: 96px 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.leadform-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 48px;
  position: relative;
  overflow: hidden;
}

.leadform-glow {
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,255,148,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.leadform-header { margin-bottom: 36px; }

.leadform-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: 12px;
}

.leadform-accent { color: var(--accent); }

.leadform-sub {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Field wrapper */
.lf-field {
  margin-bottom: 24px;
}

.lf-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.lf-required { color: var(--accent); }

/* Text input */
.lf-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--fg);
  font-family: 'Noto Sans SC', system-ui, sans-serif;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.lf-input::placeholder { color: var(--fg-muted); opacity: 0.6; }
.lf-input:focus { border-color: var(--accent); background: rgba(0,255,148,0.04); }

/* Hint text */
.lf-hint {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 6px;
  opacity: 0.7;
}

/* Select */
.lf-select-wrap {
  position: relative;
}

.lf-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 40px 12px 16px;
  font-size: 15px;
  color: var(--fg);
  font-family: 'Noto Sans SC', system-ui, sans-serif;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.lf-select:focus { border-color: var(--accent); background: rgba(0,255,148,0.04); }
.lf-select option { background: #0C1528; color: var(--fg); }

.lf-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fg-muted);
  pointer-events: none;
}

/* Checkboxes */
.lf-checkgroup {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lf-check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}
.lf-check:hover { background: rgba(0,255,148,0.04); border-color: var(--border); }

.lf-check input[type=checkbox] { position: absolute; opacity: 0; width: 0; height: 0; }

.lf-check-box {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid var(--fg-muted);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}

.lf-check input:checked ~ .lf-check-box {
  background: var(--accent);
  border-color: var(--accent);
}

.lf-check input:checked ~ .lf-check-box::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid #070D1A;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  display: block;
}

.lf-check-text {
  font-size: 14px;
  color: var(--fg);
  line-height: 1.4;
}

.lf-check:has(input:checked) {
  background: rgba(0,255,148,0.06);
  border-color: rgba(0,255,148,0.2);
}

/* Textarea */
.lf-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--fg);
  font-family: 'Noto Sans SC', system-ui, sans-serif;
  outline: none;
  resize: vertical;
  min-height: 80px;
  line-height: 1.6;
  transition: border-color 0.2s, background 0.2s;
}
.lf-textarea::placeholder { color: var(--fg-muted); opacity: 0.6; }
.lf-textarea:focus { border-color: var(--accent); background: rgba(0,255,148,0.04); }

/* Field error state */
.lf-error {
  display: block;
  font-size: 12px;
  color: #FF6B6B;
  margin-top: 6px;
  min-height: 16px;
}

.lf-field--error .lf-input,
.lf-field--error .lf-select,
.lf-field--error .lf-textarea {
  border-color: rgba(255,107,107,0.6);
}

/* Global error */
.lf-global-error {
  background: rgba(255,107,107,0.08);
  border: 1px solid rgba(255,107,107,0.3);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: #FF6B6B;
  margin-bottom: 20px;
}

/* Submit button */
.lf-submit {
  width: 100%;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 10px;
  padding: 15px 24px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Noto Sans SC', system-ui, sans-serif;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 0 24px var(--accent-glow);
}
.lf-submit:hover:not(:disabled) { opacity: 0.9; transform: translateY(-1px); }
.lf-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* Success state */
.leadform-success {
  text-align: center;
  padding: 16px 0;
}

.lf-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0,255,148,0.12);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.lf-success-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 12px;
}

.lf-success-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 380px;
  margin: 0 auto;
}

.lf-success-divider {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin: 28px auto;
}

.lf-success-nudge {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.lf-success-cta {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: var(--bg);
  background: var(--accent);
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s;
  box-shadow: 0 0 20px var(--accent-glow);
}
.lf-success-cta:hover { opacity: 0.9; }

/* Lead form responsive */
@media (max-width: 900px) {
  .leadform { padding: 72px 24px; }
  .leadform-card { padding: 32px 28px; }
}

@media (max-width: 480px) {
  .leadform-card { padding: 24px 20px; }
  .lf-submit { font-size: 15px; }
}