@import url('https://fonts.googleapis.com/css2?family=Basic&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bitcount+Grid+Double:wght@100..900&display=swap');


/* General Reset */
* {
    margin: 0px;
    padding: 0px;
    /* box-sizing: border-box; */
}

main {
    color: #222;
    background: #fff;
    /* background: aliceblue; */
}

/* Containers */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a57ca;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 20px;
    background: linear-gradient(to right, #f8fbff, #eaf3ff);
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: #1a57ca;
}

.hero-subtext {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.cta-btn {
    display: inline-block;
    background: #1a57ca;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    /* transition: background 0.3s ease; */
    transition: transform 0.2s;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.cta-btn:hover {
    background: #003d99;
    transform: translateY(-5px);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 350px;
    width: 100%;
}

/* Why Us */
.why-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.why-grid div {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    /* background: #f9f9ff; */
    background: aliceblue;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: transform 0.2s;
}

.why-grid div:hover {
    transform: translateY(-5px);
}

/* Audience */
.audience {
    background-color: aliceblue;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    transition: transform 0.2s;
}

.audience:hover {
    transform: translateY(-5px);
}

.audience ul {
    list-style: none;
    text-align: center;
}

.audience li {
    margin: 10px 0;
    font-size: 1.1rem;
}

/* Final Pitch */
.final-pitch {
    text-align: center;
}

.final-pitch p {
    margin: 15px 0;
    font-size: 1rem;
    color: #444;
}

/* How It Works */
.steps-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    /* background: #f9f9ff; */
    background: aliceblue;
    padding: 20px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    text-align: center;
    border-radius: 8px;
    transition: transform 0.2s;
}

.step:hover {
    transform: translateY(-5px);
}

/* CTA Banner */
.cta-banner {
    background: #1a57ca;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.cta-banner .cta-btn {
    background: white;
    color: #1a57ca;
}

.cta-banner .cta-btn:hover {
    background: #f1f6ff;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}



/* LIMIT USER POPUP CSS */

/* === Notification Panel === */
.notification-panel {
    display: none;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    width: 100%;
    max-width: 500px;
    background: #f9fbff;
    border: 1.5px solid #dce6ff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 24px;
    font-family: sans-serif;
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: slideDownPanel 0.4s ease forwards;
}

@keyframes slideDownPanel {
    to {
        transform: translateX(-50%) translateY(0);
    }
}

.notification-panel img {
    width: 50px;
    margin-bottom: 12px;
}

.notification-panel h2 {
    margin: 0;
    font-size: 1.2rem;
    color: #1a57ca;
    margin-bottom: 8px;
}

.notification-panel p {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.4;
}

.notification-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.upgrade-btn {
    background: linear-gradient(90deg, #1a57ca, #4c8dff);
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(26, 87, 202, 0.2);
    transition: all 0.3s ease;
}

.upgrade-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(26, 87, 202, 0.3);
}

.cancel-btn {
    background: transparent;
    border: 1.5px solid #aabbee;
    color: #333;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    background: #eef3ff;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 20px;
    color: #777;
    cursor: pointer;
    background: none;
    border: none;
}

.close-btn:hover {
    color: #1a57ca;
}

/* Responsive */
@media (max-width: 500px) {
    .notification-panel {
        max-width: 90%;
        padding: 16px 18px;
    }

    .notification-panel h2 {
        font-size: 1.1rem;
    }

    .notification-panel p {
        font-size: 0.9rem;
    }

    .upgrade-btn,
    .cancel-btn {
        width: 100%;
        text-align: center;
    }
}