body {
    margin: 0;
    font-family: Inter, sans-serif;
    background: #f8fafc;
    color: #0f172a;
}

/* NAVBAR */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 35px;
    height: 35px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a8a;
}

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

/* BLOG BUTTON */
.blog-btn {
    padding: 14px 30px;
    border-radius: 30px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #1e3a8a;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-btn:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

/* CTA BUTTON (FIXED PROPERLY) */
.cta-btn {
    padding: 14px 30px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #1e3a8a, #fbbf24);
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* HERO */
.hero {
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero p {
    color: #475569;
}

/* DASHBOARD */
.dashboard {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* FEATURES */
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 80px;
    gap: 40px;
}

.feature {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* CTA SECTION */
.cta {
    text-align: center;
    padding: 80px;
    background: linear-gradient(135deg, #1e3a8a, #fbbf24);
    color: white;
}

/* MODAL */
.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hidden {
    display: none;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 16px;
    width: 300px;
}