/* ==============================================LAUNCH WITH MARK — Main StylesheetLight Blue Theme | Conversion-Focused============================================== *//* ---- CSS Variables ---- */:root {--primary: #2563eb;--primary-dark: #1d4ed8;--primary-light: #60a5fa;--accent: #0ea5e9;--teal: #0d9488;--green: #16a34a;--purple: #7c3aed;--orange: #ea580c;--sky: #0284c7;--bg-page: #f0f7ff;--bg-white: #ffffff;--bg-section: #e8f3ff;--bg-dark: #0f172a;--text-dark: #0f172a;--text-body: #334155;--text-muted: #64748b;--text-white: #ffffff;--border: #bfdbfe;--border-light: #dbeafe;--shadow-sm: 0 1px 3px rgba(37,99,235,0.08);--shadow-md: 0 4px 24px rgba(37,99,235,0.12);--shadow-lg: 0 12px 48px rgba(37,99,235,0.18);--radius: 12px;--radius-sm: 8px;--radius-lg: 20px;--radius-full: 9999px;--font: 'Inter', system-ui, -apple-system, sans-serif;--transition: 0.22s ease;}/* ---- Reset & Base ---- */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }html { scroll-behavior: smooth; }body {font-family: var(--font);background: var(--bg-page);color: var(--text-body);line-height: 1.65;-webkit-font-smoothing: antialiased;}img { max-width: 100%; display: block; }a { color: inherit; text-decoration: none; }ul { list-style: none; }button { cursor: pointer; border: none; background: none; font-family: var(--font); }input { font-family: var(--font); }/* ---- Utility ---- */.highlight { color: var(--primary); }.highlight-white { color: #bae6fd; }/* ===================== NAVIGATION ===================== */.site-header {position: sticky;top: 0;z-index: 100;background: rgba(240, 247, 255, 0.92);backdrop-filter: blur(12px);border-bottom: 1px solid var(--border-light);transition: box-shadow var(--transition);}.site-header.scrolled { box-shadow: var(--shadow-md); }.nav-container {max-width: 1200px;margin: 0 auto;padding: 0 1.5rem;height: 68px;display: flex;align-items: center;justify-content: space-between;gap: 1rem;}.brand-logo {display: flex;align-items: center;gap: 0.5rem;font-weight: 700;font-size: 1.15rem;color: var(--primary-dark);}.logo-icon {width: 36px; height: 36px;background: var(--primary);color: white;border-radius: var(--radius-sm);display: flex; align-items: center; justify-content: center;font-size: 0.9rem;}.nav-links {display: flex;align-items: center;gap: 0.25rem;}.nav-links li a {padding: 0.5rem 0.85rem;border-radius: var(--radius-sm);font-size: 0.9rem;font-weight: 500;color: var(--text-body);transition: background var(--transition), color var(--transition);}.nav-links li a:hover { background: var(--bg-section); color: var(--primary); }.nav-cta-btn {background: var(--primary) !important;color: white !important;padding: 0.5rem 1.1rem !important;border-radius: var(--radius-full) !important;font-weight: 600 !important;transition: background var(--transition) !important;}.nav-cta-btn:hover { background: var(--primary-dark) !important; }.nav-toggle {display: none;font-size: 1.2rem;color: var(--text-dark);padding: 0.5rem;}/* ===================== HERO ===================== */.hero-section {background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #e0f2fe 100%);padding: 5rem 1.5rem 4rem;overflow: hidden;}.hero-container {max-width: 1200px;margin: 0 auto;display: grid;grid-template-columns: 1fr 420px;gap: 4rem;align-items: center;}.hero-badge {display: inline-flex;align-items: center;gap: 0.4rem;background: #fef3c7;color: #92400e;border: 1px solid #fde68a;border-radius: var(--radius-full);padding: 0.35rem 0.9rem;font-size: 0.82rem;font-weight: 600;margin-bottom: 1.5rem;}.hero-title {font-size: clamp(2rem, 4vw, 3rem);font-weight: 800;line-height: 1.15;color: var(--text-dark);margin-bottom: 1.25rem;letter-spacing: -0.02em;}.hero-subtitle {font-size: 1.1rem;color: var(--text-body);margin-bottom: 2rem;max-width: 520px;}/* Hero Form */.hero-form { margin-bottom: 1.5rem; }.form-row {display: flex;gap: 0.6rem;flex-wrap: wrap;margin-bottom: 0.5rem;}.form-row input {flex: 1;min-width: 160px;padding: 0.8rem 1rem;border: 1.5px solid var(--border);border-radius: var(--radius-sm);font-size: 0.95rem;background: white;color: var(--text-dark);transition: border-color var(--transition);}.form-row input:focus { outline: none; border-color: var(--primary); }.form-row input.error { border-color: #ef4444; }.btn-primary {display: inline-flex;align-items: center;justify-content: center;gap: 0.4rem;padding: 0.8rem 1.6rem;background: var(--primary);color: white;border-radius: var(--radius-sm);font-size: 0.95rem;font-weight: 600;cursor: pointer;border: none;transition: background var(--transition), transform var(--transition), box-shadow var(--transition);box-shadow: 0 4px 14px rgba(37,99,235,0.35);white-space: nowrap;}.btn-primary:hover {background: var(--primary-dark);transform: translateY(-1px);box-shadow: 0 6px 20px rgba(37,99,235,0.4);}.btn-primary:active { transform: translateY(0); }.btn-large { padding: 1rem 2.2rem; font-size: 1.05rem; border-radius: var(--radius-full); }.form-disclaimer {font-size: 0.8rem;color: var(--text-muted);display: flex;align-items: center;gap: 0.3rem;}.form-error {color: #dc2626;font-size: 0.85rem;margin-top: 0.4rem;font-weight: 500;}/* Hero Stats */.hero-stats {display: flex;align-items: center;gap: 1rem;flex-wrap: wrap;}.stat-item { text-align: center; }.stat-number { display: block; font-size: 1.5rem; font-weight: 800; color: var(--primary); }.stat-label { font-size: 0.78rem; color: var(--text-muted); }.stat-divider { width: 1px; height: 40px; background: var(--border); }/* Guide Mockup */.hero-visual { display: flex; justify-content: center; }.guide-mockup { position: relative; }.mockup-cover {width: 240px;padding: 2rem 1.5rem;background: linear-gradient(145deg, var(--primary), var(--primary-dark));border-radius: var(--radius-lg);color: white;text-align: center;box-shadow: var(--shadow-lg);position: relative;z-index: 1;}.mockup-badge {background: #fbbf24;color: #78350f;border-radius: var(--radius-full);padding: 0.2rem 0.7rem;font-size: 0.7rem;font-weight: 700;margin-bottom: 1rem;display: inline-block;}.mockup-rocket { font-size: 2.5rem; margin-bottom: 1rem; }.mockup-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.3; }.mockup-sub { font-size: 0.8rem; opacity: 0.8; margin-bottom: 1rem; }.mockup-author { font-size: 0.72rem; opacity: 0.65; }.mockup-shadow {position: absolute;bottom: -12px; right: -12px;width: 100%; height: 100%;background: #93c5fd;border-radius: var(--radius-lg);z-index: 0;}/* ===================== TRUST BAR ===================== */.trust-bar {background: var(--bg-white);border-top: 1px solid var(--border-light);border-bottom: 1px solid var(--border-light);padding: 1.2rem 1.5rem;}.trust-container {max-width: 1200px;margin: 0 auto;display: flex;align-items: center;gap: 1.5rem;flex-wrap: wrap;}.trust-label {font-size: 0.82rem;font-weight: 600;color: var(--text-muted);white-space: nowrap;}.trust-logos { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }.trust-logo-link {font-weight: 700;font-size: 0.88rem;color: var(--text-muted);padding: 0.3rem 0.8rem;border: 1.5px solid var(--border);border-radius: var(--radius-sm);transition: color var(--transition), border-color var(--transition);}.trust-logo-link:hover { color: var(--primary); border-color: var(--primary-light); }/* ===================== SECTION COMMONS ===================== */.section-container {max-width: 1200px;margin: 0 auto;padding: 5rem 1.5rem;}.section-header { text-align: center; margin-bottom: 3.5rem; }.section-tag {display: inline-block;background: #dbeafe;color: var(--primary);border-radius: var(--radius-full);padding: 0.3rem 1rem;font-size: 0.8rem;font-weight: 600;letter-spacing: 0.04em;text-transform: uppercase;margin-bottom: 1rem;}.section-title {font-size: clamp(1.7rem, 3vw, 2.4rem);font-weight: 800;color: var(--text-dark);margin-bottom: 0.75rem;line-height: 1.2;letter-spacing: -0.01em;}.section-subtitle {font-size: 1.05rem;color: var(--text-muted);max-width: 560px;margin: 0 auto;}/* ===================== BENEFITS ===================== */.benefits-section { background: var(--bg-white); }.benefits-grid {display: grid;grid-template-columns: repeat(3, 1fr);gap: 1.5rem;}.benefit-card {background: var(--bg-page);border: 1.5px solid var(--border-light);border-radius: var(--radius);padding: 1.75rem;transition: transform var(--transition), box-shadow var(--transition);}.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }.benefit-icon {width: 48px; height: 48px;border-radius: var(--radius-sm);display: flex; align-items: center; justify-content: center;font-size: 1.2rem;margin-bottom: 1rem;}.benefit-icon.blue { background: #dbeafe; color: var(--primary); }.benefit-icon.green { background: #dcfce7; color: var(--green); }.benefit-icon.teal { background: #ccfbf1; color: var(--teal); }.benefit-icon.purple { background: #ede9fe; color: var(--purple); }.benefit-icon.orange { background: #ffedd5; color: var(--orange); }.benefit-icon.sky { background: #e0f2fe; color: var(--sky); }.benefit-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }.benefit-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }/* ===================== HOW IT WORKS ===================== */.how-it-works-section { background: var(--bg-page); }.steps-container {display: flex;align-items: flex-start;gap: 0;justify-content: center;flex-wrap: wrap;}.step-item {display: flex;flex-direction: column;align-items: center;text-align: center;flex: 1;min-width: 200px;max-width: 280px;}.step-number {width: 60px; height: 60px;background: var(--primary);color: white;border-radius: 50%;display: flex; align-items: center; justify-content: center;font-size: 1.5rem;font-weight: 800;margin-bottom: 1.25rem;box-shadow: 0 4px 14px rgba(37,99,235,0.3);}.step-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }.step-content p { font-size: 0.9rem; color: var(--text-muted); }.step-connector {flex: 0 0 60px;height: 2px;background: linear-gradient(90deg, var(--primary-light), var(--accent));align-self: 38px;margin-top: 28px;}/* ===================== EMAIL CAPTURE ===================== */.capture-section {background: linear-gradient(135deg, var(--primary) 0%, #1e40af 60%, var(--accent) 100%);padding: 5rem 1.5rem;}.capture-container {max-width: 1100px;margin: 0 auto;display: grid;grid-template-columns: 1fr 300px;gap: 4rem;align-items: center;}.capture-badge {display: inline-flex;align-items: center;gap: 0.4rem;background: rgba(255,255,255,0.15);color: white;border: 1px solid rgba(255,255,255,0.3);border-radius: var(--radius-full);padding: 0.35rem 0.9rem;font-size: 0.8rem;font-weight: 600;margin-bottom: 1.25rem;}.capture-title {font-size: clamp(1.6rem, 3vw, 2.2rem);font-weight: 800;color: white;line-height: 1.2;margin-bottom: 0.75rem;letter-spacing: -0.01em;}.capture-subtitle { font-size: 1rem; color: #bfdbfe; margin-bottom: 1.5rem; }.capture-checklist { margin-bottom: 1.75rem; }.capture-checklist li {display: flex;align-items: center;gap: 0.6rem;color: white;font-size: 0.92rem;padding: 0.35rem 0;}.capture-checklist li i { color: #4ade80; font-size: 0.9rem; flex-shrink: 0; }.capture-form-fields {display: flex;gap: 0.6rem;flex-wrap: wrap;margin-bottom: 0.75rem;}.capture-form-fields input {flex: 1;min-width: 160px;padding: 0.85rem 1rem;border: none;border-radius: var(--radius-sm);font-size: 0.95rem;background: white;color: var(--text-dark);}.capture-form-fields input:focus { outline: 2px solid #93c5fd; }.capture-form-fields input.error { outline: 2px solid #f87171; }.btn-capture {width: 100%;padding: 1rem 1.5rem;background: #16a34a;color: white;border: none;border-radius: var(--radius-sm);font-size: 1rem;font-weight: 700;cursor: pointer;display: flex;align-items: center;justify-content: center;gap: 0.5rem;box-shadow: 0 4px 14px rgba(0,0,0,0.2);transition: background var(--transition), transform var(--transition);}.btn-capture:hover { background: #15803d; transform: translateY(-1px); }.capture-disclaimer {font-size: 0.78rem;color: #93c5fd;margin-top: 0.5rem;display: flex;align-items: center;gap: 0.35rem;}/* Guide Preview */.guide-preview { display: flex; justify-content: center; }.preview-cover {width: 200px;background: white;border-radius: var(--radius);padding: 1.5rem 1.2rem;text-align: center;box-shadow: var(--shadow-lg);color: var(--text-dark);}.preview-badge {background: var(--primary);color: white;border-radius: var(--radius-full);padding: 0.15rem 0.6rem;font-size: 0.65rem;font-weight: 700;margin-bottom: 0.75rem;display: inline-block;}.preview-icon { font-size: 2rem; color: var(--primary); margin-bottom: 0.75rem; }.preview-cover h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 0.4rem; line-height: 1.3; }.preview-cover p { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.75rem; }.preview-pages { display: flex; flex-direction: column; gap: 0.2rem; }.preview-pages span { font-size: 0.7rem; color: var(--primary); font-weight: 500; }/* ===================== TESTIMONIALS ===================== */.testimonials-section { background: var(--bg-white); }.aggregate-rating {display: flex;align-items: center;justify-content: center;gap: 0.5rem;margin-top: 0.75rem;font-size: 0.9rem;color: var(--text-muted);}.aggregate-rating .stars { color: #f59e0b; font-size: 1.1rem; }.testimonials-grid {display: grid;grid-template-columns: repeat(3, 1fr);gap: 1.5rem;}.testimonial-card {background: var(--bg-page);border: 1.5px solid var(--border-light);border-radius: var(--radius);padding: 1.75rem;transition: transform var(--transition), box-shadow var(--transition);}.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }.testimonial-card.featured {background: var(--primary);border-color: var(--primary);color: white;}.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 0.75rem; }.testimonial-card blockquote {font-size: 0.9rem;line-height: 1.7;margin-bottom: 1.25rem;font-style: italic;}.testimonial-card.featured blockquote { color: #bfdbfe; }.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }.author-avatar {width: 40px; height: 40px;background: var(--primary-light);color: white;border-radius: 50%;display: flex; align-items: center; justify-content: center;font-size: 0.78rem;font-weight: 700;flex-shrink: 0;}.testimonial-card.featured .author-avatar { background: rgba(255,255,255,0.25); }.testimonial-author strong { display: block; font-size: 0.88rem; }.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }.testimonial-card.featured .testimonial-author span { color: #93c5fd; }/* ===================== FAQ ===================== */.faq-section { background: var(--bg-page); }.faq-inner { max-width: 780px; }.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }.faq-item {background: var(--bg-white);border: 1.5px solid var(--border-light);border-radius: var(--radius);overflow: hidden;}.faq-question {width: 100%;padding: 1.1rem 1.4rem;display: flex;align-items: center;justify-content: space-between;font-size: 0.95rem;font-weight: 600;color: var(--text-dark);background: none;gap: 1rem;text-align: left;transition: color var(--transition);}.faq-question:hover { color: var(--primary); }.faq-question[aria-expanded="true"] { color: var(--primary); }.faq-icon { transition: transform var(--transition); flex-shrink: 0; font-size: 0.85rem; color: var(--text-muted); }.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }.faq-answer {max-height: 0;overflow: hidden;transition: max-height 0.3s ease, padding 0.3s ease;}.faq-answer.open { max-height: 200px; }.faq-answer p {padding: 0 1.4rem 1.2rem;font-size: 0.9rem;color: var(--text-muted);line-height: 1.7;}/* ===================== FINAL CTA ===================== */.final-cta-section {background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);border-top: 1px solid var(--border-light);border-bottom: 1px solid var(--border-light);}.cta-inner {text-align: center;max-width: 640px;}.cta-inner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--text-dark); margin-bottom: 0.75rem; }.cta-inner p { font-size: 1rem; color: var(--text-muted); margin-bottom: 2rem; }.cta-note {font-size: 0.82rem;color: var(--text-muted);margin-top: 1rem;display: flex;align-items: center;justify-content: center;gap: 0.3rem;}/* ===================== FOOTER ===================== */.site-footer {background: var(--bg-dark);color: #94a3b8;}.footer-container {max-width: 1200px;margin: 0 auto;padding: 3.5rem 1.5rem 2rem;display: grid;grid-template-columns: 1fr 2fr;gap: 3rem;}.footer-brand { max-width: 300px; }.footer-logo .logo-text { color: white; }.footer-brand p { font-size: 0.88rem; margin-top: 0.75rem; line-height: 1.6; }.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }.footer-col h4 { font-size: 0.85rem; font-weight: 600; color: white; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }.footer-col ul li a { font-size: 0.88rem; color: #64748b; transition: color var(--transition); }.footer-col ul li a:hover { color: var(--primary-light); }.footer-bottom {border-top: 1px solid #1e293b;padding: 1.5rem 1.5rem;max-width: 1200px;margin: 0 auto;font-size: 0.82rem;display: flex;flex-direction: column;gap: 0.5rem;}.affiliate-disclosure { color: #475569; line-height: 1.6; }/* ===================== MODAL ===================== */.modal-overlay {position: fixed;inset: 0;background: rgba(15,23,42,0.65);backdrop-filter: blur(4px);z-index: 1000;display: flex;align-items: center;justify-content: center;padding: 1rem;}.modal-box {background: white;border-radius: var(--radius-lg);padding: 2.5rem 2rem;max-width: 440px;width: 100%;text-align: center;position: relative;box-shadow: var(--shadow-lg);}.modal-close {position: absolute;top: 1rem; right: 1rem;width: 32px; height: 32px;background: var(--bg-section);border-radius: 50%;display: flex; align-items: center; justify-content: center;font-size: 0.85rem;color: var(--text-muted);cursor: pointer;border: none;}.modal-icon { font-size: 3rem; color: var(--green); margin-bottom: 1rem; }.modal-box h2 { font-size: 1.5rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.75rem; }.modal-message { color: var(--text-muted); margin-bottom: 0.75rem; font-size: 0.95rem; }.modal-sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.25rem; }.modal-cta { display: inline-flex; margin-bottom: 0.75rem; }.modal-disclaimer { font-size: 0.72rem; color: var(--text-muted); }/* ===================== REVEAL ANIMATIONS ===================== */.reveal {opacity: 0;transform: translateY(20px);transition: opacity 0.5s ease, transform 0.5s ease;}.reveal.visible { opacity: 1; transform: translateY(0); }/* ===================== RESPONSIVE ===================== */@media (max-width: 900px) {.hero-container { grid-template-columns: 1fr; gap: 2.5rem; }.hero-visual { display: none; }.benefits-grid { grid-template-columns: repeat(2, 1fr); }.capture-container { grid-template-columns: 1fr; }.capture-visual { display: none; }.testimonials-grid { grid-template-columns: 1fr; }.footer-container { grid-template-columns: 1fr; gap: 2rem; }.footer-links { grid-template-columns: repeat(2, 1fr); }.steps-container { flex-direction: column; align-items: center; }.step-connector { width: 2px; height: 40px; }}@media (max-width: 640px) {.nav-toggle { display: block; }.nav-links {display: none;position: absolute;top: 68px; left: 0; right: 0;background: white;flex-direction: column;padding: 1rem;border-bottom: 1px solid var(--border-light);gap: 0.25rem;box-shadow: var(--shadow-md);}.nav-links.open { display: flex; }.nav-links li a { display: block; padding: 0.6rem 1rem; }.benefits-grid { grid-template-columns: 1fr; }.form-row { flex-direction: column; }.form-row input { min-width: auto; width: 100%; }.footer-links { grid-template-columns: 1fr; }.hero-stats { gap: 0.5rem; }.stat-divider { display: none; }}