/* ─── Variables ─── */
:root {
  --bg: #F8F4EF;
  --fg: #1A1A18;
  --accent: #1B4332;
  --amber: #F59E0B;
  --cream: #F8F4EF;
  --light-green: #D8EDDA;
  --text-muted: #6B7068;
  --border: rgba(27, 67, 50, 0.12);
}

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

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

h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

/* ─── Nav ─── */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--accent);
}

/* ─── Section Tag ─── */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.6;
  margin-bottom: 16px;
}

/* ─── Hero ─── */
.hero {
  padding: 80px 0 0;
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}
.hero-headline {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-stars { flex-shrink: 0; }
.trust-text { font-size: 13px; color: var(--text-muted); }

.hero-right {
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-stat-block {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  width: 280px;
  position: relative;
  box-shadow: 0 8px 40px rgba(27, 67, 50, 0.08);
}
.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 96px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-ten {
  font-size: 48px;
  opacity: 0.5;
}
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 32px;
}
.stat-arrow {
  margin-top: 8px;
}
.stat-text-overlay {
  position: absolute;
  top: 24px;
  right: -100px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.text-bubble {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px 12px 12px 4px;
  padding: 10px 16px;
  font-size: 12px;
  color: var(--fg);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  max-width: 160px;
}
.stars-inline {
  font-size: 14px;
  color: var(--amber);
  margin-left: 8px;
  letter-spacing: 2px;
}

.hero-bottom {
  margin-top: 80px;
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: rgba(27, 67, 50, 0.03);
}
.bottom-stat-row {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 0;
}
.bstat {
  flex: 1;
  padding: 0 32px;
}
.bstat:first-child { padding-left: 0; }
.bstat-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 6px;
}
.bstat-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.bstat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── Problem ─── */
.problem {
  padding: 120px 0;
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.problem-header {
  max-width: 540px;
  margin-bottom: 64px;
}
.problem-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--fg);
  margin-top: 12px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.problem-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.pcard-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}
.problem-card h3 {
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 12px;
}
.problem-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.problem-quote {
  background: var(--accent);
  border-radius: 16px;
  padding: 40px 48px;
}
.problem-quote blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: white;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 16px;
}
.problem-quote cite {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ─── How ─── */
.how {
  padding: 120px 0;
  background: white;
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.how-header {
  max-width: 540px;
  margin-bottom: 80px;
}
.how-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--fg);
  margin-top: 12px;
  margin-bottom: 20px;
}
.how-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr 260px;
  gap: 32px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
}
.step-body h3 {
  font-size: 24px;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}
.step-visual { display: flex; justify-content: flex-end; }

.visual-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--light-green);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  font-family: 'DM Sans', monospace;
}

.visual-sms .sms-bubble {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 16px 16px 16px 4px;
  padding: 16px 20px;
  max-width: 240px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.sms-from {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.sms-msg {
  font-size: 13px;
  color: var(--fg);
  line-height: 1.5;
  margin-bottom: 6px;
}
.sms-link { color: var(--accent); font-weight: 500; }
.sms-time { font-size: 11px; color: var(--text-muted); text-align: right; }

.visual-google {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  width: 160px;
}
.google-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  justify-content: center;
}
.google-chip span {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg);
}
.google-stars { font-size: 18px; color: var(--amber); margin-bottom: 6px; }
.google-business { font-size: 13px; font-weight: 600; color: var(--fg); }

.visual-report {
  background: var(--accent);
  color: white;
  border-radius: 12px;
  padding: 20px 24px;
  width: 180px;
}
.report-header {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.report-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.7);
}
.report-val { font-weight: 600; color: white; }

/* ─── Outcomes ─── */
.outcomes {
  padding: 120px 0;
  background: var(--bg);
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.outcomes-left h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--fg);
  margin-top: 12px;
  margin-bottom: 20px;
}
.outcomes-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.outcome-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.outcome-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
}

