/* =========================================
   MONEXA — GLOBAL STYLES
========================================= */

:root {
    --black: #050806;
    --black-soft: #080d0a;
    --card: #0b1510;
    --card-light: #0f1c15;

    --green: #19d66b;
    --green-bright: #39ff88;
    --green-dark: #0d8f49;

    --white: #ffffff;
    --text: #eef7f1;
    --muted: #91a99a;

    --border: rgba(57, 255, 136, 0.13);

    --radius: 18px;
    --container: 1180px;
}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--text);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(5, 8, 6, 0.86);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--border);
}

.nav-container {
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 220px;
}

.brand-logo {
    width: 43px;
    height: 43px;

    border-radius: 50%;
    overflow: hidden;

    border: 1px solid rgba(57, 255, 136, 0.35);

    box-shadow:
        0 0 18px rgba(57, 255, 136, 0.12);
}

.brand-logo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: var(--white);

    font-size: 20px;
    font-weight: 800;

    letter-spacing: -0.5px;
}

.brand-tagline {
    color: var(--muted);

    font-size: 8px;

    white-space: nowrap;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.desktop-nav a {
    color: var(--muted);

    font-size: 14px;
    font-weight: 500;

    transition: 0.25s ease;
}

.desktop-nav a:hover {
    color: var(--green-bright);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-btn,
.signup-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    height: 42px;

    padding: 0 18px;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 700;

    transition: 0.25s ease;
}

.login-btn {
    color: var(--text);

    border: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.025);
}

.login-btn:hover {
    border-color: rgba(57, 255, 136, 0.35);
}

.signup-btn {
    color: #031008;

    background: var(--green-bright);

    box-shadow:
        0 0 25px rgba(57, 255, 136, 0.15);
}

.signup-btn:hover {
    transform: translateY(-1px);

    box-shadow:
        0 0 30px rgba(57, 255, 136, 0.28);
}

.mobile-menu-btn {
    display: none;

    width: 42px;
    height: 42px;

    border-radius: 10px;

    border: 1px solid var(--border);

    background: var(--card);

    color: var(--white);

    cursor: pointer;
}

.mobile-menu {
    display: none;
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border-bottom: 1px solid rgba(57, 255, 136, 0.06);
}

.hero::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    left: -260px;
    top: -260px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(25, 214, 107, 0.12),
            transparent 68%
        );

    pointer-events: none;
}

.hero-container {
    position: relative;

    display: grid;

    grid-template-columns:
        1fr
        0.92fr;

    align-items: center;

    gap: 70px;

    padding: 80px 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;

    align-items: center;
    gap: 9px;

    padding: 8px 12px;

    border-radius: 999px;

    border: 1px solid var(--border);

    background: rgba(25, 214, 107, 0.045);

    color: #b9d8c5;

    font-size: 11px;
    font-weight: 600;

    margin-bottom: 25px;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green-bright);

    box-shadow:
        0 0 10px rgba(57, 255, 136, 0.8);
}

.hero h1 {
    max-width: 680px;

    font-size: clamp(
        48px,
        6vw,
        76px
    );

    line-height: 0.98;

    letter-spacing: -3.8px;

    font-weight: 850;

    color: var(--white);

    margin-bottom: 25px;
}

.hero h1 span {
    display: block;

    color: var(--green-bright);
}

.hero-content > p {
    max-width: 570px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.75;

    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 45px;
}

.primary-btn,
.secondary-btn {
    min-height: 50px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 22px;

    border-radius: 11px;

    font-size: 13px;
    font-weight: 800;

    transition: 0.25s ease;
}

.primary-btn {
    color: #031008;

    background: var(--green-bright);

    box-shadow:
        0 0 28px rgba(57, 255, 136, 0.17);
}

.primary-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 0 35px rgba(57, 255, 136, 0.3);
}

.primary-btn span {
    font-size: 18px;
}

.secondary-btn {
    color: var(--text);

    background: rgba(255, 255, 255, 0.025);

    border: 1px solid var(--border);
}

.secondary-btn:hover {
    border-color: rgba(57, 255, 136, 0.35);
}

.hero-trust {
    display: flex;

    align-items: center;

    gap: 22px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    color: var(--white);

    font-size: 16px;
}

