﻿/* =========================
           HEADER ELITE
        ========================= */

/* =========================
   GLOBAL RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #020617;
    color: #e5e7eb;
    scroll-behavior: smooth;
}

/* =========================
   HEADER ELITE
========================= */
.header-elite {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
    max-width: 1300px;
    margin: auto;
    padding: 22px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-size: 22px;
    font-weight: 700;
    color: #22c55e;
    text-decoration: none;
}

.logo span {
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 28px;
}

    .nav-links a {
        color: #cbd5e1;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        position: relative;
    }

        .nav-links a:hover {
            color: #22c55e;
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: #22c55e;
            transition: width .25s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

.header-actions {
    display: flex;
    gap: 14px;
}

.btn-login {
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid rgba(34,197,94,0.4);
    color: #22c55e;
    text-decoration: none;
}

    .btn-login:hover {
        background: rgba(34,197,94,0.15);
    }

.btn-cta {
    padding: 12px 22px;
    border-radius: 12px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #022c22;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(34,197,94,.45);
}

/* =========================
   HERO
========================= */
.hero-elite {
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
    text-align: center;
    background: radial-gradient(1200px at center, #020617, #020617);
}

.hero-content {
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: rgba(34,197,94,0.15);
    color: #22c55e;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.hero-elite h1 {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 22px;
}

    .hero-elite h1 span {
        color: #22c55e;
    }

.hero-elite p {
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.7;
}

.hero-buttons {
    margin-top: 38px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.hero-primary {
    padding: 16px 36px;
    border-radius: 14px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #000;
    font-weight: 700;
    text-decoration: none;
}

.hero-secondary {
    padding: 16px 36px;
    border-radius: 14px;
    border: 1px solid #22c55e;
    color: #22c55e;
    text-decoration: none;
}

.hero-stats {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 50px;
}

    .hero-stats strong {
        font-size: 28px;
        color: #fff;
    }

    .hero-stats span {
        display: block;
        font-size: 14px;
        color: #94a3b8;
    }




.features-elite {
    background: radial-gradient(1200px at top, #0f172a, #020617);
    padding: 100px 6%;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1300px;
    margin: auto;
}

.feature-card.elite {
    position: relative;
    padding: 36px 32px;
    background: linear-gradient( 180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02) );
    border-radius: 22px;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.35s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

    .feature-card.elite::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 22px;
        background: linear-gradient( 120deg, transparent, rgba(255,255,255,0.15), transparent );
        opacity: 0;
        transition: opacity 0.35s ease;
    }

    .feature-card.elite:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 35px 90px rgba(0,0,0,0.65);
    }

        .feature-card.elite:hover::before {
            opacity: 1;
        }

.feature-card h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.7;
}

/* ICON STYLE */
.icon-wrap {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
}

    /* ICON COLORS */
    .icon-wrap.blue {
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    }

    .icon-wrap.green {
        background: linear-gradient(135deg, #22c55e, #15803d);
    }

    .icon-wrap.purple {
        background: linear-gradient(135deg, #a855f7, #6d28d9);
    }

    .icon-wrap.orange {
        background: linear-gradient(135deg, #f97316, #c2410c);
    }

    .icon-wrap.cyan {
        background: linear-gradient(135deg, #06b6d4, #0e7490);
    }

    .icon-wrap.red {
        background: linear-gradient(135deg, #ef4444, #991b1b);
    }



.how-it-works-elite {
    padding: 120px 6%;
    background: radial-gradient(1200px at center, #0b1225, #020617);
    text-align: center;
}

.how-title {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 70px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.steps-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 34px;
    max-width: 1400px;
    margin: auto;
}

.step-card {
    position: relative;
    background: linear-gradient( 180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02) );
    border-radius: 22px;
    padding: 38px 28px 42px;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.35s ease;
    box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

    .step-card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 45px 120px rgba(0,0,0,0.75);
    }

.step-badge {
    position: absolute;
    top: -16px;
    left: 22px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 10px 30px rgba(37,99,235,0.6);
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 20px auto
}


.trust-elite {
    padding: 120px 6%;
    background: radial-gradient(1400px at right, #0f172a, #020617);
}

.trust-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.trust-left h2 {
    color: #ffffff;
    font-size: 40px;
    margin-bottom: 14px;
    font-weight: 600;
}

.trust-subtitle {
    color: #94a3b8;
    font-size: 16px;
    margin-bottom: 36px;
    max-width: 520px;
}

.trust-list {
    list-style: none;
    padding: 0;
    margin-bottom: 36px;
}

    .trust-list li {
        display: flex;
        align-items: center;
        gap: 14px;
        color: #e5e7eb;
        font-size: 16px;
        margin-bottom: 16px;
    }

.check-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #22c55e, #15803d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(34,197,94,0.45);
}

.trust-cta {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 40px rgba(37,99,235,0.5);
}

    .trust-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 60px rgba(37,99,235,0.75);
    }

.trust-card {
    background: linear-gradient( 180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02) );
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 90px rgba(0,0,0,0.55);
}

    .trust-card h3 {
        color: #ffffff;
        font-size: 22px;
        margin-bottom: 14px;
    }

    .trust-card p {
        color: #cbd5e1;
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 30px;
    }

.trust-stats {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

    .trust-stats div strong {
        display: block;
        color: #ffffff;
        font-size: 22px;
    }

    .trust-stats div span {
        color: #94a3b8;
        font-size: 13px;
    }





.cta-elite {
    position: relative;
    padding: 120px 6%;
    background: radial-gradient(900px at top, #22c55e, #15803d);
    text-align: center;
    overflow: hidden;
}

/* GLOW EFFECT */
.cta-glow {
    position: absolute;
    inset: -200px;
    background: radial-gradient( 600px at center, rgba(255,255,255,0.25), transparent 70% );
    animation: pulseGlow 6s infinite alternate;
}



.cta-container {
    position: relative;
    max-width: 900px;
    margin: auto;
    z-index: 1;
}

    .cta-container h2 {
        font-size: 42px;
        color: #022c22;
        margin-bottom: 14px;
        font-weight: 700;
    }

    .cta-container p {
        font-size: 18px;
        color: #064e3b;
        max-width: 680px;
        margin: 0 auto 40px;
        line-height: 1.7;
    }

/* BUTTONS */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary {
    padding: 16px 36px;
    background: linear-gradient(135deg, #020617, #020617);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;
    box-shadow: 0 18px 60px rgba(2,6,23,0.6);
    transition: all 0.3s ease;
}

    .cta-primary:hover {
        transform: translateY(-4px);
        box-shadow: 0 30px 90px rgba(2,6,23,0.8);
    }

.cta-secondary {
    padding: 16px 28px;
    color: #022c22;
    font-size: 15px;
    text-decoration: underline;
    font-weight: 500;
}

/* TRUST ROW */
.cta-trust {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #022c22;
    font-weight: 500;
}




.faq-elite {
    padding: 120px 6%;
    background: radial-gradient(1200px at center, #0f172a, #020617);
}

.faq-title {
    text-align: center;
    color: #ffffff;
    font-size: 38px;
    margin-bottom: 60px;
    font-weight: 600;
}

.faq-container {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    margin-bottom: 18px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient( 180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02) );
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 26px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

    .faq-question:hover {
        background: rgba(255,255,255,0.03);
    }

.faq-icon {
    font-size: 22px;
    color: #22c55e;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

    .faq-answer p {
        padding: 0 26px 22px;
        color: #cbd5e1;
        font-size: 15px;
        line-height: 1.7;
    }

/* ACTIVE STATE */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}







/* =========================
        footer
        ========================= */


.footer-elite {
    background: linear-gradient(180deg, #020617, #020617);
    padding: 80px 6% 30px;
    color: #cbd5e1;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 60px;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 14px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 360px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

    .footer-col ul li {
        margin-bottom: 12px;
    }

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.25s ease;
}

    .footer-col a:hover {
        color: #22c55e;
    }

/* SUPPORT STATUS */
.support-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(34,197,94,0.8);
}

/* FOOTER BOTTOM */
.footer-bottom {
    margin-top: 60px;
    text-align: center;
    font-size: 13px;
    color: #64748b;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
}


/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}