:root {
    --primary-color: #e1306c;
    --primary-hover: #c11252;
    --accent-orange: #f56040;
    --accent-yellow: #ffdc80;
    --text-dark: #1f1f1f;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #eaeaea;
    --shadow-md: 0 10px 20px rgba(225, 48, 108, 0.15);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.1);
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }
body { color: var(--text-dark); background-color: var(--white); line-height: 1.6; }
a { text-decoration: none; }

/* Sticky Nav - Conversion Focused */
.nav { position: fixed; top: 0; width: 100%; background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); z-index: 1000; display: flex; justify-content: space-between; align-items: center; padding: 12px 5%; height: 70px; }
.nav-brand { font-size: 26px; font-weight: 800; color: var(--primary-color); letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--text-dark); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-color); }
.cta-btn-small { background: var(--primary-color); color: var(--white) !important; padding: 10px 20px; border-radius: 4px; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 4px 10px rgba(225,48,108,0.3); transition: 0.2s; }
.cta-btn-small:hover { background: var(--primary-hover); transform: translateY(-2px); }

/* Hero Marketing Section */
.hero { margin-top: 70px; background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%); padding: 80px 20px; text-align: center; border-bottom: 1px solid var(--border-color); }
.hero-tag { display: inline-block; background: rgba(225,48,108,0.1); color: var(--primary-color); padding: 5px 15px; border-radius: 20px; font-weight: bold; font-size: 13px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.hero-title { font-size: 48px; font-weight: 900; margin-bottom: 20px; line-height: 1.2; letter-spacing: -1px; }
.hero-subtitle { font-size: 20px; color: var(--text-muted); max-width: 700px; margin: 0 auto 40px; }
.cta-group { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.cta-btn-large { background: linear-gradient(45deg, var(--accent-orange), var(--primary-color)); color: var(--white); padding: 16px 40px; border-radius: 6px; font-size: 18px; font-weight: bold; box-shadow: var(--shadow-md); transition: 0.3s; display: flex; align-items: center; justify-content: center; min-width: 220px; border: none; cursor: pointer; }
.cta-btn-large:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(225,48,108,0.4); }
.cta-btn-outline { background: var(--white); color: var(--primary-color); padding: 16px 40px; border-radius: 6px; font-size: 18px; font-weight: bold; border: 2px solid var(--primary-color); transition: 0.3s; display: flex; align-items: center; justify-content: center; min-width: 220px; cursor: pointer; }
.cta-btn-outline:hover { background: rgba(225,48,108,0.05); }
.trust-badges { margin-top: 30px; font-size: 13px; color: var(--text-muted); font-weight: 500; display: flex; justify-content: center; gap: 20px; }
.trust-badges span::before { content: '✓'; color: #4caf50; font-weight: bold; margin-right: 5px; }

/* Social Proof Bar */
.social-proof { display: flex; justify-content: center; flex-wrap: wrap; gap: 50px; padding: 30px 20px; background: var(--primary-color); color: var(--white); }
.sp-item { text-align: center; }
.sp-num { font-size: 32px; font-weight: 900; display: block; margin-bottom: 5px; text-shadow: 1px 1px 2px rgba(0,0,0,0.2); }
.sp-text { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }

/* Container & Typography */
.container { max-width: 1000px; margin: 0 auto; padding: 70px 20px; }
.section-title { font-size: 32px; font-weight: 800; text-align: center; margin-bottom: 20px; color: var(--text-dark); }
.section-subtitle { text-align: center; font-size: 16px; color: var(--text-muted); margin-bottom: 50px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* SEO Box */
.seo-box { background: var(--bg-light); border-left: 5px solid var(--primary-color); padding: 30px; margin-bottom: 60px; font-size: 16px; color: var(--text-muted); border-radius: 0 8px 8px 0; }
.seo-box p { margin-bottom: 15px; }
.seo-box p:last-child { margin-bottom: 0; }

/* Feature Grid */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 70px; }
.feature-card { border: 1px solid var(--border-color); border-radius: 8px; padding: 35px 25px; text-align: center; transition: 0.3s; background: var(--white); }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary-color); }
.f-icon { width: 50px; height: 50px; background: rgba(225,48,108,0.1); color: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: bold; margin: 0 auto 20px; }
.feature-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 15px; }
.feature-card p { font-size: 15px; color: var(--text-muted); line-height: 1.5; }

/* Visuals */
.promo-img { width: 100%; border-radius: 12px; box-shadow: var(--shadow-lg); margin-bottom: 70px; border: 1px solid var(--border-color); }

/* Process Steps */
.process-wrapper { display: flex; flex-direction: column; gap: 20px; margin-bottom: 70px; }
.process-step { display: flex; background: var(--white); border: 1px solid var(--border-color); border-radius: 8px; padding: 25px; align-items: center; transition: 0.2s; }
.process-step:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-color: var(--text-muted); }
.step-num { font-size: 36px; font-weight: 900; color: var(--primary-color); opacity: 0.2; width: 60px; flex-shrink: 0; text-align: center; }
.step-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 5px; }
.step-content p { font-size: 15px; color: var(--text-muted); }

/* FAQ Accordion Look */
.faq-box { background: var(--bg-light); border-radius: 8px; padding: 25px; margin-bottom: 20px; border: 1px solid var(--border-color); }
.faq-box h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--primary-color); }
.faq-box p { font-size: 15px; color: var(--text-muted); }

/* Footer */
.footer { background: var(--text-dark); color: var(--white); padding: 50px 20px; text-align: center; }
.footer-nav { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
.footer-nav a { color: var(--text-muted); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.footer-nav a:hover { color: var(--white); }
.footer p { color: #555; font-size: 12px; }