/* ═══════════════════════════════════════════
   PropostaAI — Landing Page CSS
   Brand: Inter font, #1A56DB primary, #4338CA secondary
   Dev Loop Iteration 1
   ═══════════════════════════════════════════ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; background: #ffffff; color: #111928; line-height: 1.6; }

/* ── VARIABLES ── */
:root {
  --blue: #1A56DB;
  --indigo: #4338CA;
  --green: #059669;
  --text: #111928;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --bg-soft: #F9FAFB;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 1.5rem;
  height: 64px; display: flex; align-items: center; gap: 2rem;
}
.logo { display: flex; align-items: center; }
.nav-links { display: flex; gap: 1.5rem; margin-left: auto; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--blue); color: white; border: none; padding: 0.5rem 1.2rem;
  border-radius: 8px; font-size: 0.9rem; font-weight: 600; cursor: pointer;
  font-family: inherit; transition: all 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: #1648b8; }

/* ── HERO ── */
.landing {
  min-height: 100vh; padding: 120px 1.5rem 80px;
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #EFF6FF; color: var(--blue); padding: 0.4rem 1rem;
  border-radius: 20px; font-size: 0.82rem; font-weight: 600; margin-bottom: 1.5rem;
  border: 1px solid #DBEAFE;
}
.badge-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.hero-title {
  font-size: 3rem; font-weight: 900; line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 1.2rem; color: var(--text);
}
.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; max-width: 500px; }
.hero-proof { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; }
.proof-item { display: flex; align-items: center; gap: 0.5rem; color: var(--green); font-weight: 500; font-size: 0.92rem; }
.hero-ctas { margin-bottom: 2rem; }

.cta-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--blue); color: white; border: none; padding: 0.9rem 2rem;
  font-size: 1rem; font-weight: 700; border-radius: 10px; cursor: pointer;
  font-family: inherit; transition: all 0.2s; text-decoration: none;
}
.cta-primary:hover { background: #1648b8; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,86,219,0.35); }
.cta-large { font-size: 1.1rem; padding: 1.1rem 2.5rem; }
.cta-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.6rem; }

