/* =========================
RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: 'Inter', sans-serif;

    background: #f9fafb;
    color: #111827;

    line-height: 1.6;

    padding-top: 80px;

}



/* =========================
CONTAINER
========================= */

.container {

    max-width: 1200px;
    margin: auto;

    padding: 0 20px;

}



/* =========================
TYPOGRAPHY
========================= */

h1,
h2,
h3 {

    letter-spacing: -0.5px;

}

h2 {

    font-size: 32px;

    font-weight: 700;

    margin-bottom: 40px;

    text-align: center;

}



/* =========================
NAVBAR
========================= */

.nav {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    background: #111827;

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

}



.nav-inner {

    max-width: 1200px;

    margin: auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 16px 20px;

}



.logo {

    color: white;

    font-size: 20px;

    font-weight: 700;

}



.nav-links {

    display: flex;

    gap: 25px;

}



.nav a {

    color: #cbd5e1;

    text-decoration: none;

    font-weight: 500;

    transition: 0.3s;

}



.nav a:hover {

    color: white;

}



/* NAV ACTIONS */

.nav-actions {

    display: flex;

    align-items: center;

    gap: 15px;

}



/* BUTTON */

.btn {

    padding: 12px 20px;

    border-radius: 10px;

    background: #6366f1;

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s;
    

}



.btn:hover {

    background: #4f46e5;

}



/* HAMBURGER */

.hamburger {

    display: none;

    flex-direction: column;

    cursor: pointer;

}



.hamburger span {

    width: 25px;

    height: 3px;

    background: white;

    margin: 4px 0;

    border-radius: 2px;

}



/* MOBILE NAV */

@media(max-width:768px) {

    .nav-links {

        position: absolute;

        top: 70px;
        right: 20px;

        background: #111827;

        border: 1px solid rgba(255, 255, 255, 0.05);

        width: 220px;

        padding: 20px;

        border-radius: 12px;

        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

        display: none;

        flex-direction: column;

    }

    .hamburger {

        display: flex;

    }

}



/* =========================
HERO VIDEO
========================= */

.hero-video {

    position: relative;

    height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    overflow: hidden;

}



.hero-bg {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    /* improves clarity */

    filter: brightness(2) contrast(1.05);

}



.overlay-light {

    position: absolute;

    width: 100%;
    height: 100%;

    background: linear-gradient(180deg,

            rgba(17, 24, 39, 0.35),

            rgba(17, 24, 39, 0.55));

}



.hero-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    padding: 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    color: white;

}



.hero-content h1 {

    font-size: 52px;

    font-weight: 800;

    line-height: 1.1;

}



.hero-content p {

    margin-top: 18px;

    font-size: 18px;

    max-width: 600px;

    opacity: 0.95;

}



.hero-buttons {

    margin-top: 30px;

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

    justify-content: center;

}



/* OUTLINE BUTTON */

.btn-outline {

    padding: 12px 22px;

    border-radius: 10px;

    border: 1px solid rgba(255, 255, 255, 0.8);

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s;

}



.btn-outline:hover {

    background: white;

    color: #111827;

}



/* MOBILE HERO */

@media(max-width:768px) {

    .hero-video {

        height: 85vh;

        padding: 40px 15px;

    }

    .hero-content h1 {

        font-size: 32px;

    }

    .hero-content p {

        font-size: 16px;

    }

}



@media(max-width:480px) {

    .hero-content h1 {

        font-size: 26px;

    }

}



/* =========================
SECTION
========================= */

.section {

    padding: 80px 0;

}



/* =========================
CARDS
========================= */

.card {

    background: white;

    padding: 25px;

    border-radius: 16px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);

    transition: 0.3s;

}



.card:hover {

    transform: translateY(-5px);

}



/* GRID */

.grid-3 {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

}



/* MOBILE GRID */

@media(max-width:768px) {

    .grid-3 {

        grid-template-columns: 1fr;

    }

}



/* =========================
POPULAR PRODUCTS
========================= */

.products {

    background: #f3f4f6;

}



.section-title {

    font-size: 32px;

    font-weight: 700;

    margin-bottom: 40px;

}



.products-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

}



.product-card {

    background: white;

    padding: 25px;

    border-radius: 14px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);

    transition: 0.3s;

}



