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

:root {
  --bg: #faf7f4;
  --bg-alt: #f0ebe4;
  --fg: #1a1714;
  --fg-muted: #6b6259;
  --accent: #c97f35;
  --accent-dark: #a5651f;
  --accent-light: #f5e8d3;
  --ink: #2d2926;
  --border: #e0d9cf;
  --card-bg: #ffffff;
  --green: #2d7a4f;
  --green-bg: #e8f4ec;
}

html { font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: white; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: 'Sora', system-ui, sans-serif; font-weight: 700; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.15rem; font-weight: 600; }
p { color: var(--fg-muted); }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* === LAYOUT === */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

/* === NAV === */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.1rem;
  color: var(--ink); text-decoration: none;
}
.logo-mark {
  width: 32px; height: 32px;
  background: var(--accent);
  color: white; font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
}
.logo-text { font-size: 1rem; }
.nav-badge {
  font-size: 0.75rem; font-weight: 500;
  background: var(--accent-light); color: var(--accent-dark);
  padding: 0.3rem 0.75rem; border-radius: 999px;
  letter-spacing: 0.03em; text-transform: uppercase;
}

/* === HERO === */
.hero {
  max-width: 1160px; margin: 0 auto; padding: 5rem 2rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent-dark);
  margin-bottom: 1.5rem;
}
.label-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); display: inline-block;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-headline { margin-bottom: 1.5rem; }
.hero-headline em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 1.05rem; line-height: 1.7; color: var(--fg-muted);
  max-width: 480px; margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
}
.stat { }
.stat-value {
  display: block; font-family: 'Sora', sans-serif;
  font-weight: 800; font-size: 1.4rem; color: var(--ink);
}
.stat-label {
  display: block; font-size: 0.78rem; color: var(--fg-muted);
  margin-top: 0.1rem;
}
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* === DASHBOARD MOCK === */
.dashboard-mock {
  background: var(--ink);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(45, 41, 38, 0.18);
}
.mock-topbar {
  background: #252220; padding: 0.75rem 1rem;
  display: flex; gap: 0.5rem; align-items: center;
}
.mock-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.mock-body { padding: 1.5rem; }
.mock-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.mock-card {
  background: #2d2926; border-radius: 10px; padding: 1rem;
  text-align: left;
}
.card-label { font-size: 0.65rem; color: rgba(255,255,255,0.5); margin-bottom: 0.35rem; letter-spacing: 0.04em; }
.card-val { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.5rem; color: white; }
.card-delta { font-size: 0.65rem; margin-top: 0.25rem; }
.card-delta.up { color: #5ec88e; }
.mock-chart { background: #2d2926; border-radius: 10px; padding: 1rem 1rem 1.25rem; }
.chart-label { font-size: 0.7rem; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; margin-bottom: 0.75rem; }
.chart-bars { display: flex; align-items: flex-end; gap: 0.4rem; height: 60px; }
.bar {
  flex: 1; background: var(--accent);
  border-radius: 3px 3px 0 0;
  height: var(--h); opacity: 0.75;
}
.bar:last-child { opacity: 1; }

/* === DIFFERENTIATOR === */
.diff { background: var(--ink); padding: 5rem 2rem; }
.diff-inner { max-width: 720px; margin: 0 auto; }
.diff-label {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 1.5rem;
}
.diff-quote blockquote {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; color: white; line-height: 1.25;
  margin-bottom: 1.5rem;
}
.diff-body { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.75; }

/* === FEATURES === */
.features { padding: 5rem 2rem; }
.features-inner { max-width: 1160px; margin: 0 auto; }
.features-header { text-align: center; margin-bottom: 3.5rem; }
.features-header h2 { margin-bottom: 0.75rem; }
.features-header p { font-size: 1rem; color: var(--fg-muted); }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.feature {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(45,41,38,0.1); }
.feature-icon {
  width: 44px; height: 44px; background: var(--accent-light);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark); margin-bottom: 1.25rem;
}
.feature h3 { margin-bottom: 0.6rem; color: var(--ink); }
.feature p { font-size: 0.92rem; line-height: 1.65; }

/* === PROCESS === */
.process { background: var(--bg-alt); padding: 5rem 2rem; }
.process-inner { max-width: 960px; margin: 0 auto; }
.process-inner h2 { text-align: center; margin-bottom: 0.75rem; }
.process-inner > p { text-align: center; color: var(--fg-muted); max-width: 520px; margin: 0 auto 3.5rem; }
.process-steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
.step { }
.step-num {
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 3rem;
  color: var(--accent); opacity: 0.35; margin-bottom: 0.75rem;
  line-height: 1;
}
.step-content h3 { margin-bottom: 0.6rem; color: var(--ink); }
.step-content p { font-size: 0.92rem; line-height: 1.7; }

/* === CLOSING === */
.closing { padding: 6rem 2rem; background: var(--ink); }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-content h2 { color: white; margin-bottom: 1.5rem; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.closing-content p { color: rgba(255,255,255,0.6); font-size: 1.05rem; line-height: 1.8; max-width: 600px; margin: 0 auto 1rem; }
.closing-sub { color: var(--accent) !important; font-weight: 600; }
.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(201,127,53,0.15);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.closing-fine-print {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
}

/* === FOOTER === */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.footer-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.footer-note { font-size: 0.82rem; color: var(--fg-muted); }
.footer-links a { font-size: 0.85rem; font-weight: 500; color: var(--accent-dark); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; padding-top: 3rem; }
  .hero-graphic { order: -1; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .mock-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 2.5rem 1.25rem 3rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; }
  .stat-divider { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .features, .process, .diff, .closing { padding: 3.5rem 1.25rem; }
  .nav-badge { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .mock-row { grid-template-columns: 1fr 1fr; }
}

/* === HERO CTA === */
.hero-cta-row {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  margin-top: 0.5rem;
}
.cta-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: white;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.95rem;
  padding: 0.85rem 2rem; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(201, 127, 53, 0.35);
}
.cta-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 127, 53, 0.45);
  text-decoration: none;
}
.cta-primary--light { background: var(--bg); color: var(--accent); }
.cta-primary--light:hover { background: var(--accent-light); }
.cta-note { font-size: 0.82rem; color: var(--fg-muted); }
.cta-note--light { color: rgba(255,255,255,0.55); }

