/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: #0B1A2B;
    color: #E2E8F0;
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === NAVBAR === */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 16px 0;
    background: rgba(11,26,43,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}
.navbar.scrolled { padding: 10px 0; background: rgba(11,26,43,0.95); }
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.2rem; color: #fff; }
.nav-icon { width: 36px; height: 36px; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 0.9rem; color: #94A3B8; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: 0.3s; }

/* === BUTTONS === */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 12px;
    font-weight: 600; font-size: 0.95rem;
    transition: all 0.2s; cursor: pointer; border: none;
}
.btn-primary { background: #2E75B6; color: #fff; }
.btn-primary:hover { background: #2563A8; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,117,182,0.3); }
.btn-secondary { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.btn-secondary:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #2E75B6; border: 2px solid #2E75B6; width: 100%; justify-content: center; }
.btn-outline:hover { background: rgba(46,117,182,0.1); }
.btn-nav { padding: 8px 20px; font-size: 0.85rem; border-radius: 8px; }

/* === HERO === */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #0B1A2B 0%, #0F2035 50%, #0B1A2B 100%);
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -200px; right: -200px;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(46,117,182,0.15) 0%, transparent 70%);
}
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
    display: inline-block; padding: 6px 16px; border-radius: 20px;
    background: rgba(46,117,182,0.15); color: #5BA3E6; font-size: 0.85rem; font-weight: 500;
    margin-bottom: 20px; border: 1px solid rgba(46,117,182,0.2);
}
.hero h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; color: #fff; margin-bottom: 20px; }
.gradient-text { background: linear-gradient(135deg, #2E75B6, #5BA3E6, #F59E0B); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.15rem; color: #94A3B8; margin-bottom: 32px; max-width: 480px; }
.hero-buttons { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; }
.stat-number { display: block; font-size: 1.5rem; font-weight: 800; color: #fff; }
.stat-label { font-size: 0.8rem; color: #64748B; }
.hero-image { display: flex; justify-content: center; position: relative; }
.hero-screenshot { max-height: 580px; border-radius: 24px; filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5)); }

/* === SECTIONS === */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: #94A3B8; max-width: 600px; margin: 0 auto; }

/* === FEATURES === */
.features { padding: 100px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px; padding: 32px;
    transition: all 0.3s;
}
.feature-card:hover { background: rgba(255,255,255,0.06); transform: translateY(-4px); border-color: rgba(46,117,182,0.3); }
.feature-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: #94A3B8; line-height: 1.6; }

/* === SCREENSHOTS === */
.screenshots { padding: 100px 0; background: linear-gradient(180deg, #0B1A2B 0%, #0F2035 50%, #0B1A2B 100%); }
.screenshots-slider { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.screenshots-slider::-webkit-scrollbar { display: none; }
.screenshots-track { display: flex; gap: 24px; padding: 20px 0; }
.screenshot-img {
    height: 500px; width: auto; border-radius: 16px; flex-shrink: 0;
    filter: drop-shadow(0 10px 40px rgba(0,0,0,0.4));
    transition: transform 0.3s;
}
.screenshot-img:hover { transform: scale(1.03); }

/* === PRICING === */
.pricing { padding: 100px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 800px; margin: 0 auto; }
.pricing-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px; padding: 40px; position: relative;
}
.pricing-featured { border-color: #2E75B6; background: rgba(46,117,182,0.08); }
.pricing-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: #2E75B6; color: #fff; padding: 4px 16px; border-radius: 20px;
    font-size: 0.8rem; font-weight: 600;
}
.pricing-header { margin-bottom: 32px; }
.pricing-header h3 { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.price { font-size: 2.5rem; font-weight: 800; color: #fff; }
.price span { font-size: 1rem; font-weight: 400; color: #64748B; }
.pricing-header p { color: #64748B; font-size: 0.9rem; margin-top: 4px; }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li {
    padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem; color: #CBD5E1;
    padding-left: 28px; position: relative;
}
.pricing-features li::before { content: '\2713'; position: absolute; left: 0; color: #10B981; font-weight: 700; }

/* === FAQ === */
.faq { padding: 100px 0; }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-question {
    width: 100%; padding: 20px 0; background: none; border: none;
    color: #fff; font-size: 1.05rem; font-weight: 600;
    text-align: left; cursor: pointer; display: flex;
    justify-content: space-between; align-items: center;
    font-family: inherit;
}
.faq-question::after { content: '+'; font-size: 1.5rem; color: #64748B; transition: transform 0.3s; }
.faq-item.active .faq-question::after { content: '-'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p { padding-bottom: 20px; color: #94A3B8; font-size: 0.95rem; }

/* === CTA === */
.cta {
    padding: 80px 0; text-align: center;
    background: linear-gradient(135deg, rgba(46,117,182,0.15) 0%, rgba(245,158,11,0.08) 100%);
    border-top: 1px solid rgba(46,117,182,0.2); border-bottom: 1px solid rgba(46,117,182,0.2);
}
.cta h2 { font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta p { font-size: 1.1rem; color: #94A3B8; margin-bottom: 32px; }

/* === FOOTER === */
.footer { padding: 60px 0 30px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: #64748B; margin-top: 12px; font-size: 0.9rem; }
.footer-links h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links a { display: block; color: #64748B; font-size: 0.9rem; padding: 4px 0; transition: color 0.2s; }
.footer-links a:hover { color: #2E75B6; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom p { color: #475569; font-size: 0.8rem; }

/* === LEGAL PAGES === */
.legal-page { padding: 120px 0 60px; }
.legal-page h1 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.legal-page .subtitle { color: #64748B; margin-bottom: 40px; }
.legal-page h2 { font-size: 1.3rem; font-weight: 700; color: #fff; margin-top: 40px; margin-bottom: 12px; }
.legal-page h3 { font-size: 1.1rem; font-weight: 600; color: #CBD5E1; margin-top: 24px; margin-bottom: 8px; }
.legal-page p, .legal-page li { color: #94A3B8; font-size: 0.95rem; margin-bottom: 12px; }
.legal-page ul { padding-left: 24px; }
.legal-page a { color: #2E75B6; }
.legal-page a:hover { text-decoration: underline; }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: #2E75B6; font-size: 0.9rem; margin-bottom: 24px; }

/* === ANIMATIONS === */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 968px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    .hero-subtitle { margin: 0 auto 32px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image { margin-top: 40px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .nav-links {
        display: none; position: fixed; top: 0; right: 0;
        width: 280px; height: 100vh; background: #0F2035;
        flex-direction: column; padding: 80px 32px 32px;
        gap: 20px; border-left: 1px solid rgba(255,255,255,0.06);
    }
    .nav-links.active { display: flex; }
    .nav-toggle { display: block; }
    .hero h1 { font-size: 2rem; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 1.8rem; }
    .screenshot-img { height: 380px; }
}