.outcomes-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.outcomes-visual {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  height: 220px;
  padding: 24px 32px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  width: 100%;
}
.pipe-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 160px;
}
.pipe-bar {
  width: 100%;
  border-radius: 8px 8px 4px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 8px;
  min-height: 32px;
}
.pipe-label {
  font-size: 9px;
  color: rgba(0,0,0,0.4);
  font-weight: 500;
  margin-bottom: 4px;
}
.pipe-val {
  font-size: 11px;
  font-weight: 700;
  color: rgba(0,0,0,0.6);
}
.pipe-bar[style*="#1B4332"] .pipe-val { color: white; }
.pipe-bar[style*="#1B4332"] .pipe-label { color: rgba(255,255,255,0.6); }
.pipe-label-x {
  align-self: flex-end;
  font-size: 10px;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ─── Pricing ─── */
.pricing {
  padding: 120px 0;
  background: white;
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.pricing-header {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 64px;
}
.pricing-header h2 {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--fg);
  margin-top: 12px;
  margin-bottom: 16px;
}
.pricing-sub {
  font-size: 16px;
  color: var(--text-muted);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto 64px;
}
.pricing-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  position: relative;
}
.pricing-card.featured {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.pcard-top { margin-bottom: 24px; }
.pplan-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--amber);
  color: var(--fg);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.pplan-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 8px;
}
.pplan-price {
  font-family: 'DM Serif Display', serif;
  font-size: 44px;
  line-height: 1;
}
.pplan-per {
  font-size: 20px;
  opacity: 0.5;
}
.pplan-one {
  font-size: 13px;
  opacity: 0.5;
  margin-top: 4px;
}
.pcard-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 24px 0;
}
.pricing-card:not(.featured) .pcard-divider { background: var(--border); }
.pfeatures {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pfeatures li {
  font-size: 14px;
  line-height: 1.4;
  padding-left: 24px;
  position: relative;
}
.pfeatures li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 13px;
  font-weight: 700;
}
.pricing-card.featured .pfeatures li { color: white; }
.pricing-card.featured .pfeatures li::before { color: var(--amber); }
.pcard-note {
  margin-top: 24px;
  font-size: 12px;
  opacity: 0.5;
  font-style: italic;
}

.pricing-faq {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-weight: 600;
  font-size: 15px;
  color: var(--fg);
  margin-bottom: 10px;
}
.faq-a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Closing ─── */
.closing {
  padding: 120px 0;
  background: var(--accent);
  color: white;
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.closing-headline {
  font-size: clamp(32px, 5vw, 56px);
  color: white;
  line-height: 1.2;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}
.closing-vision { display: flex; justify-content: center; }
.vision-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.vision-num {
  font-family: 'DM Serif Display', serif;
  font-size: 64px;
  color: var(--amber);
  line-height: 1;
}
.vision-text {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  line-height: 1.5;
}

/* ─── Footer ─── */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.5;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .bottom-stat-row { flex-direction: column; gap: 24px; }
  .bstat-divider { display: none; }
  .bstat { padding: 0; text-align: center; }
  .problem-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 16px; }
  .step-num { font-size: 32px; }
  .step-visual { justify-content: flex-start; }
  .outcomes-inner { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stat-text-overlay { display: none; }
}

/* ─── Demo Form ─── */
.demo-section {
  padding: 120px 0;
  background: var(--bg);
}
.demo-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.demo-left { padding-top: 8px; }
.demo-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--fg);
  margin-top: 12px;
  margin-bottom: 20px;
}
.demo-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.demo-trust {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}
.trust-item svg { flex-shrink: 0; }

/* Form card */
.demo-form {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(27, 67, 50, 0.06);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row:only-child { grid-template-columns: 1fr; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.01em;
}
.form-optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 12px;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--fg);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.08);
}
.form-textarea { resize: vertical; min-height: 80px; }

.form-submit {
  width: 100%;
  padding: 15px 24px;
  background: var(--accent);
  color: white;
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', system-ui, sans-serif;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.form-submit:hover:not(:disabled) { background: #163629; transform: translateY(-1px); }
.form-submit:active:not(:disabled) { transform: translateY(0); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.submit-loading { display: none; }
.form-submit.loading .submit-text { display: none; }
.form-submit.loading .submit-loading { display: inline-flex; align-items: center; }
@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin 0.8s linear infinite; }

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--light-green);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
}
.form-success svg { flex-shrink: 0; }

.form-error {
  margin-top: 12px;
  padding: 12px 16px;
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  border-radius: 8px;
  font-size: 13px;
  color: #DC2626;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .demo-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .demo-form { padding: 28px 20px; }
}