.product-card:hover {

    transform: translateY(-5px);

}



/* ICON */

.product-icon {

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    font-weight: 700;

    color: white;

    margin-bottom: 15px;

}



/* ICON COLORS */

.stocks {

    background: #f59e0b;

}



.cfd {

    background: #b91c1c;

}



.fx {

    background: #15803d;

}



/* TEXT */

.product-card h3 {

    font-size: 18px;

    margin-bottom: 10px;

}



.product-card p {

    color: #6b7280;

    font-size: 15px;

}



/* LIGHT CARD */

.product-card.light {

    background: #f9fafb;

}



/* LINK */

.product-card a {

    color: #2563eb;

    text-decoration: none;

    font-weight: 600;

}



/* MOBILE PRODUCTS */

@media(max-width:900px) {

    .products-grid {

        grid-template-columns: 1fr 1fr;

    }

}



@media(max-width:600px) {

    .products-grid {

        grid-template-columns: 1fr;

    }

}

/* =========================
DARK MODE SYSTEM
========================= */

.dark {

    background: #020617;

}


/* BODY */

.dark body {

    background: #020617;

    color: #e5e7eb;

}


/* NAVBAR */

.dark .nav {

    background: #020617;

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

}


/* LINKS */

.dark .nav a {

    color: #cbd5e1;

}

.dark .nav a:hover {

    color: white;

}


/* CARDS */

.dark .card {

    background: #0f172a;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);

}


/* PRODUCTS */

.dark .products {

    background: #020617;

}

.dark .product-card {

    background: #0f172a;

}

.dark .product-card.light {

    background: #020617;

}

.dark .product-card p {

    color: #94a3b8;

}


/* HERO OVERLAY */

.dark .overlay-light {

    background: linear-gradient(180deg,

            rgba(2, 6, 23, 0.4),

            rgba(2, 6, 23, 0.7));

}


/* MOBILE MENU */

.dark .nav-links {

    background: #020617;

    border: 1px solid rgba(255, 255, 255, 0.05);

}

/* =========================
ABOUT SECTION
========================= */

.about {

    background: white;

}

.dark .about {

    background: #020617;

}


/* GRID */

.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: center;

}


/* IMAGE */

.about-image img {

    width: 100%;

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

}


/* TEXT */

.about-content h2 {

    text-align: left;

    margin-bottom: 20px;

}


.about-intro {

    margin-bottom: 30px;

    color: #6b7280;

}

.dark .about-intro {

    color: #9ca3af;

}


/* ITEMS */

.about-item {

    display: flex;

    gap: 15px;

    margin-bottom: 25px;

    align-items: flex-start;

}


/* ICON */

.about-icon {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    font-size: 18px;

    background: #f3f4f6;

}


/* ICON COLORS */

.educate {

    background: #fde68a;

}

.empower {

    background: #bfdbfe;

}

.evolve {

    background: #fecaca;

}



/* MOBILE */

@media(max-width:900px) {

    .about-grid {

        grid-template-columns: 1fr;

    }

    .about-content h2 {

        text-align: center;

    }

    .about-intro {

        text-align: center;

    }

    .about-item {

        justify-content: center;

        text-align: left;

    }

}

/* =========================
STATS SECTION
========================= */

.stats {

    padding-top: 40px;

}


.stats-box {

    background: #111827;

    border-radius: 18px;

    padding: 35px 20px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    text-align: center;

}


/* DARK MODE */

.dark .stats-box {

    background: #0f172a;

}


/* NUMBER */

.stat h2 {

    font-size: 36px;

    font-weight: 700;

    margin-bottom: 5px;
    color: whitesmoke;

}


/* TEXT */

.stat p {

    color: whitesmoke;

    font-size: 14px;

}

.dark .stat p {

    color: #9ca3af;

}


/* MOBILE */

@media(max-width:900px) {

    .stats-box {

        grid-template-columns: 1fr 1fr;

    }

}


@media(max-width:500px) {

    .stats-box {

        grid-template-columns: 1fr;

    }

}

/* =========================
FAQ SECTION
========================= */

.faq {

    background: #f9fafb;

}

.dark .faq {

    background: #020617;

}


/* CONTAINER */

.faq-container {

    max-width: 800px;

    margin: auto;

}