.social-row { display: flex; align-items: center; gap: 0.75rem; }
.avatar-stack { display: flex; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%; border: 2px solid white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: white; margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.av1 { background: #1A56DB; } .av2 { background: #059669; } .av3 { background: #7C3AED; } .av4 { background: #D97706; } .av5 { background: #DC2626; }
.social-row p { font-size: 0.85rem; color: var(--text-muted); }
.social-row p strong { color: var(--text); }

/* ── HERO MOCKUP ── */
.hero-mockup { position: relative; }
.mockup-window {
  background: white; border-radius: 16px; box-shadow: var(--shadow-lg);
  overflow: hidden; border: 1px solid var(--border);
}
.mockup-bar {
  background: #F3F4F6; padding: 0.6rem 1rem; display: flex; align-items: center; gap: 0.4rem;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.red { background: #FF5F57; } .yellow { background: #FFBD2E; } .green-dot, .green { background: #28C840; }
.mockup-url { flex: 1; text-align: center; font-size: 0.78rem; color: var(--text-muted); background: white; padding: 0.2rem 0.8rem; border-radius: 4px; }
.mockup-content { padding: 1.5rem; }
.mock-step-indicator { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.mock-title { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.mock-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 1rem; }
.mock-opt {
  padding: 0.6rem; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 0.82rem; font-weight: 500; cursor: default; transition: all 0.2s;
}
.mock-selected { border-color: var(--blue); background: #EFF6FF; color: var(--blue); }
.mock-progress { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.mock-fill { height: 100%; width: 60%; background: linear-gradient(90deg, var(--blue), var(--indigo)); border-radius: 2px; }

.float-badge {
  position: absolute; bottom: -16px; left: -20px;
  background: white; border-radius: 12px; padding: 0.75rem 1rem;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.82rem; border: 1px solid var(--border); max-width: 220px;
}
.float-badge span { font-size: 1.5rem; }
.float-badge strong { display: block; }
.float-badge div { color: var(--text-muted); }

/* ── TRUST SECTION ── */
.trust-section {
  background: var(--bg-soft); padding: 2rem 1.5rem; text-align: center;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.trust-label { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.trust-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.trust-logo {
  padding: 0.4rem 1rem; background: white; border: 1px solid var(--border);
  border-radius: 20px; font-size: 0.85rem; font-weight: 500; color: var(--text);
}

/* ── SECTIONS BASE ── */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section-tag {
  display: inline-block; background: #EFF6FF; color: var(--blue);
  padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.82rem; font-weight: 600;
  margin-bottom: 1rem;
}
.section-title { font-size: 2.2rem; font-weight: 800; line-height: 1.2; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 560px; line-height: 1.7; }

/* ── HOW IT WORKS ── */
.how-section { padding: 6rem 1.5rem; }
.steps-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 1rem; align-items: center; margin-top: 3rem; }
.step-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center; position: relative; transition: all 0.2s;
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.step-num { font-size: 0.75rem; font-weight: 700; color: var(--blue); margin-bottom: 0.75rem; letter-spacing: 0.05em; }
.step-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.step-connector { font-size: 1.5rem; color: var(--border); font-weight: 300; }

/* ── SAMPLE ── */
.sample-section { padding: 6rem 1.5rem; background: var(--bg-soft); }
.sample-badge {
  display: inline-block; background: white; border: 1px solid var(--border);
  padding: 0.3rem 0.8rem; border-radius: 6px; font-size: 0.8rem; color: var(--text-muted);
  margin-bottom: 2rem; font-weight: 500;
}
.sample-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.sample-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
.sample-text p { color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.sample-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.sample-features li { font-size: 0.92rem; color: var(--text); }
.sample-features strong { color: var(--text); }

/* PDF Preview */
.pdf-preview {
  background: white; border-radius: 12px; padding: 1.5rem; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); font-size: 0.82rem;
}
.pdf-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--blue); }
.pdf-logo-area { font-weight: 800; color: var(--blue); font-size: 0.9rem; }
.pdf-date { color: var(--text-muted); font-size: 0.75rem; }
.pdf-headline { font-weight: 700; font-size: 0.95rem; margin-bottom: 1rem; color: var(--text); }
.pdf-section-title { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue); font-weight: 700; margin-bottom: 0.5rem; }
.pdf-lines { margin-bottom: 1rem; }
.pdf-line { height: 8px; background: var(--border); border-radius: 4px; margin-bottom: 0.35rem; }
.pdf-line.short { width: 60%; }
.pdf-list { margin-bottom: 1rem; }
.pdf-item { font-size: 0.78rem; color: var(--text-muted); padding: 0.2rem 0; }
.pdf-price-table { border: 1px solid var(--border); border-radius: 6px; overflow: hidden; margin-bottom: 1rem; }
.pdf-price-row { display: flex; justify-content: space-between; padding: 0.4rem 0.6rem; font-size: 0.78rem; }
.pdf-price-row.header { background: var(--bg-soft); font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; }
.pdf-price-row.total { background: #EFF6FF; font-size: 0.82rem; }
.pdf-cta-bar { background: var(--blue); color: white; text-align: center; padding: 0.6rem; border-radius: 6px; font-weight: 600; font-size: 0.82rem; }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 6rem 1.5rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin: 3rem 0; }
.testimonial-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.75rem; transition: all 0.2s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-card.featured { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,219,0.1); }
.stars { color: #F59E0B; font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.92rem; color: var(--text); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px; background: linear-gradient(135deg, var(--blue), var(--indigo));
  border-radius: 50%; color: white; font-weight: 700; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.88rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }

/* Stats */
.stats-bar {
  display: flex; justify-content: center; align-items: center; gap: 2rem;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  border-radius: var(--radius-lg); padding: 2rem; color: white; margin-top: 2rem;
}
.stat-item { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 900; }
.stat-label { font-size: 0.82rem; opacity: 0.85; margin-top: 0.2rem; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.2); }

/* ── PRICING ── */
.pricing-section { padding: 6rem 1.5rem; background: var(--bg-soft); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.pricing-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem; position: relative; transition: all 0.2s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); }
.featured-card {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
  transform: scale(1.02);
}
.pro-card { border-color: var(--indigo); }
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: white; font-size: 0.75rem; font-weight: 700;
  padding: 0.25rem 0.75rem; border-radius: 12px; white-space: nowrap;
}
.plan-name { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 0.5rem; }
.plan-price { font-size: 2.5rem; font-weight: 900; color: var(--text); line-height: 1; }
.plan-period { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.feat-yes, .feat-no { font-size: 0.88rem; padding-left: 1.4rem; position: relative; }
.feat-yes::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.feat-no::before { content: '✕'; position: absolute; left: 0; color: var(--border); font-weight: 700; }
.feat-no { color: var(--text-muted); }
.plan-btn {
  width: 100%; padding: 0.8rem; border-radius: 8px; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; font-family: inherit; border: none; transition: all 0.2s;
}
.plan-btn-outline { background: white; border: 1.5px solid var(--border); color: var(--text); }
.plan-btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.plan-btn-primary { background: var(--blue); color: white; }
.plan-btn-primary:hover { background: #1648b8; transform: translateY(-1px); }
.plan-btn-pro { background: linear-gradient(135deg, var(--blue), var(--indigo)); color: white; }
.plan-btn-pro:hover { opacity: 0.9; transform: translateY(-1px); }
.plan-note { text-align: center; font-size: 0.78rem; color: var(--text-muted); margin-top: 0.5rem; }
.pricing-guarantee { text-align: center; font-size: 0.85rem; color: var(--text-muted); margin-top: 2rem; }

/* ── EMAIL CAPTURE ── */
.email-section { padding: 5rem 1.5rem; background: #EFF6FF; }
.email-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.email-content h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.75rem; }
.email-content p { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.7; }
.email-form { display: flex; gap: 0.5rem; max-width: 440px; margin: 0 auto 0.75rem; }
.email-form input {
  flex: 1; padding: 0.75rem 1rem; border: 1.5px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: 0.95rem; outline: none; transition: border 0.2s;
}
.email-form input:focus { border-color: var(--blue); }
.email-btn {
  padding: 0.75rem 1.2rem; background: var(--blue); color: white; border: none;
  border-radius: 8px; font-weight: 700; cursor: pointer; font-family: inherit; white-space: nowrap;
  transition: all 0.2s;
}
.email-btn:hover { background: #1648b8; }
.email-privacy { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.5rem; }
.email-note { color: var(--green); font-weight: 600; margin: 1rem 0; }

/* ── FINAL CTA ── */
.final-cta-section { padding: 6rem 1.5rem; text-align: center; }
.final-cta-inner { max-width: 600px; margin: 0 auto; }
.final-cta-inner h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 1rem; line-height: 1.2; }
.final-cta-inner p { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.7; }
.final-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.75rem; }

/* ── FOOTER ── */
.footer { background: var(--text); color: rgba(255,255,255,0.7); padding: 2rem 1.5rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.footer-brand { display: flex; flex-direction: column; margin-right: auto; }
.footer-brand strong { color: white; font-size: 1rem; }
.footer-brand span { font-size: 0.82rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-legal { font-size: 0.78rem; }

/* ══════════════════════════════════
   OVERLAY & MODAL
   ══════════════════════════════════ */
.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: 1rem; backdrop-filter: blur(4px);
}
.modal-container {
  background: white; border-radius: var(--radius-lg); width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg);
  animation: modalIn 0.2s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border);
}
.modal-logo { font-weight: 800; font-size: 1rem; background: linear-gradient(135deg, var(--blue), var(--indigo)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.modal-close {
  background: var(--bg-soft); border: none; width: 28px; height: 28px; border-radius: 6px;
  cursor: pointer; font-size: 0.85rem; color: var(--text-muted); transition: all 0.15s;
}
.modal-close:hover { background: var(--border); }

/* ══════════════════════════════════
   WIZARD (inside modal)
   ══════════════════════════════════ */
.wizard-card { padding: 2rem 1.75rem; }
.progress-bar { height: 4px; background: var(--border); border-radius: 2px; margin-bottom: 0.5rem; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--blue), var(--indigo)); border-radius: 2px; transition: width 0.3s; width: 20%; }
.step-indicator { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.wizard-step h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.4rem; }
.wizard-step .hint { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.4rem; font-size: 0.88rem; }
.form-group select, .form-group input, .form-group textarea {
  width: 100%; padding: 0.7rem 0.9rem; border: 1.5px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: 0.95rem; transition: border 0.2s; color: var(--text);
}
.form-group select:focus, .form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.radio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.radio-option {
  border: 1.5px solid var(--border); border-radius: 10px; padding: 0.7rem 0.9rem;
  cursor: pointer; transition: all 0.2s; font-weight: 500; font-size: 0.88rem;
  text-align: center;
}
.radio-option:hover { border-color: var(--blue); background: #EFF6FF; }
.radio-option.selected { border-color: var(--blue); background: #EFF6FF; color: var(--blue); }
.radio-option input { display: none; }
.wizard-nav { display: flex; justify-content: space-between; margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.btn { padding: 0.65rem 1.4rem; border-radius: 8px; border: none; cursor: pointer; font-family: inherit; font-weight: 600; font-size: 0.95rem; transition: all 0.2s; }
.btn-next { background: var(--blue); color: white; margin-left: auto; }
.btn-next:hover { background: #1648b8; }
.btn-back { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.btn-back:hover { background: var(--bg-soft); }
.btn-primary { background: var(--blue); color: white; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; }
.btn-primary:hover { background: #1648b8; }
.btn-outline { background: white; border: 1px solid var(--border); color: var(--text); text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; }
.btn-outline:hover { background: var(--bg-soft); }
.btn-secondary { background: transparent; color: var(--text-muted); border: 1px solid var(--border); margin-top: 0.75rem; }
.btn-copy { background: var(--blue); color: white; font-size: 0.82rem; padding: 0.45rem 0.9rem; }
.btn-upgrade { background: transparent; border: 1.5px solid var(--blue); color: var(--blue); padding: 0.5rem 1rem; border-radius: 8px; font-weight: 600; cursor: pointer; font-family: inherit; font-size: 0.88rem; }

/* Loading */
.loading-card { text-align: center; padding: 3rem 2rem; }
.spinner {
  width: 44px; height: 44px; border: 3px solid var(--border); border-top-color: var(--blue);
  border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 1.5rem;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-card h2 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.loading-card p { color: var(--text-muted); font-size: 0.9rem; }
.loading-steps { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.4rem; text-align: left; max-width: 280px; margin-left: auto; margin-right: auto; }
.loading-step { font-size: 0.85rem; color: var(--text-muted); padding: 0.3rem 0; }
.loading-step.active { color: var(--green); font-weight: 600; }

/* Success */
.success-card { text-align: center; padding: 2.5rem 1.75rem; }
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.success-card h2 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.client-label { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.9rem; }
.result-actions { display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.share-box { background: var(--bg-soft); border-radius: 10px; padding: 1rem; margin-bottom: 1rem; text-align: left; }
.share-box label { font-size: 0.8rem; color: var(--text-muted); display: block; margin-bottom: 0.5rem; }
.share-input { display: flex; gap: 0.5rem; }
.share-input input { flex: 1; padding: 0.45rem 0.75rem; border: 1px solid var(--border); border-radius: 6px; font-size: 0.82rem; font-family: monospace; }
.upgrade-nudge { background: #EFF6FF; border: 1px solid #DBEAFE; border-radius: 10px; padding: 1rem; margin-bottom: 1rem; }
.upgrade-nudge p { font-size: 0.88rem; margin-bottom: 0.5rem; }

/* Error */
.error-card { text-align: center; padding: 2.5rem 1.75rem; }
.error-icon { font-size: 3rem; margin-bottom: 1rem; }
.error-card p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.9rem; }

/* ══════════════════════════════════
   PAYMENT MODAL
   ══════════════════════════════════ */
.payment-modal {
  background: white; border-radius: var(--radius-lg); width: 100%; max-width: 420px;
  padding: 2rem; box-shadow: var(--shadow-lg); position: relative;
  animation: modalIn 0.2s ease; max-height: 90vh; overflow-y: auto;
}
.payment-header { margin-bottom: 1.5rem; }
.payment-header h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.25rem; }
.payment-price { font-size: 1.8rem; font-weight: 900; color: var(--blue); }
.payment-field { margin-bottom: 1rem; }
.payment-field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.35rem; }
.payment-field input {
  width: 100%; padding: 0.7rem 0.9rem; border: 1.5px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: 0.95rem; transition: border 0.2s;
}
.payment-field input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,219,0.1); }
.payment-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.pay-error { background: #FEF2F2; color: #DC2626; padding: 0.6rem 0.9rem; border-radius: 6px; font-size: 0.85rem; border: 1px solid #FECACA; }
.pay-secure { text-align: center; font-size: 0.78rem; color: var(--text-muted); margin-top: 0.75rem; }
.pay-success { text-align: center; padding: 1.5rem 0; }
.pay-success div { font-size: 3rem; margin-bottom: 0.75rem; }
.pay-success h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.pay-success p { color: var(--text-muted); font-size: 0.9rem; }

/* ══════════════════════════════════
   MOBILE RESPONSIVE
   ══════════════════════════════════ */
@media (max-width: 900px) {
  .landing { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 100px; }
  .hero-mockup { display: none; }
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.7rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .sample-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .featured-card { transform: none; }
  .stats-bar { flex-wrap: wrap; gap: 1.5rem; }
  .stat-divider { display: none; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 1.8rem; }
  .radio-grid { grid-template-columns: 1fr; }
  .wizard-card { padding: 1.25rem; }
  .email-form { flex-direction: column; }
  .result-actions { flex-direction: column; align-items: center; }
  .footer-inner { flex-direction: column; gap: 1rem; }
  .payment-row { grid-template-columns: 1fr; }
}