/* === DEMO FORM SECTION === */
.demo-form-section { padding: 6rem 2rem; background: var(--bg-alt); }
.demo-form-inner { max-width: 680px; margin: 0 auto; }
.form-header { text-align: center; margin-bottom: 2.5rem; }
.form-label {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.75rem;
}
.form-header h2 { margin-bottom: 0.75rem; }
.form-header p { font-size: 1rem; color: var(--fg-muted); max-width: 480px; margin: 0 auto; }

/* === FORM CARD === */
.form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(45,41,38,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group:last-of-type { margin-bottom: 0; }
.form-group label {
  font-size: 0.82rem; font-weight: 600; color: var(--ink);
}
.required { color: var(--accent); }
.optional { font-weight: 400; color: var(--fg-muted); }
.form-group input,
.form-group textarea {
  width: 100%;
  font-family: 'Manrope', sans-serif; font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 127, 53, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #c0b8ad; }
.form-group textarea { resize: vertical; min-height: 88px; }

/* === SUBMIT BUTTON === */
.btn-submit {
  width: 100%; margin-top: 1.5rem;
  background: var(--accent); color: white;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1rem;
  padding: 1rem 2rem; border-radius: 999px; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(201, 127, 53, 0.35);
}
.btn-submit:hover:not(:disabled) {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 127, 53, 0.45);
}
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.btn-loading { display: inline-flex; align-items: center; gap: 0.5rem; }
@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin 0.8s linear infinite; }
.form-privacy {
  text-align: center; font-size: 0.78rem; color: var(--fg-muted);
  margin-top: 0.85rem;
}