/* ITEM */

.faq-item {

    border-bottom: 1px solid #e5e7eb;

    padding: 18px 0;

}

.dark .faq-item {

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

}


/* QUESTION */

.faq-question {

    width: 100%;

    background: none;

    border: none;

    font-size: 18px;

    font-weight: 600;

    text-align: left;

    display: flex;

    justify-content: space-between;

    align-items: center;

    cursor: pointer;

    color: #111827;

    padding: 10px 0;

}

.dark .faq-question {

    color: white;

}


/* ANSWER */

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: 0.3s;

}


.faq-answer p {

    margin-top: 10px;

    color: #6b7280;

}

.dark .faq-answer p {

    color: #9ca3af;

}


/* ACTIVE STATE */

.faq-item.active .faq-answer {

    max-height: 200px;

}


.faq-item.active span {

    transform: rotate(45deg);

}

/* =========================
PREMIUM FOOTER
========================= */

.footer {

    background: #111827;

    color: #cbd5e1;

    padding-top: 60px;

    margin-top: 80px;

    font-size: 14px;

}



/* TOP GRID */

.footer-top {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 40px;

    margin-bottom: 40px;

}



/* LOGO */

.footer-logo {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 15px;

}


.logo-icon {

    background: linear-gradient(135deg, #6366f1, #22c55e);

    color: white;

    padding: 8px 10px;

    border-radius: 8px;

    font-size: 14px;

}



/* DESCRIPTION */

.footer-desc {

    max-width: 320px;

    color: #94a3b8;

    margin-bottom: 20px;

}



/* LINKS */

.footer h4 {

    color: white;

    margin-bottom: 15px;

    font-size: 15px;

}


.footer ul {

    list-style: none;

}


.footer ul li {

    margin-bottom: 8px;

}


.footer a {

    color: #94a3b8;

    text-decoration: none;

    transition: 0.3s;

}


.footer a:hover {

    color: white;

}



/* SOCIAL */

.footer-social {

    display: flex;

    gap: 12px;

    margin-top: 10px;

}



/* TRUST BADGES */

.footer-trust {

    display: flex;

    justify-content: center;

    gap: 30px;

    flex-wrap: wrap;

    padding: 20px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.05);

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

    margin-bottom: 20px;

    color: #94a3b8;

}



/* LEGAL */

.footer-legal {

    display: flex;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 20px;

    margin-bottom: 20px;

}


.legal-links {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}



/* DISCLAIMER */

.footer-disclaimer {

    background: #0b1220;

    padding: 15px 20px;

    border-radius: 10px;

    color: #64748b;

    font-size: 13px;

}



/* MOBILE */

@media(max-width:900px) {

    .footer-top {

        grid-template-columns: 1fr 1fr;

    }

}


@media(max-width:600px) {

    .footer-top {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .footer-desc {

        margin: auto;

    }

    .footer-legal {

        flex-direction: column;

        align-items: center;

    }

}

/* =========================
TESTIMONIALS
========================= */

.testimonials {

    background: #f8fafc;

}

.dark .testimonials {

    background: #020617;

}


/* GRID */

.testimonial-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}


/* CARD */

.testimonial-card {

    background: white;

    padding: 25px;

    border-radius: 16px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);

    transition: 0.3s;

}

.testimonial-card:hover {

    transform: translateY(-6px);

}

.dark .testimonial-card {

    background: #0f172a;

}


/* STARS */

.stars {

    color: #fbbf24;

    margin-bottom: 15px;

    font-size: 18px;

}


/* TEXT */

.testimonial-card p {

    color: #6b7280;

    margin-bottom: 20px;

}

.dark .testimonial-card p {

    color: #9ca3af;

}


/* USER */

.testimonial-user {

    display: flex;

    align-items: center;

    gap: 12px;

}


.testimonial-user img {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    object-fit: cover;

}


.testimonial-user span {

    font-size: 13px;

    color: #6b7280;

    display: block;

}

.dark .testimonial-user span {

    color: #9ca3af;

}


/* MOBILE */

@media(max-width:900px) {

    .testimonial-grid {

        grid-template-columns: 1fr 1fr;

    }

}


@media(max-width:600px) {

    .testimonial-grid {

        grid-template-columns: 1fr;

    }

}