.trust-item span {
    color: var(--muted);

    font-size: 10px;
}

.trust-divider {
    width: 1px;
    height: 30px;

    background: var(--border);
}


/* =========================================
   HERO DASHBOARD PREVIEW
========================================= */

.hero-preview {
    position: relative;

    display: flex;
    justify-content: center;
}

.hero-preview::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(57, 255, 136, 0.13),
            transparent 68%
        );

    filter: blur(5px);

    z-index: 0;
}

.dashboard-card {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 440px;

    padding: 22px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #101b14,
            #07100b
        );

    border: 1px solid rgba(57, 255, 136, 0.16);

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.55),
        0 0 50px rgba(25, 214, 107, 0.06);
}

.preview-top {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    margin-bottom: 24px;
}

.preview-small {
    display: block;

    color: var(--muted);

    font-size: 11px;

    margin-bottom: 5px;
}

.preview-balance {
    color: var(--white);

    font-size: 34px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: -1.5px;
}

.preview-balance small {
    color: var(--green-bright);

    font-size: 13px;

    letter-spacing: 0;
}

.preview-logo {
    width: 45px;
    height: 45px;

    overflow: hidden;

    border-radius: 50%;

    border: 1px solid rgba(57, 255, 136, 0.25);
}

.preview-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-cards {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-bottom: 18px;
}

.mini-card {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.025);

    border: 1px solid rgba(255, 255, 255, 0.045);
}

.mini-icon {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: rgba(57, 255, 136, 0.08);

    color: var(--green-bright);

    font-size: 13px;
}

.mini-card div {
    display: flex;
    flex-direction: column;
}

.mini-card span {
    color: var(--muted);

    font-size: 9px;
}

.mini-card strong {
    color: var(--white);

    font-size: 11px;
}

.preview-activity {
    padding: 16px;

    border-radius: 15px;

    background: rgba(0, 0, 0, 0.16);

    border: 1px solid rgba(255, 255, 255, 0.035);
}

.activity-heading {
    display: flex;

    justify-content: space-between;

    color: var(--white);

    font-size: 11px;
    font-weight: 700;

    margin-bottom: 13px;
}

.activity-heading span:last-child {
    color: var(--muted);
}

.activity-row {
    display: flex;

    align-items: center;

    gap: 9px;

    padding: 10px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.035);
}

.activity-icon {
    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    color: var(--green-bright);

    background: rgba(57, 255, 136, 0.07);

    font-size: 11px;
}

.activity-info {
    flex: 1;

    display: flex;
    flex-direction: column;
}

.activity-info strong {
    color: #dbe9e0;

    font-size: 10px;
}

.activity-info span {
    color: var(--muted);

    font-size: 8px;
}

.activity-amount {
    color: var(--green-bright);

    font-size: 9px;
}

.activity-naira {
    color: #b9d8c5;

    font-size: 9px;
}

.preview-nav {
    display: flex;

    align-items: center;
    justify-content: space-around;

    margin-top: 18px;

    color: #617a69;

    font-size: 15px;
}

.preview-nav .active {
    color: var(--green-bright);
}

.preview-plus {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #031008;

    background: var(--green-bright);

    font-size: 20px;

    box-shadow:
        0 0 22px rgba(57, 255, 136, 0.2);
}


/* =========================================
   SECTIONS
========================================= */

.features-section,
.how-section,
.about-section {
    padding: 110px 0;
}

.section-heading {
    max-width: 650px;

    margin-bottom: 55px;
}

.section-label {
    color: var(--green-bright);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.7px;

    margin-bottom: 13px;
}

.section-heading h2,
.about-content h2 {
    color: var(--white);

    font-size: clamp(
        34px,
        5vw,
        52px
    );

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 17px;
}

.section-heading h2 span,
.about-content h2 span {
    color: var(--green-bright);
}

.section-heading p,
.about-content p {
    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   FEATURES
========================================= */

.features-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}

.feature-card {
    padding: 27px;

    min-height: 250px;

    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(15, 28, 21, 0.95),
            rgba(7, 13, 9, 0.95)
        );

    border: 1px solid var(--border);

    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(57, 255, 136, 0.28);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.25);
}

