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

:root {
  --bg: #fefce8;
  --bg-dark: #faf7e0;
  --surface: rgba(255, 255, 255, 0.15);
  --surface-solid: rgba(255, 255, 255, 0.65);
  --violet: #7c3aed;
  --violet-light: #ede9fe;
  --violet-dark: #5b21b6;
  --violet-glow: rgba(124, 58, 237, 0.25);
  --green: #059669;
  --green-light: #d1fae5;
  --green-dark: #047857;
  --text: #1e1b4b;
  --text-muted: #6b7280;
  --text-light: rgba(255, 255, 255, 0.9);
  --border: rgba(124, 58, 237, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --blur: 12px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --shadow-glass: 0 8px 32px rgba(124, 58, 237, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 50px rgba(124, 58, 237, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* === Glass Card Utility === */
.glass-card {
  background: var(--surface-solid);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-glass);
}

/* === Section Utilities === */
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--violet);
  margin-bottom: 0.5rem;
}
.section-label.center { text-align: center; }

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.section-title.center { text-align: center; }

.highlight {
  background: linear-gradient(135deg, var(--violet), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-red {
  color: #dc2626;
}

/* === Navigation === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(254, 252, 232, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text);
}

.nav-icon { font-size: 1.5rem; }

.nav-brand {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--violet); }

.nav-links .skip-link {
  background: var(--violet);
  color: #fff;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s;
}

.nav-links .skip-link:hover {
  background: var(--violet-dark);
  color: #fff;
}

/* === Hero === */
.hero {
  position: relative;
  padding: 8rem 1.5rem 5rem;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--violet-light) 100%);
}

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

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.orb-1 {
  width: 500px; height: 500px;
  background: var(--violet);
  top: -150px; right: -100px;
  animation: orbFloat1 12s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: #a78bfa;
  bottom: -100px; left: -80px;
  animation: orbFloat2 15s ease-in-out infinite;
}
.orb-3 {
  width: 300px; height: 300px;
  background: var(--green);
  top: 50%; left: 60%;
  opacity: 0.2;
  animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(1.1); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.05); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--violet);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-form {
  max-width: 520px;
  margin: 0 auto;
  padding: 1.5rem;
}

.form-row {
  display: flex;
  gap: 0.5rem;
}

.form-row input[type="email"] {
  flex: 1;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input[type="email"]:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 4px var(--violet-glow);
}

.form-row input[type="email"]::placeholder { color: #9ca3af; }

.form-hint {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.form-msg {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-xs);
}
.form-msg.success {
  background: var(--green-light);
  color: var(--green-dark);
}
.form-msg.error {
  background: #fee2e2;
  color: #991b1b;
}

.hero-skip {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--violet);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.hero-skip:hover { color: var(--violet-dark); text-decoration: underline; }

/* === Button === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--violet);
  color: #fff;
  padding: 0.85rem 1.6rem;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--violet-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--violet-glow);
}

.btn-spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hidden { display: none !important; }

/* === Social Proof Bar === */
.proof-bar {
  background: var(--violet-dark);
  padding: 1.5rem;
}

.proof-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
}

.proof-icon {
  font-size: 1.5rem;
}

.proof-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.proof-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

/* === Problem Section === */
.problem-section {
  padding: 5rem 0;
  background: var(--bg);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.problem-text h3 {
  margin-bottom: 1.25rem;
}

.problem-text p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.problem-stats {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-block {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--violet), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.stat-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* === How It Works === */
.how-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--violet-light) 50%, var(--bg) 100%);
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 1rem;
}

.step-card {
  flex: 1;
  max-width: 300px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--violet);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.step-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.step-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--violet);
  font-weight: 700;
  padding: 0 0.75rem;
  flex-shrink: 0;
}

/* === Features === */
.features-section {
  padding: 5rem 0;
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.feature-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === Comparison / Anchoring === */
.comparison-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--violet-light) 100%);
}

.comparison-card {
  padding: 3rem;
}

.comparison-card h3 {
  margin-bottom: 2rem;
}

.comparison-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 560px;
  margin: 0 auto;
}

.comparison-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  position: relative;
}

.comparison-item.expensive {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.comparison-item.free {
  background: rgba(5, 150, 105, 0.08);
  border: 2px solid var(--green);
}

.comparison-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.comparison-price {
  font-size: 1.15rem;
  font-weight: 800;
}

.comparison-item.expensive .comparison-price {
  color: #dc2626;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.comparison-item.free .comparison-price {
  color: var(--green-dark);
  font-size: 1.5rem;
}

.comparison-tag {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 999px;
}

/* === CTA Section (Second Capture) === */
.cta-section {
  padding: 5rem 0;
  background: var(--violet-light);
}

.cta-card {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.75);
}

.cta-card h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.cta-card p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 1.5rem;
}

.cta-form .form-row {
  max-width: 460px;
  margin: 0 auto;
}

/* === FAQ === */
.faq-section {
  padding: 5rem 0;
  background: var(--bg);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: var(--shadow-lg);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  font-size: 1.02rem;
  font-weight: 600;
  font-family: var(--font);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-toggle {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--violet);
  transition: transform 0.3s;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === Footer === */
.footer {
  background: var(--violet-dark);
  color: var(--text-light);
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer-copy a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.footer-copy a:hover { color: #fff; }

/* === Responsive === */
@media (max-width: 900px) {
  .nav-links a:not(.skip-link) { display: none; }

  .hero { padding: 7rem 1rem 3.5rem; }
  .hero-headline { font-size: 2rem; }
  .hero-form { padding: 1.25rem; }

  .proof-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .steps-grid {
    flex-direction: column;
    gap: 0;
  }
  .step-arrow {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }

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

  .form-row {
    flex-direction: column;
  }

  .comparison-card { padding: 1.5rem; }
  .cta-card { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero { padding: 6rem 1rem 3rem; }
  .hero-headline { font-size: 1.7rem; }

  .stat-number { font-size: 2rem; }
  .step-card { padding: 1.5rem 1rem; }
  .feature-card { padding: 1.5rem; }
}
