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

:root {
  --navy: #0a0f1e;
  --navy-light: #131b33;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --red: #ef4444;
  --green: #22c55e;
  --orange: #f59e0b;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
  background: var(--white);
}

.section-inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 15, 30, 0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.logo { color: var(--white); font-size: 20px; font-weight: 700; text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--gray-400); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--blue) !important; color: var(--white) !important;
  padding: 8px 20px !important; border-radius: 6px;
  font-weight: 600 !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue-light) !important; }

/* HERO */
.hero {
  background: var(--navy); color: var(--white);
  padding: 140px 24px 80px; text-align: center;
}
.hero-inner { max-width: 820px; margin: 0 auto; }
.hero-kicker {
  font-size: 15px; color: var(--orange); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px;
}
.hero h1 { font-size: 48px; line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 20px; }
.hero-sub { font-size: 18px; color: var(--gray-400); max-width: 640px; margin: 0 auto 36px; line-height: 1.7; }
.btn-hero {
  display: inline-block; background: var(--blue); color: var(--white);
  padding: 16px 40px; border-radius: 8px; font-size: 17px; font-weight: 700;
  text-decoration: none; transition: background 0.2s, transform 0.2s;
}
.btn-hero:hover { background: var(--blue-light); transform: translateY(-1px); }
.hero-note { font-size: 13px; color: var(--gray-500); margin-top: 14px; }

/* INTERRUPT COUNTER */
.interrupts { background: var(--gray-900); padding: 48px 24px; }
.interrupt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; }
.interrupt-card { padding: 16px; }
.interrupt-num { display: block; font-size: 42px; font-weight: 800; color: var(--orange); margin-bottom: 6px; }
.interrupt-label { font-size: 14px; color: var(--gray-400); line-height: 1.5; }
.interrupt-label em { color: var(--white); font-style: normal; font-weight: 600; }

/* PAIN / QUOTES */
.pain { background: var(--gray-50); padding: 80px 24px; }
.pain h2 { text-align: center; font-size: 36px; font-weight: 800; margin-bottom: 8px; }
.section-sub { text-align: center; color: var(--gray-500); margin-bottom: 48px; font-size: 16px; }
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
blockquote {
  background: var(--white); border-radius: 12px; padding: 28px;
  border-left: 4px solid var(--red); box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
blockquote p { font-size: 16px; font-weight: 500; color: var(--gray-900); line-height: 1.5; margin-bottom: 12px; font-style: italic; }
blockquote cite { font-size: 13px; color: var(--gray-500); font-style: normal; }

/* PROBLEM — WHY BLOCKING DOESN'T WORK */
.problem { padding: 80px 24px; }
.problem-content { max-width: 720px; margin: 0 auto; }
.problem-content h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; text-align: center; }
.problem-lead { font-size: 18px; color: var(--gray-600); text-align: center; margin-bottom: 40px; line-height: 1.7; }
.problem-lead strong { color: var(--gray-900); }
.problem-points { display: flex; flex-direction: column; gap: 28px; }
.point { display: flex; gap: 20px; align-items: flex-start; }
.point-icon {
  width: 36px; height: 36px; border-radius: 50%; background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; flex-shrink: 0; margin-top: 2px;
}
.point strong { display: block; font-size: 17px; color: var(--gray-900); margin-bottom: 4px; }
.point p { font-size: 15px; color: var(--gray-600); line-height: 1.6; }

/* TIME THEFT */
.time-theft { padding: 80px 24px; background: var(--navy); color: var(--white); }
.theft-box { max-width: 820px; margin: 0 auto; text-align: center; }
.theft-box h2 { font-size: 32px; font-weight: 800; margin-bottom: 40px; }
.theft-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.theft-item { padding: 24px; background: var(--navy-light); border-radius: 12px; border: 1px solid rgba(255,255,255,0.06); }
.theft-stat { display: block; font-size: 40px; font-weight: 800; color: var(--blue-light); margin-bottom: 8px; }
.theft-item p { font-size: 14px; color: var(--gray-400); line-height: 1.5; }