.feature-icon {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background:
        rgba(57, 255, 136, 0.08);

    color: var(--green-bright);

    margin-bottom: 23px;

    font-size: 15px;

    border: 1px solid
        rgba(57, 255, 136, 0.08);
}

.feature-card h3 {
    color: var(--white);

    font-size: 17px;

    margin-bottom: 10px;
}

.feature-card p {
    color: var(--muted);

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================
   HOW IT WORKS
========================================= */

.how-section {
    background:
        rgba(10, 20, 14, 0.45);

    border-top: 1px solid rgba(57, 255, 136, 0.05);
    border-bottom: 1px solid rgba(57, 255, 136, 0.05);
}

.steps-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;
}

.step-card {
    position: relative;

    padding: 30px;

    border-radius: var(--radius);

    border: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.015);
}

.step-number {
    color: var(--green-bright);

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 35px;
}

.step-card h3 {
    color: var(--white);

    font-size: 18px;

    margin-bottom: 10px;
}

.step-card p {
    color: var(--muted);

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================
   CTA
========================================= */

.cta-section {
    padding: 80px 0;
}

.cta-card {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 45px;

    border-radius: 24px;

    background:
        linear-gradient(
            120deg,
            #0d2015,
            #07100b
        );

    border: 1px solid
        rgba(57, 255, 136, 0.18);

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.025);
}

.cta-card h2 {
    max-width: 600px;

    color: var(--white);

    font-size: clamp(
        28px,
        4vw,
        43px
    );

    line-height: 1.08;

    letter-spacing: -1.5px;

    margin-bottom: 12px;
}

.cta-card p {
    color: var(--muted);

    font-size: 13px;
}


/* =========================================
   ABOUT
========================================= */

.about-content {
    max-width: 720px;
}

.about-content p {
    max-width: 650px;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    border-top: 1px solid var(--border);

    padding: 35px 0;

    background: #030504;
}

.footer-content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-brand {
    display: flex;

    align-items: center;

    gap: 10px;
}

.footer-brand img {
    width: 35px;
    height: 35px;

    border-radius: 50%;

    object-fit: cover;
}

.footer-brand div {
    display: flex;
    flex-direction: column;
}

.footer-brand strong {
    color: var(--white);

    font-size: 13px;
}

.footer-brand span {
    color: var(--muted);

    font-size: 8px;
}

.footer-content > p {
    color: #607468;

    font-size: 9px;
}


/* =========================================
   GLOWS
========================================= */

.hero-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.glow-one {
    width: 220px;
    height: 220px;

    right: 10%;
    top: 8%;

    background:
        radial-gradient(
            circle,
            rgba(57, 255, 136, 0.07),
            transparent 70%
        );
}

.glow-two {
    width: 300px;
    height: 300px;

    left: 35%;
    bottom: -150px;

    background:
        radial-gradient(
            circle,
            rgba(25, 214, 107, 0.05),
            transparent 70%
        );
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-actions {
        margin-left: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 50px;

        padding: 65px 0;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content > p {
        margin-inline: auto;
    }

    .hero-badge {
        margin-inline: auto;
    }

    .hero-buttons,
    .hero-trust {
        justify-content: center;
    }

    .hero-preview {
        margin: 0 auto;

        width: min(
            100%,
            500px
        );
    }

    .features-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


@media (max-width: 650px) {

    .container {
        width: min(
            calc(100% - 28px),
            var(--container)
        );
    }

    .nav-container {
        height: 72px;
    }

    .brand-tagline {
        display: none;
    }

    .brand-name {
        font-size: 18px;
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: grid;
        place-items: center;
    }

    .mobile-menu {
        padding: 15px;

        border-top: 1px solid var(--border);

        background: #060a07;
    }

    .mobile-menu.open {
        display: flex;

        flex-direction: column;

        gap: 4px;
    }

    .mobile-menu > a {
        padding: 13px;

        border-radius: 10px;

        color: var(--muted);

        font-size: 13px;
    }

    .mobile-menu > a:hover {
        background: rgba(
            57,
            255,
            136,
            0.05
        );

        color: var(--green-bright);
    }

    .mobile-menu-actions {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 8px;

        margin-top: 8px;
    }

    .hero {
        min-height: auto;
    }

    .hero-container {
        padding: 55px 0 65px;
    }

    .hero h1 {
        font-size: 48px;

        letter-spacing: -2.5px;
    }

    .hero-content > p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .hero-trust {
        gap: 13px;
    }

    .trust-item strong {
        font-size: 14px;
    }

    .trust-item span {
        font-size: 8px;
    }

    .dashboard-card {
        padding: 16px;

        border-radius: 19px;
    }

    .preview-balance {
        font-size: 27px;
    }

    .preview-cards {
        grid-template-columns: 1fr;
    }

    .features-section,
    .how-section,
    .about-section {
        padding: 75px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2,
    .about-content h2 {
        font-size: 35px;
    }

    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: auto;
    }

    .cta-card {
        flex-direction: column;

        align-items: flex-start;

        padding: 28px;
    }

    .cta-card .primary-btn {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;

        align-items: flex-start;
    }
}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        transition: none !important;
    }
}