/* === SUCCESS STATE === */
.form-success {
  background: var(--card-bg);
  border: 1px solid var(--green-bg);
  border-radius: 18px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(45,41,38,0.08);
}
.success-icon {
  width: 64px; height: 64px; background: var(--green-bg);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--green); margin: 0 auto 1.5rem;
}
.form-success h3 { font-family: 'Sora', sans-serif; font-size: 1.4rem; color: var(--ink); margin-bottom: 0.75rem; }
.form-success p { color: var(--fg-muted); font-size: 1rem; max-width: 420px; margin: 0 auto; }

/* === CLOSING CTA === */
.closing-cta-row {
  display: flex; align-items: center; justify-content: center; gap: 1.25rem;
  flex-wrap: wrap; margin-top: 2.5rem;
}

/* === RESPONSIVE FORM === */
@media (max-width: 640px) {
  .demo-form-section { padding: 4rem 1.25rem; }
  .form-card { padding: 1.75rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-group { margin-bottom: 1rem; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .closing-cta-row { flex-direction: column; align-items: center; }
}

/* === SECTION LABEL === */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

/* === HERO (new conversion layout) === */
.hero {
  padding: 4rem 2rem 5rem;
  background: var(--bg);
}
.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: pulse 2.5s ease-in-out infinite;
}
.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.12;
  margin-bottom: 1.25rem;
  color: var(--ink);
}
.hero-headline strong {
  color: var(--accent);
  font-weight: 800;
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--fg-muted);
  max-width: 460px;
  margin-bottom: 2.25rem;
}
.cta-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  padding: 1rem 2.25rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
}
.trust-item svg { color: var(--green); flex-shrink: 0; }
.trust-sep { color: var(--border); font-size: 1rem; }

/* === PAIN SECTION === */
.pain-section {
  padding: 6rem 2rem;
  background: var(--ink);
}
.pain-inner { max-width: 1160px; margin: 0 auto; }
.pain-header { text-align: center; margin-bottom: 3.5rem; }
.pain-header h2 { color: white; margin-bottom: 0.5rem; font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.pain-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 2rem;
}
.pain-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  margin-bottom: 1.25rem;
}
.pain-card h3 { color: white; margin-bottom: 0.75rem; font-size: 1.05rem; }
.pain-card p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; }
.pain-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.pain-hook {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

/* === HOW IT WORKS === */
.how-section {
  padding: 6rem 2rem;
  background: var(--bg-alt);
}
.how-inner { max-width: 1160px; margin: 0 auto; }
.how-header { text-align: center; margin-bottom: 4rem; }
.how-header h2 { margin-bottom: 0.5rem; font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.how-step {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}
.step-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  margin: 0 auto 1.25rem;
}
.step-body { }
.step-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.step-body h3 { margin-bottom: 0.75rem; color: var(--ink); font-size: 1.1rem; }
.step-body p { font-size: 0.9rem; line-height: 1.7; color: var(--fg-muted); }
.how-connector {
  width: 60px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--border) 0,
    var(--border) 6px,
    transparent 6px,
    transparent 12px
  );
  margin-top: 5rem;
  flex-shrink: 0;
}