/* HOW IT WORKS */
.how { background: var(--gray-50); padding: 80px 24px; }
.how h2 { text-align: center; font-size: 36px; font-weight: 800; margin-bottom: 8px; color: var(--gray-900); }
.how .section-sub { color: var(--gray-500); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card {
  background: var(--white); border-radius: 12px; padding: 32px;
  border: 1px solid var(--gray-200); box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.step-num {
  width: 40px; height: 40px; border-radius: 10px; background: var(--blue);
  display: flex; align-items: center; justify-content: center; color: var(--white);
  font-size: 18px; font-weight: 800; margin-bottom: 16px;
}
.step-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--gray-900); }
.step-card p { color: var(--gray-600); font-size: 15px; }

/* VALIDATION — YOU'VE TRIED EVERYTHING */
.validation { padding: 80px 24px; }
.validation h2 { text-align: center; font-size: 36px; font-weight: 800; margin-bottom: 48px; }
.tried-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 820px; margin: 0 auto; }
.tried-card {
  padding: 28px; border-radius: 12px; background: var(--gray-50);
  border: 1px solid var(--gray-200);
}
.tried-card h3 {
  font-size: 16px; font-weight: 700; color: var(--red); margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.tried-card h3::before { content: "\2717"; font-size: 14px; }
.tried-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* PRICING */
.pricing { padding: 80px 24px; background: var(--navy); color: var(--white); }
.price-card {
  max-width: 480px; margin: 0 auto; background: var(--navy-light);
  border-radius: 16px; padding: 48px 40px; text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
}
.price-badge {
  display: inline-block; background: rgba(37, 99, 235, 0.2); color: var(--blue-light);
  padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600;
  margin-bottom: 16px; border: 1px solid rgba(37,99,235,0.3);
}
.price-amount { font-size: 64px; font-weight: 800; margin-bottom: 8px; }
.price-desc { color: var(--gray-400); margin-bottom: 32px; font-size: 16px; }
.price-features { list-style: none; text-align: left; margin-bottom: 32px; }
.price-features li {
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 15px; color: var(--gray-400); padding-left: 28px; position: relative;
}
.price-features li::before { content: "\2713"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.btn-price {
  display: inline-block; background: var(--blue); color: var(--white);
  padding: 16px 48px; border-radius: 8px; font-size: 17px; font-weight: 700;
  text-decoration: none; transition: background 0.2s;
}
.btn-price:hover { background: var(--blue-light); }

/* FAQ */
.faq { padding: 80px 24px; }
.faq h2 { text-align: center; font-size: 36px; font-weight: 800; margin-bottom: 40px; }
.faq-list { max-width: 700px; margin: 0 auto; }
details { border-bottom: 1px solid var(--gray-200); padding: 20px 0; }
summary {
  font-size: 17px; font-weight: 600; cursor: pointer; color: var(--gray-900);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
summary::after { content: "+"; font-size: 22px; color: var(--gray-400); font-weight: 400; }
details[open] summary::after { content: "-"; }
details p { margin-top: 12px; color: var(--gray-600); font-size: 15px; line-height: 1.7; }

/* FORM SECTION */
.get-started { padding: 80px 24px; background: var(--gray-50); }
.get-started h2 { text-align: center; font-size: 36px; font-weight: 800; margin-bottom: 8px; }
.form-container { max-width: 680px; margin: 0 auto; }

.steps-indicator { display: flex; justify-content: center; gap: 8px; margin-bottom: 32px; }
.step-dot {
  display: flex; align-items: center; gap: 6px; font-size: 13px; color: #9aa0b0;
  padding: 8px 16px; border-radius: 20px; background: var(--gray-200); transition: all 0.3s;
}
.step-dot span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%; background: var(--gray-400);
  color: var(--white); font-size: 12px; font-weight: 600;
}
.step-dot.active { background: var(--navy); color: var(--white); }
.step-dot.active span { background: var(--blue); }
.step-dot.done { background: #d0e8d8; color: #1a6b35; }
.step-dot.done span { background: #2a9d4a; }

.form-step {
  display: none; background: var(--white); border-radius: 12px; padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.form-step.active { display: block; }
.form-step h3 { font-size: 22px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.step-desc { color: var(--gray-500); font-size: 14px; margin-bottom: 24px; text-align: left; }

.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 4px; }
input, select {
  width: 100%; padding: 10px 12px; border: 1px solid var(--gray-200);
  border-radius: 6px; font-size: 15px; color: var(--gray-900); background: var(--white);
  transition: border-color 0.2s;
}
input:focus, select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
input.invalid { border-color: var(--red); }

.legal-text {
  background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 8px;
  padding: 20px; margin-bottom: 24px; font-size: 13px; color: var(--gray-700);
  max-height: 240px; overflow-y: auto;
}
.legal-text ul { margin: 8px 0 8px 20px; }
.legal-text li { margin-bottom: 4px; }

.sig-label { margin-bottom: 8px; }
.signature-wrapper {
  border: 2px dashed var(--gray-200); border-radius: 8px; background: var(--gray-50); margin-bottom: 8px;
}
.signature-wrapper.invalid { border-color: var(--red); }
#signature-pad { display: block; width: 100%; height: 160px; }

.actions { display: flex; justify-content: space-between; margin-top: 28px; }
.btn {
  padding: 12px 28px; border: none; border-radius: 8px;
  font-size: 15px; font-weight: 600; cursor: pointer; transition: background 0.2s;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-light); }
.btn-secondary { background: var(--gray-200); color: var(--gray-700); }
.btn-secondary:hover { background: var(--gray-400); color: var(--white); }
.btn-small {
  padding: 6px 14px; font-size: 12px; background: var(--gray-200); color: var(--gray-500);
  border: none; border-radius: 6px; cursor: pointer;
}

.review-summary { background: var(--gray-50); border-radius: 8px; padding: 20px; font-size: 14px; }
.review-summary .review-row { display: flex; padding: 6px 0; border-bottom: 1px solid var(--gray-200); }
.review-summary .review-row:last-child { border-bottom: none; }
.review-summary .review-label { width: 160px; font-weight: 600; color: var(--gray-500); flex-shrink: 0; }
.review-summary .review-value { color: var(--gray-900); }
.review-summary .sig-preview { margin-top: 12px; }
.review-summary .sig-preview img { max-height: 80px; border: 1px solid var(--gray-200); border-radius: 6px; background: var(--white); }

.message { text-align: center; padding: 40px 32px; border-radius: 12px; }
.message h2 { margin-bottom: 8px; }
.message.success { background: #d0e8d8; color: #1a6b35; }
.message.error { background: #f8d7d7; color: #8b1a1a; }
.hidden { display: none; }

/* FOOTER */
.footer { background: var(--navy); color: var(--gray-400); padding: 48px 24px 32px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; }
.footer-brand strong { color: var(--white); font-size: 18px; display: block; margin-bottom: 8px; }
.footer-brand p { font-size: 14px; max-width: 320px; }
.footer-links a { color: var(--gray-400); text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; font-size: 13px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 120px 20px 60px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }

  .interrupt-grid { grid-template-columns: 1fr; gap: 16px; }
  .interrupt-num { font-size: 32px; }

  .quotes-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .tried-grid { grid-template-columns: 1fr; }
  .theft-grid { grid-template-columns: 1fr; }

  .nav-links a:not(.nav-cta) { display: none; }

  .row { grid-template-columns: 1fr; gap: 0; }
  .form-step { padding: 24px 20px; }
  .steps-indicator { flex-direction: column; align-items: stretch; gap: 4px; }
  .step-dot { justify-content: center; }
  .review-summary .review-row { flex-direction: column; gap: 2px; }
  .review-summary .review-label { width: auto; }

  .footer-inner { flex-direction: column; gap: 24px; }

  .price-card { padding: 32px 24px; }
  .price-amount { font-size: 48px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
}