/* ======================================
   MONEXA NOTIFICATION POPUP
   ====================================== */

.monexa-notification-popup {
    position: fixed;
    top: 20px;
    right: 20px;

    width: min(380px, calc(100vw - 40px));

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 15px;

    background: #111714;
    border: 1px solid rgba(0, 255, 140, 0.25);

    border-radius: 16px;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.45),
        0 0 25px rgba(0, 255, 140, 0.08);

    z-index: 99999;

    opacity: 0;
    transform: translateY(-20px) scale(0.96);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.monexa-notification-popup.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.monexa-notification-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 255, 140, 0.12);

    border: 1px solid rgba(0, 255, 140, 0.2);

    border-radius: 12px;

    font-size: 19px;
}

.monexa-notification-content {
    flex: 1;
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 4px;
}

.monexa-notification-content strong {
    color: #ffffff;

    font-size: 14px;

    font-weight: 700;
}

.monexa-notification-content span {
    color: #9da9a3;

    font-size: 13px;

    line-height: 1.4;
}

.monexa-notification-close {
    width: 28px;
    height: 28px;

    flex-shrink: 0;

    border: none;

    background: transparent;

    color: #8c9892;

    font-size: 22px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;
}

.monexa-notification-close:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}


/* Mobile */
@media (max-width: 600px) {

    .monexa-notification-popup {
        top: 12px;
        right: 12px;

        width: calc(100vw - 24px);

        padding: 13px;
    }

    .monexa-notification-icon {
        width: 38px;
        height: 38px;
    }

}

/* ==================================================
   MONEXA — PREMIUM LIGHT THEME
   ================================================== */

html[data-theme="light"] {

    --black: #f4f7f5;
    --black-soft: #eef3f0;

    --card: #ffffff;
    --card-light: #f8faf9;

    --green: #12b85a;
    --green-bright: #0fc866;
    --green-dark: #087a3b;

    --white: #101713;
    --text: #17221c;
    --muted: #65736b;

    --border: rgba(18, 184, 90, 0.16);

}


/* PAGE */

html[data-theme="light"] body {
    background: var(--black);
    color: var(--text);
}


/* HEADER */

html[data-theme="light"] .site-header {
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: rgba(18, 184, 90, 0.12);
}


/* BRAND */

html[data-theme="light"] .brand-name {
    color: #101713;
}

html[data-theme="light"] .brand-tagline {
    color: #718078;
}


/* NAVIGATION */

html[data-theme="light"] .desktop-nav a {
    color: #65736b;
}

html[data-theme="light"] .desktop-nav a:hover {
    color: var(--green-dark);
}


/* LOGIN BUTTON */

html[data-theme="light"] .login-btn {
    color: #17221c;
    background: #ffffff;
    border-color: #dce5df;
}


/* SECONDARY BUTTON */

html[data-theme="light"] .secondary-btn {
    color: #17221c;
    background: #ffffff;
    border-color: #dce5df;
}


/* MOBILE MENU */

html[data-theme="light"] .mobile-menu {
    background: #ffffff;
    border-top-color: #e1e8e3;
}

html[data-theme="light"] .mobile-menu > a {
    color: #65736b;
}


