@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap');
/* Landing Page CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
    overflow-x: hidden;
}
:root {
    --primary: #5031b2;
    --primary-dark: #b8e622;
    --text-on-primary: #5031b2;
    --secondary: #917bc4;
    --bg-light: #f4f2f9;
    --border-radius: 7px;
    --text-dark: #333;
    --text-muted: #777;
    --border-color: #eee;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    border: none;
}
.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
}
.btn-primary:hover {
    background-color: var(--primary-dark);
}
.btn-secondary {
    background-color: white;
    color: var(--primary);
    border: 1px solid var(--border-color);
}
.btn-secondary:hover {
    background-color: #f9f9f9;
}
.btn-ghost {
    background-color: transparent;
    color: #555;
}
.btn-ghost:hover {
    background-color: rgba(0,0,0,0.05);
}
.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(154, 163, 156, 0.2);
    z-index: 1000;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.logo-circle {
    width: 24px; height: 24px;
    background: #5031b2;
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
}
.logo-text {
    font-weight: 700;
    font-size: 18px;
    color: #333;
}
.nav-links a {
    text-decoration: none;
    color: #555;
    margin: 0 16px;
    font-size: 14px;
    font-weight: 500;
}
.nav-links a:hover {
    color: var(--text-on-primary);
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}
.mobile-nav {
    display: none;
    background: white;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}
.mobile-nav.active {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Hero Section */
.hero {
    background-color: var(--bg-light);
    padding: 140px 24px 80px;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.pills {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.pill {
    background: white;
    border: 1px solid #dcdcdc;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
}
.hero-title {
    font-size: 48px;
    line-height: 1.1;
    color: #111;
    margin-bottom: 24px;
}
.hero-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    max-width: 480px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}
.hero-notes {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #777;
    flex-wrap: wrap;
}
.hero-preview {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.dots span {
    display: inline-block;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    margin-right: 4px;
}
.dots span:nth-child(1) { background: #ff5f56; }
.dots span:nth-child(2) { background: #ffbd2e; }
.dots span:nth-child(3) { background: #27c93f; }
.url-bar {
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: #888;
    flex: 1;
    text-align: center;
}

/* Stats */
.stats-strip {
    background: white;
    padding: 60px 24px;
    display: flex;
    justify-content: center;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.stat-item h3 {
    font-size: 36px;
    color: var(--text-on-primary);
    margin-bottom: 8px;
}
.stat-item p {
    font-size: 14px;
    color: #777;
    font-weight: 500;
}

/* Common Section */
.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 16px;
}
.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #777;
    margin-bottom: 60px;
}

/* Testimonials */
.testimonials {
    padding: 80px 24px;
    background: white;
}
.test-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.test-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
}
.test-text {
    font-size: 15px;
    color: #444;
    margin-bottom: 24px;
    font-style: italic;
}
.test-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.test-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #ccc;
}
.test-name {
    font-weight: 600;
    font-size: 14px;
}
.test-role {
    font-size: 12px;
    color: #777;
}

/* Features */
.features {
    padding: 80px 24px;
    background: var(--bg-light);
}
.feat-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feat-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.feat-icon {
    width: 40px; height: 40px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-on-primary);
    margin-bottom: 16px;
}
.feat-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
}
.feat-card p {
    font-size: 14px;
    color: #666;
}

/* Pricing */
.pricing {
    padding: 80px 24px;
    background: white;
}
.price-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.price-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.price-card.featured {
    transform: scale(1.05);
    background: #ebe7f5;
    border: 1px solid var(--primary);
}
.badge-featured {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--text-on-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
}
.price-name {
    font-weight: 600;
    margin-bottom: 16px;
}
.price-amount {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}
.price-amount span {
    font-size: 14px;
    color: #777;
    font-weight: normal;
}
.price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}
.price-features {
    margin: 24px 0;
    list-style: none;
    flex: 1;
}
.price-features li {
    font-size: 13px;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    gap: 8px;
}
.price-features li::before {
    content: "✓";
    color: var(--text-on-primary);
    font-weight: bold;
}
.price-btn {
    width: 100%;
}

/* FAQ */
.faq {
    padding: 80px 24px;
    background: var(--bg-light);
}
.faq-container {
    max-width: 700px;
    margin: 0 auto;
}
.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: #555;
    font-size: 14px;
}
.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* CTA Footer */
.cta-footer {
    background: #475a3f;
    padding: 80px 24px;
    text-align: center;
    color: white;
}
.cta-footer h2 {
    font-size: 36px;
    margin-bottom: 32px;
}

/* Footer */
.footer {
    background: white;
    padding: 40px 24px;
    border-top: 1px solid #eee;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.footer-left p {
    font-size: 12px;
    color: #888;
    max-width: 300px;
    margin-top: 16px;
}
.footer-links {
    display: flex;
    gap: 60px;
}
.footer-col h4 {
    font-size: 14px;
    margin-bottom: 16px;
}
.footer-col a {
    display: block;
    color: #777;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 12px;
}
.copyright {
    text-align: center;
    padding-top: 40px;
    font-size: 12px;
    color: #999;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-subtitle {
        margin: 0 auto 32px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-notes {
        justify-content: center;
    }
    .test-grid, .feat-grid, .price-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stats-strip {
        flex-direction: column;
        gap: 32px;
    }
}
@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .mobile-menu-btn { display: block; }
    .test-grid, .feat-grid, .price-grid {
        grid-template-columns: 1fr;
    }
    .hero-title { font-size: 36px; }
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
}
