@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #2f55d4;
    --primary-hover: #2443ac;
    --dark: #16213e;
    --text-main: #3c4858;
    --text-sub: #8492a6;
    --bg-light: #f8f9fc;
    --white: #ffffff;
    --shadow: 0 10px 25px rgba(60, 72, 88, 0.15);
    --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.05);
    --radius: 8px;
    --radius-lg: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header & Navbar */
header {
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 36px !important;
    width: auto !important;
    display: block;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.logo-text span {
    color: var(--dark);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 15px;
}

.nav-links li a:hover {
    color: var(--primary);
}

.nav-mobile-btns {
    display: none; /* Only visible on mobile menu */
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
}

.header-btns {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.menu-toggle {
    display: none !important;
    font-size: 24px;
    cursor: pointer;
    order: 3;
}

/* Buttons */
.btn {
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    font-size: 14px;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(47, 85, 212, 0.3);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(47, 85, 212, 0.05);
}

/* Sections */
.hero {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    color: var(--text-sub);
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.hero-image {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    display: block;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 15px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid #f1f3f9;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(47, 85, 212, 0.1);
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Pricing Section */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 350px;
    border: 1px solid #f1f3f9;
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-features {
    text-align: left;
    margin: 30px 0;
}

.pricing-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    color: #28a745;
    margin-right: 10px;
}

/* Footer */
footer {
    background: var(--dark);
    color: #d1d9e6;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col a {
    color: #8492a6;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .menu-toggle {
        display: block !important;
    }

    .logo-text {
        font-size: 18px;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 40px 20px;
        transition: 0.3s ease;
        z-index: 999;
        align-items: flex-start;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-mobile-btns {
        display: flex;
    }

    .header-btns {
        display: none;
    }

    .hero h1 { font-size: 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .pricing-card {
        width: 100%;
    }
    .hero h1 { font-size: 32px; }
    .hero-btns {
        flex-direction: column;
    }
    .hero-btns .btn {
        width: 100%;
    }
}