/* HERO */

html[data-theme="light"] .hero {
    background: #f4f7f5;
    border-bottom-color: rgba(18, 184, 90, 0.08);
}


/* HERO TEXT */

html[data-theme="light"] .hero h1 {
    color: #101713;
}

html[data-theme="light"] .hero-content > p {
    color: #65736b;
}


/* TRUST ITEMS */

html[data-theme="light"] .trust-item strong {
    color: #17221c;
}

html[data-theme="light"] .trust-item span {
    color: #718078;
}


/* DASHBOARD PREVIEW */

html[data-theme="light"] .dashboard-card {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f0f6f2
        );

    border-color: rgba(18, 184, 90, 0.15);

    box-shadow:
        0 25px 70px rgba(20, 50, 35, 0.12),
        0 0 40px rgba(18, 184, 90, 0.05);
}


/* PREVIEW */

html[data-theme="light"] .preview-balance {
    color: #101713;
}

html[data-theme="light"] .preview-small {
    color: #718078;
}

html[data-theme="light"] .mini-card {
    background: #f5f8f6;
    border-color: #e3ebe5;
}

html[data-theme="light"] .mini-card strong {
    color: #17221c;
}

html[data-theme="light"] .mini-card span {
    color: #718078;
}

html[data-theme="light"] .preview-activity {
    background: #f7faf8;
    border-color: #e3ebe5;
}

html[data-theme="light"] .activity-heading {
    color: #17221c;
}

html[data-theme="light"] .activity-info strong {
    color: #26342c;
}

html[data-theme="light"] .activity-info span {
    color: #718078;
}


/* SECTIONS */

html[data-theme="light"] .features-section,
html[data-theme="light"] .about-section,
html[data-theme="light"] .cta-section {
    background: #f4f7f5;
}

html[data-theme="light"] .how-section {
    background: #edf3ef;
    border-top-color: #e0e9e3;
    border-bottom-color: #e0e9e3;
}


/* SECTION HEADINGS */

html[data-theme="light"] .section-heading h2,
html[data-theme="light"] .about-content h2 {
    color: #101713;
}

html[data-theme="light"] .section-heading p,
html[data-theme="light"] .about-content p {
    color: #65736b;
}


/* FEATURE CARDS */

html[data-theme="light"] .feature-card {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f7faf8
        );

    border-color: #e0e9e3;

    box-shadow:
        0 10px 30px rgba(20, 50, 35, 0.04);
}

html[data-theme="light"] .feature-card h3 {
    color: #17221c;
}

html[data-theme="light"] .feature-card p {
    color: #65736b;
}


/* STEPS */

html[data-theme="light"] .step-card {
    background: #ffffff;
    border-color: #e0e9e3;
}

html[data-theme="light"] .step-card h3 {
    color: #17221c;
}

html[data-theme="light"] .step-card p {
    color: #65736b;
}


/* CTA */

html[data-theme="light"] .cta-card {
    background:
        linear-gradient(
            120deg,
            #e8f7ee,
            #ffffff
        );

    border-color: rgba(18, 184, 90, 0.18);

    box-shadow:
        0 15px 45px rgba(20, 50, 35, 0.08);
}

html[data-theme="light"] .cta-card h2 {
    color: #101713;
}

html[data-theme="light"] .cta-card p {
    color: #65736b;
}


/* FOOTER */

html[data-theme="light"] .site-footer {
    background: #eaf1ed;
    border-top-color: #dce6df;
}

html[data-theme="light"] .footer-brand strong {
    color: #17221c;
}

html[data-theme="light"] .footer-brand span,
html[data-theme="light"] .footer-content > p {
    color: #718078;
}


/* NOTIFICATION POPUP */

html[data-theme="light"] .monexa-notification-popup {
    background: #ffffff;
    border-color: rgba(18, 184, 90, 0.18);

    box-shadow:
        0 18px 50px rgba(20, 50, 35, 0.16);
}

html[data-theme="light"] .monexa-notification-content strong {
    color: #17221c;
}

html[data-theme="light"] .monexa-notification-content span {
    color: #65736b;
}

html[data-theme="light"] .monexa-notification-close {
    color: #718078;
}