:root {
    --bg-dark: #f8fafc;
    --bg-slate: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.8);
    --text-main: #11293a; /* Navy from Logo */
    --text-muted: #64748b;
    --primary: #28a9e0; /* Cyan from Logo */
    --primary-hover: #1e8bbd;
    --border: rgba(17, 41, 58, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }
body { background: var(--bg-dark); color: var(--text-main); line-height: 1.6; overflow-x: hidden; display: flex; flex-direction: column; min-height: 100vh; scroll-behavior: smooth; }
a { text-decoration: none; color: inherit; }

/* Navbar */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 5%; background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 100;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
.navbar .logo { display: flex; align-items: center; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-weight: 500; color: var(--text-muted); transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }

/* Buttons */
.btn {
    padding: 12px 28px; border-radius: 50px; font-weight: 600; cursor: pointer; transition: 0.3s; border: none; display: inline-flex; align-items: center; gap: 8px; justify-content: center;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 15px rgba(40, 169, 224, 0.3); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(40, 169, 224, 0.4); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text-main); }
.btn-outline:hover { background: rgba(40, 169, 224, 0.05); border-color: var(--primary); color: var(--primary); }

/* Hero */
.hero {
    padding: 100px 5%; text-align: center; position: relative;
    background: radial-gradient(circle at 50% 0%, #ffffff 0%, #f1f5f9 70%);
}
.hero h1 { font-size: 4.5rem; line-height: 1.2; margin-bottom: 20px; font-weight: 700; color: var(--text-main); }
.hero h1 span { background: linear-gradient(to right, #11293a, #28a9e0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.25rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 40px auto; }
.hero-btns { display: flex; justify-content: center; gap: 20px; }

/* Features */
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 10px; color: var(--text-main); }
.section-title p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

.features { padding: 80px 5%; background: var(--bg-dark); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.feature-card {
    background: var(--bg-slate); border: 1px solid var(--border); border-radius: 20px; padding: 40px 30px;
    text-align: center; backdrop-filter: blur(10px); transition: 0.3s;
    box-shadow: 0 10px 30px rgba(17, 41, 58, 0.03);
}
.feature-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 15px 40px rgba(40, 169, 224, 0.1); }
.feature-icon { width: 70px; height: 70px; border-radius: 20px; background: rgba(40, 169, 224, 0.1); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 25px auto; }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--text-main); }
.feature-card p { color: var(--text-muted); }

/* Pricing */
.pricing { padding: 80px 5%; background: var(--bg-slate); border-top: 1px solid var(--border); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.price-card {
    background: var(--bg-dark); border: 1px solid var(--border); border-radius: 20px; padding: 40px;
    display: flex; flex-direction: column; transition: 0.3s;
}
.price-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: 0 15px 40px rgba(17, 41, 58, 0.05); }
.price-card.popular { border-color: var(--primary); position: relative; background: var(--bg-slate); box-shadow: 0 20px 50px rgba(40, 169, 224, 0.08); }
.popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; }
.price-card h3 { font-size: 1.8rem; margin-bottom: 15px; color: var(--text-main); }
.price-card .price { font-size: 2.5rem; font-weight: 700; margin-bottom: 25px; color: var(--primary); }
.price-card ul { list-style: none; margin-bottom: 30px; flex: 1; }
.price-card ul li { margin-bottom: 15px; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.price-card ul li i { color: var(--primary); }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 60px 5% 30px 5%; background: var(--bg-slate); margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; max-width: 1200px; margin: 0 auto; }
.footer-col h4 { margin-bottom: 20px; font-size: 1.2rem; color: var(--text-main); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--text-muted); transition: 0.3s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom { text-align: center; color: var(--text-muted); padding-top: 20px; border-top: 1px solid var(--border); font-size: 0.9rem; max-width: 1200px; margin: 0 auto; }

/* Legal Pages */
.legal-page { padding: 60px 5%; max-width: 800px; margin: 0 auto; flex: 1; }
.legal-page h1 { font-size: 2.5rem; margin-bottom: 10px; color: var(--primary); }
.legal-page .updated { color: var(--text-muted); margin-bottom: 40px; font-size: 0.9rem; }
.legal-page h2 { margin: 30px 0 15px 0; font-size: 1.5rem; color: var(--text-main); }
.legal-page p { margin-bottom: 15px; color: var(--text-muted); }
.legal-page ul { margin-left: 20px; margin-bottom: 15px; color: var(--text-muted); }
.legal-page li { margin-bottom: 8px; }

/* Responsive */
@media(max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .nav-links { display: none; } 
    .hero-btns { flex-direction: column; }
}
