:root {
  --bg: #0a0a0e;
  --bg-2: #111118;
  --bg-card: #16161e;
  --fg: #f0ede8;
  --fg-muted: #8a8690;
  --accent: #a8ff57;
  --accent-dim: #7ab840;
  --blue: #4fa3ff;
  --purple: #c87fff;
  --border: #22222e;
  --radius: 12px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--fg-muted);
  text-decoration: none;
  padding: 8px 12px;
  transition: color 0.15s;
}
.nav-link:hover {
  color: var(--fg);
}
.nav-demo-btn {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--accent);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid rgba(168,255,87,0.3);
  border-radius: 8px;
  transition: background 0.15s, border-color 0.15s;
}
.nav-demo-btn:hover {
  background: rgba(168,255,87,0.08);
  border-color: rgba(168,255,87,0.5);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-weight: 400;
}

/* SECTION LABEL */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-family: var(--font-display);
}

/* HERO */
.hero {
  padding: 80px 48px 100px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168,255,87,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-cta-group {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
.proof-item {
  font-size: 13px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
}
.proof-item::before {
  content: '✓';
  color: var(--accent);
  font-size: 12px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accent);
  color: #0a0a0e;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover {
  background: #b8ff66;
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.btn-ghost:hover {
  border-color: rgba(168,255,87,0.3);
  color: var(--fg);
}
.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(168,255,87,0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  font-family: var(--font-display);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
  color: var(--fg);
}
.hero-lede {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 480px;
}

/* HERO WIDGET */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hero-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.hero-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.widget-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: #0d0d14;
  border-bottom: 1px solid var(--border);
}
.widget-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.widget-dot.red { background: #ff5f57; }
.widget-dot.yellow { background: #ffbd2e; }
.widget-dot.green { background: #28c840; }
.widget-title {
  font-size: 12px;
  color: var(--fg-muted);
  margin-left: 8px;
  font-family: var(--font-body);
}
.widget-chat {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  font-family: var(--font-body);
}
.chat-msg.user {
  background: #1e1e28;
  color: var(--fg);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-msg.bot {
  background: #0f1e0f;
  color: var(--accent);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(168,255,87,0.15);
}
.chat-msg.bot.confirmed {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.badge-confirmed {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(168,255,87,0.15);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
}
.widget-status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: #0a0a0e;
  border-top: 1px solid var(--border);
}
.status-live {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent);
  background: rgba(168,255,87,0.12);
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--font-display);
}
.status-time {
  font-size: 12px;
  color: var(--fg-muted);
}

/* HERO STATS */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stat {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* PROBLEM */
.problem {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.problem-header {
  margin-bottom: 60px;
}
.problem-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  max-width: 600px;
}
.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}
.pstat {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.pstat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -2px;
  margin-bottom: 12px;
}
.pstat-text {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.problem-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 0 0;
  border-top: 1px solid var(--border);
}
.problem-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
  font-style: italic;
  opacity: 0.9;
}
.problem-vs {
  max-width: 800px;
  margin: 60px auto 0;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.vs-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
  text-align: center;
}
.vs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.vs-other, .vs-velox {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.vs-velox {
  border-color: rgba(168,255,87,0.3);
  background: linear-gradient(180deg, rgba(168,255,87,0.05) 0%, var(--bg-card) 100%);
}
.vs-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.vs-other .vs-name { color: var(--fg-muted); }
.vs-velox .vs-name { color: var(--accent); }
.vs-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .vs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .vs-grid { grid-template-columns: 1fr; }
}

/* SOLUTIONS */
.solutions {
  padding: 100px 48px;
  background: var(--bg);
}
.solutions-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.solutions-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 60px;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: border-color 0.2s;
}
.solution-card:hover {
  border-color: rgba(168,255,87,0.2);
}
.sol-icon {
  margin-bottom: 20px;
}
.solution-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}
.solution-card > p {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.sol-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sol-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.sol-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 13px;
}

/* PACKAGES */
.packages {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.packages-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.packages-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 60px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
}
.pricing-card.featured {
  border-color: rgba(168,255,87,0.3);
  background: linear-gradient(180deg, rgba(168,255,87,0.04) 0%, var(--bg-card) 100%);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}
.price-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -1px;
}
.price-sub {
  font-size: 14px;
  color: var(--fg-muted);
}
.pricing-desc {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}
.pricing-recurring {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.recurring-mo {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 400;
}
.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
}

/* PRICING TOGGLE */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}
.pricing-toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.annual-badge {
  font-size: 11px;
  font-weight: 600;
  background: rgba(168,255,87,0.15);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 100px;
}
.pricing-toggle {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
}
.pricing-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.pricing-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: background 0.2s, border-color 0.2s;
}
.pricing-toggle-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--fg-muted);
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
}
.pricing-toggle input:checked + .pricing-toggle-slider {
  background: rgba(168,255,87,0.1);
  border-color: rgba(168,255,87,0.4);
}
.pricing-toggle input:checked + .pricing-toggle-slider::before {
  transform: translateX(22px);
  background: var(--accent);
}

