/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #0f172a;
    color: white;
    line-height: 1.6;
}

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

.logo {
    color: #3b82f6;
    font-size: 24px;
    font-weight: bold;
}

/* BUTTONS */
.btn {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.primary {
    background-color: #3b82f6;
    color: white;
}

.primary:hover {
    background-color: #2563eb;
}

.outline {
    border: 2px solid #3b82f6;
    color: white;
}

.outline:hover {
    background-color: #3b82f6;
}

/* HERO */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero-text p {
    color: #cbd5f5;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
}

/* BENEFITS */
.benefits {
    padding: 60px 40px;
    background-color: #020617;
    text-align: center;
}

.benefits h2 {
    margin-bottom: 40px;
    font-size: 28px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background-color: #0f172a;
    padding: 20px;
    border-radius: 12px;
}

.card h3 {
    color: #3b82f6;
    margin-bottom: 10px;
}

/* REFERRAL */
.referral {
    padding: 60px 20px;
    text-align: center;
    background-color: #020617;
}

.referral h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.referral p {
    color: #c4d0f5;
    margin-bottom: 20px;
}

.ref-box {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ref-box input {
    padding: 12px;
    border-radius: 8px;
    border: none;
    width: 280px;
    max-width: 100%;
}

.ref-box button {
    cursor: pointer;
}

.copy-btn {
    background-color: #3b82f6;
    color: white;
    border: none;
}

.copy-btn:hover {
    background-color: #2563eb;
}

/* .btn outline {
    color:#020617
} */

/* WAITLIST */
.waitlist {
    padding: 60px 20px;
    text-align: center;
}

.waitlist h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.waitlist p {
    color: #cbd5f5;
    margin-bottom: 20px;
}

/* FOOTER
footer {
    text-align: center;
    padding: 20px;
    color: #94a3b8;
} */

/* FOOTER */
footer {
    text-align: center;
    padding: 30px 20px;
    color: #94a3b8;
}

.social-icons {
    margin-bottom: 15px;
}

.social-icons a {
    margin: 0 10px;
    font-size: 20px;
    color: #94a3b8;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #3b82f6;
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 24px;
    padding: 15px;
    border-radius: 50%;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* 📱 MOBILE RESPONSIVENESS */
@media (max-width: 900px) {

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .navbar {
        padding: 15px 20px;
    }

    .ref-box {
        flex-direction: column;
        align-items: center;
    }
}