/* === SOCIAL PROOF === */
.social-proof-section {
  padding: 6rem 2rem;
  background: var(--bg);
}
.sp-inner { max-width: 1160px; margin: 0 auto; }
.sp-header { text-align: center; margin-bottom: 3.5rem; }
.sp-header h2 { margin-bottom: 0.75rem; font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
.sp-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto;
}
.sp-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.sp-result-card {
  background: var(--ink);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  text-align: center;
}
.sp-result-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.sp-result-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.sp-testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
}
.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  color: #f5a623;
  margin-bottom: 1rem;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-meta strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.testimonial-meta span {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* === LEAD MACHINE SECTION === */
.lead-machine {
  padding: 6rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lm-inner { max-width: 780px; margin: 0 auto; }
.lm-inner .section-label { display: block; text-align: center; margin-bottom: 0.75rem; }
.lm-inner h2 { text-align: center; margin-bottom: 2.5rem; font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--ink); }
.lm-intro { font-size: 1.05rem; color: var(--fg-muted); margin-bottom: 0.75rem; }
.lm-body { font-size: 1rem; color: var(--fg-muted); margin-bottom: 0.5rem; line-height: 1.7; }
.lm-body.strong { margin-top: 1.5rem; }
.lm-block { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.lm-block h3 { font-size: 1.2rem; color: var(--ink); margin-bottom: 0.75rem; }
.lm-block p { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.75; margin-bottom: 0.5rem; }
.lm-highlight { font-size: 0.95rem; color: var(--ink); margin-top: 1rem; }

/* === PRICING SECTION === */
.pricing-section {
  padding: 6rem 2rem;
  background: var(--bg-alt);
}
.pricing-inner { max-width: 1060px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 3.5rem; }
.pricing-header h2 { margin-bottom: 0.5rem; font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
.pricing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto;
}
.pricing-main-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.pricing-pack { padding: 2.5rem; }
.pricing-pack--alt { background: var(--bg); }
.pack-header { margin-bottom: 1.5rem; }
.pack-header h3 { font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--ink); }
.pack-desc { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }
.pack-price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}
.price-amount {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--ink);
}
.price-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.pack-features { list-style: none; }
.pack-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--ink);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
}
.pack-features li:last-child { border-bottom: none; }
.pack-features li svg { color: var(--green); flex-shrink: 0; }
.pricing-divider {
  width: 1px;
  background: var(--border);
}
.pricing-compare {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
}
.pricing-compare h3 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.compare-table { width: 100%; }
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1.5fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.compare-row:last-child { border-bottom: none; }
.compare-header {
  font-weight: 700;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}
.compare-row--us {
  background: var(--accent-light);
  border-radius: 8px;
  padding: 0.75rem;
  margin: -0.75rem 0;
  font-weight: 600;
}
.compare-col { color: var(--fg-muted); }
.compare-row--us .compare-col { color: var(--ink); }
.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--ink);
  border-radius: 14px;
  padding: 2rem 2.5rem;
}
.guarantee-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.guarantee-text h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.guarantee-text p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.65; }

/* === FAQ SECTION === */
.faq-section {
  padding: 6rem 2rem;
  background: var(--bg);
}
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 3.5rem; }
.faq-header h2 { margin-bottom: 0.5rem; font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
.faq-list { margin-bottom: 3rem; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  text-align: left;
}
.faq-chevron {
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-open .faq-answer { max-height: 200px; }
.faq-answer p {
  padding: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--fg-muted);
}
.faq-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.faq-cta-row p { font-family: 'Sora', sans-serif; font-weight: 600; color: var(--ink); }

/* === NAV ACTIONS === */
.nav-actions { }
.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: white;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.nav-cta:hover {
  background: var(--accent-dark);
  text-decoration: none;
}

/* === RESPONSIVE FORM & NEW SECTIONS === */
@media (max-width: 900px) {
  .hero-inner { align-items: center; text-align: center; }
  .pain-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .how-steps { flex-direction: column; }
  .how-connector { display: none; }
  .sp-results-grid { grid-template-columns: 1fr 1fr; }
  .sp-testimonials { grid-template-columns: 1fr; }
  .pricing-main-card { grid-template-columns: 1fr; }
  .pricing-divider { height: 1px; width: 100%; }
  .compare-row { grid-template-columns: 2fr 1.2fr; }
  .compare-row .compare-col:nth-child(3),
  .compare-row .compare-col:nth-child(4) { display: none; }
}
@media (max-width: 640px) {
  .hero { padding: 2.5rem 1.25rem 3rem; }
  .pain-section, .how-section, .social-proof-section,
  .pricing-section, .faq-section, .demo-form-section { padding: 4rem 1.25rem; }
  .lead-machine { padding: 4rem 1.25rem; }
  .sp-results-grid { grid-template-columns: 1fr; }
  .nav-actions { display: none; }
  .hero-inner { align-items: center; text-align: center; }
  .hero-trust { flex-direction: column; align-items: center; gap: 0.4rem; }
  .trust-sep { display: none; }
  .form-card { padding: 1.75rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-group { margin-bottom: 1rem; }
  .pricing-compare { padding: 1.5rem; }
  .pricing-guarantee { flex-direction: column; text-align: center; }
  .closing-cta-row { flex-direction: column; align-items: center; }
}