/* PRICING CARD FOOTER */
.pricing-card-footer {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-setup {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
}
.pricing-cta {
  display: block;
  text-align: center;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s, border-color 0.15s;
}
.pricing-cta.btn-primary {
  background: var(--accent);
  color: #0a0a0e;
}
.pricing-cta.btn-primary:hover {
  background: #b8ff66;
  transform: translateY(-1px);
}
.pricing-cta.btn-ghost {
  color: var(--fg-muted);
  border: 1px solid var(--border);
}
.pricing-cta.btn-ghost:hover {
  border-color: rgba(168,255,87,0.3);
  color: var(--fg);
}

/* COMPARISON TABLE */
.comparison-section {
  margin-top: 64px;
}
.comparison-toggle {
  display: none;
  width: 100%;
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg-muted);
  font-size: 14px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: border-color 0.15s;
}
.comparison-toggle:hover {
  border-color: rgba(168,255,87,0.3);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.comparison-table th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: var(--bg-2);
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table td:first-child {
  color: var(--fg);
  font-weight: 500;
}
.comparison-table td:not(:first-child) {
  color: var(--fg-muted);
}
.comparison-table .check {
  color: var(--accent);
  font-weight: 700;
}
.comparison-table .dash {
  color: var(--fg-muted);
  opacity: 0.4;
}

@media (max-width: 900px) {
  .comparison-table {
    display: none;
  }
  .comparison-toggle {
    display: block;
  }
  .comparison-table.open {
    display: table;
    margin-top: 16px;
  }
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  line-height: 1.1;
}
.closing p {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.closing-targets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.target-label {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
  margin-right: 4px;
}
.target-tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-body);
}
.closing-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}
.closing-social {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.social-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.social-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
}
.social-label {
  font-size: 13px;
  color: var(--fg-muted);
}

/* FOOTER */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 300px;
}
.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 16px;
}
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.trust-badge {
  font-size: 12px;
  color: var(--fg-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-link {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-link:hover {
  color: var(--fg);
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid,
  .problem-stats,
  .solutions-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 60px 24px 80px;
  }
  .nav {
    padding: 20px 24px;
  }
  .problem, .solutions, .packages, .closing {
    padding: 80px 24px;
  }
  .footer {
    padding: 40px 24px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .pstat-num {
    font-size: 36px;
  }
}
/* EMAIL CAPTURE WIDGET */
.email-capture {
  padding: 100px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.email-capture::before {
  content: '';
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(168,255,87,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.email-capture-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.email-capture-text h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 16px;
}
.email-capture-text p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 440px;
}
.lead-form {
  width: 100%;
}
.lead-form-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.lead-input {
  flex: 1;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  min-width: 0;
}
.lead-input::placeholder {
  color: var(--fg-muted);
  opacity: 0.7;
}
.lead-input:focus {
  border-color: rgba(168,255,87,0.5);
  box-shadow: 0 0 0 3px rgba(168,255,87,0.1);
}
.lead-input.error {
  border-color: #ff5f5f;
}
.lead-submit {
  padding: 14px 24px;
  background: var(--accent);
  color: #0a0a0e;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s, opacity 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
}
.lead-submit:hover {
  background: #b8ff66;
  transform: translateY(-1px);
}
.lead-submit:active {
  transform: translateY(0);
}
.lead-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.lead-submit-loading {
  display: none;
}
.lead-submit.loading .lead-submit-text {
  display: none;
}
.lead-submit.loading .lead-submit-loading {
  display: flex;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.spinner {
  animation: spin 0.8s linear infinite;
}
.lead-error {
  margin-top: 8px;
  font-size: 13px;
  color: #ff5f5f;
  min-height: 18px;
  font-family: var(--font-body);
}
.lead-success {
  margin-top: 16px;
}
.lead-success-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(168,255,87,0.07);
  border: 1px solid rgba(168,255,87,0.2);
  border-radius: 10px;
  padding: 18px 22px;
}
.lead-success-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
}
.lead-success-sub {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid,
  .problem-stats,
  .solutions-grid,
  .pricing-grid,
  .email-capture-inner {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 60px 24px 80px;
  }
  .nav {
    padding: 20px 24px;
  }
  .problem, .solutions, .packages, .closing, .email-capture {
    padding: 80px 24px;
  }
  .email-capture-inner {
    gap: 40px;
  }
  .footer {
    padding: 40px 24px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .pstat-num {
    font-size: 36px;
  }
}
@media (max-width: 600px) {
  .lead-form-row {
    flex-direction: column;
  }
  .lead-input {
    width: 100%;
  }
  .lead-submit {
    width: 100%;
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .hero-headline {
    font-size: 30px;
  }
  .stat-val {
    font-size: 20px;
  }
}