/* =========================================
   AMOS DATASUB
   GLOBAL STYLES
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');


:root {

    --navy: #09231a;

    --navy-soft: #123b2c;

    --green: #13a66a;

    --green-dark: #0b8755;

    --green-light: #e9f8f0;

    --mint: #f2fbf6;

    --white: #ffffff;

    --text: #17342a;

    --muted: #718078;

    --border: #dcebe3;

    --page: #f6faf8;

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: 'Manrope', sans-serif;

    background: var(--page);

    color: var(--text);

    line-height: 1.5;

    overflow-x: hidden;
}


a {
    text-decoration: none;
    color: inherit;
}


button {
    font-family: inherit;
}



/* =========================================
   NAVBAR
========================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(220, 235, 227, 0.8);
}


.navbar {

    width: min(1180px, calc(100% - 40px));

    height: 76px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}



/* LOGO */

.logo {

    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


.logo-mark {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: var(--green);

    color: white;

    font-size: 18px;

    font-weight: 800;

    box-shadow: 0 8px 20px rgba(19, 166, 106, 0.2);
}


.logo-text {

    color: var(--navy);

    font-size: 16px;

    font-weight: 700;

    letter-spacing: -0.4px;
}


.logo-text strong {

    color: var(--green);

    font-weight: 800;
}



/* NAV LINKS */

.nav-links {

    display: flex;

    align-items: center;

    gap: 36px;

    margin-left: 60px;
}


.nav-links a {

    position: relative;

    color: #52645b;

    font-size: 14px;

    font-weight: 600;

    transition: color 0.2s ease;
}


.nav-links a:hover {

    color: var(--green);
}


.nav-links a::after {

    content: '';

    position: absolute;

    left: 0;

    bottom: -7px;

    width: 0;

    height: 2px;

    border-radius: 2px;

    background: var(--green);

    transition: width 0.2s ease;
}


.nav-links a:hover::after {

    width: 100%;
}



/* NAV ACTIONS */

.nav-actions {

    display: flex;

    align-items: center;

    gap: 18px;
}


.login-btn {

    color: var(--navy);

    font-size: 14px;

    font-weight: 700;
}


.login-btn:hover {

    color: var(--green);
}


.signup-btn {

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 11px 19px;

    border-radius: 9px;

    background: var(--green);

    color: white;

    font-size: 13px;

    font-weight: 700;

    box-shadow: 0 8px 18px rgba(19, 166, 106, 0.18);

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.signup-btn:hover {

    background: var(--green-dark);

    transform: translateY(-1px);
}



/* MOBILE BUTTON */

.menu-toggle {

    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: var(--green-light);

    cursor: pointer;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;
}


.menu-toggle span {

    width: 20px;
    height: 2px;

    background: var(--navy);

    border-radius: 3px;

    transition: 0.2s ease;
}



/* MOBILE MENU */

.mobile-menu {

    display: none;
}



/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    min-height: 680px;

    padding: 105px 20px 70px;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 82% 20%,
            rgba(19, 166, 106, 0.12),
            transparent 28%
        ),

        radial-gradient(
            circle at 10% 70%,
            rgba(19, 166, 106, 0.06),
            transparent 28%
        ),

        var(--page);
}


.hero::before {

    content: '';

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    bottom: -180px;

    border-radius: 50%;

    background: rgba(19, 166, 106, 0.06);

    pointer-events: none;
}


.hero-container {

    position: relative;

    z-index: 2;

    width: min(1180px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 0.9fr;

    align-items: center;

    gap: 80px;
}



/* HERO CONTENT */

.hero-content {

    max-width: 620px;
}


.hero-badge {

    width: fit-content;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 8px 13px;

    margin-bottom: 24px;

    border: 1px solid #d4ebdf;

    border-radius: 50px;

    background: var(--green-light);

    color: var(--green-dark);

    font-size: 12px;

    font-weight: 700;
}


.badge-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green);

    box-shadow: 0 0 0 4px rgba(19, 166, 106, 0.1);
}



/* HERO TITLE */

.hero h1 {

    max-width: 650px;

    color: var(--navy);

    font-size: clamp(48px, 5.5vw, 76px);

    line-height: 1.02;

    letter-spacing: -3.5px;

    font-weight: 800;
}


.hero h1 span {

    display: block;

    color: var(--green);
}



/* DESCRIPTION */

.hero-description {

    max-width: 560px;

    margin-top: 25px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;

    font-weight: 500;
}



/* HERO BUTTONS */

.hero-actions {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 32px;
}


.hero-primary-btn,
.hero-secondary-btn {

    min-height: 50px;

    padding: 0 22px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    font-size: 13px;

    font-weight: 800;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.hero-primary-btn {

    gap: 18px;

    background: var(--green);

    color: white;

    box-shadow: 0 12px 25px rgba(19, 166, 106, 0.2);
}


.hero-primary-btn span {

    font-size: 18px;
}


.hero-primary-btn:hover {

    transform: translateY(-2px);

    box-shadow: 0 15px 30px rgba(19, 166, 106, 0.25);
}


.hero-secondary-btn {

    border: 1px solid var(--border);

    background: white;

    color: var(--navy);
}


.hero-secondary-btn:hover {

    transform: translateY(-2px);

    border-color: #b9daca;

    background: var(--green-light);
}



/* TRUST */

.hero-trust {

    display: flex;

    align-items: center;

    gap: 22px;

    margin-top: 28px;
}


.trust-item {

    display: flex;

    align-items: center;

    gap: 7px;

    color: #718078;

    font-size: 11px;

    font-weight: 600;
}


.trust-icon {

    width: 17px;
    height: 17px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--green-light);

    color: var(--green);

    font-size: 10px;

    font-weight: 800;
}



/* =========================================
   HERO DASHBOARD CARD
========================================= */

.hero-visual {

    position: relative;

    width: 100%;

    max-width: 480px;

    margin-left: auto;
}


.dashboard-card {

    padding: 28px;

    border: 1px solid rgba(220, 235, 227, 0.9);

    border-radius: 22px;

    background: rgba(255, 255, 255, 0.95);

    box-shadow:
        0 30px 70px rgba(9, 35, 26, 0.09),
        0 8px 25px rgba(9, 35, 26, 0.04);
}



/* CARD HEADER */

.card-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 24px;

    border-bottom: 1px solid #edf3ef;
}


.card-label {

    display: block;

    margin-bottom: 5px;

    color: #7b8a83;

    font-size: 11px;

    font-weight: 600;
}


.card-header h3 {

    color: var(--navy);

    font-size: 28px;

    letter-spacing: -1px;

    font-weight: 800;
}


.wallet-icon {

    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: var(--green-light);

    color: var(--green);

    font-size: 18px;

    font-weight: 800;
}



/* QUICK SERVICES */

.quick-title {

    margin: 24px 0 13px;

    color: var(--navy);

    font-size: 12px;

    font-weight: 800;
}


.quick-services {

    display: grid;

    gap: 10px;
}


.service-card {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px;

    border: 1px solid #edf2ef;

    border-radius: 13px;

    background: #fbfdfc;

    transition:
        border-color 0.2s ease,
        transform 0.2s ease;
}


.service-card:hover {

    border-color: #b9daca;

    transform: translateX(3px);
}


.service-icon {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    font-size: 17px;

    font-weight: 800;
}


.data-icon {

    background: #e9f8f0;

    color: var(--green);
}


.airtime-icon {

    background: #edf2ff;

    color: #4d68c8;
}


.service-card div:nth-child(2) {

    flex: 1;
}


.service-card strong {

    display: block;

    color: var(--navy);

    font-size: 12px;

    font-weight: 800;
}


.service-card span {

    display: block;

    margin-top: 2px;

    color: #87948d;

    font-size: 10px;
}


.service-card b {

    color: #9aa9a1;

    font-size: 16px;
}



/* RECENT TRANSACTION */

.recent-heading {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 25px;

    margin-bottom: 12px;

    color: var(--navy);

    font-size: 11px;

    font-weight: 800;
}


.recent-heading small {

    color: #9aa7a0;

    font-size: 10px;

    font-weight: 600;
}


.transaction {

    display: flex;

    align-items: center;

    gap: 10px;

    padding-top: 12px;

    border-top: 1px solid #edf3ef;
}


.transaction-icon {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--green-light);

    color: var(--green);

    font-size: 12px;

    font-weight: 800;
}


.transaction-info {

    flex: 1;
}


.transaction-info strong {

    display: block;

    color: var(--navy);

    font-size: 11px;

    font-weight: 800;
}


.transaction-info span {

    color: #89958f;

    font-size: 9px;
}


.transaction-price {

    color: var(--navy);

    font-size: 11px;
}



/* =========================================
   FLOATING SUCCESS CARD
========================================= */

.floating-card {

    position: absolute;

    right: -28px;

    bottom: 35px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 15px;

    border: 1px solid #dcebe3;

    border-radius: 13px;

    background: white;

    box-shadow: 0 15px 35px rgba(9, 35, 26, 0.12);
}


.floating-icon {

    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: var(--green);

    color: white;

    font-size: 12px;

    font-weight: 800;
}


.floating-card strong {

    display: block;

    color: var(--navy);

    font-size: 10px;

    font-weight: 800;
}


.floating-card span {

    display: block;

    margin-top: 2px;

    color: #87948d;

    font-size: 9px;
}



/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .nav-links {

        margin-left: 20px;

        gap: 22px;
    }


    .hero-container {

        grid-template-columns: 1fr;

        gap: 55px;
    }


    .hero-content {

        max-width: 700px;

        margin: auto;

        text-align: center;
    }


    .hero-badge {

        margin-left: auto;
        margin-right: auto;
    }


    .hero-description {

        margin-left: auto;
        margin-right: auto;
    }


    .hero-actions {

        justify-content: center;
    }


    .hero-trust {

        justify-content: center;
    }


    .hero-visual {

        margin: auto;
    }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .navbar {

        width: calc(100% - 28px);

        height: 68px;
    }


    .nav-links,
    .nav-actions {

        display: none;
    }


    .menu-toggle {

        display: flex;
    }


    /* MOBILE MENU */

    .mobile-menu {

        position: absolute;

        top: 68px;
        left: 0;

        width: 100%;

        padding: 20px;

        display: none;

        flex-direction: column;

        gap: 5px;

        background: white;

        border-bottom: 1px solid var(--border);

        box-shadow: 0 18px 30px rgba(9, 35, 26, 0.07);
    }


    .mobile-menu.active {

        display: flex;
    }


    .mobile-menu > a {

        padding: 14px 5px;

        color: var(--navy);

        font-size: 14px;

        font-weight: 700;

        border-bottom: 1px solid #edf3ef;
    }


    .mobile-menu-actions {

        display: grid;

        gap: 9px;

        margin-top: 12px;
    }


    .mobile-login,
    .mobile-signup {

        width: 100%;

        padding: 13px;

        text-align: center;

        border-radius: 9px;

        font-size: 13px;

        font-weight: 800;
    }


    .mobile-login {

        border: 1px solid var(--border);

        color: var(--navy);
    }


    .mobile-signup {

        background: var(--green);

        color: white;
    }


    /* HERO */

    .hero {
    min-height: auto;

    padding: 95px 18px 60px;
}


    .hero-container {

        gap: 45px;
    }


    .hero-content {

        text-align: left;
    }


    .hero-badge {

        margin-left: 0;
        margin-right: 0;
        font-size: 10px;
        justify-self: center;
    }


    .hero h1 {

        font-size: clamp(43px, 12vw, 60px);

        letter-spacing: -2.5px;
    }


    .hero-description {

        font-size: 14px;

        line-height: 1.75;

        margin-top: 20px;
    }


    .hero-actions {

        width: 100%;

        flex-direction: column;

        align-items: stretch;

        margin-top: 27px;
    }


    .hero-primary-btn,
    .hero-secondary-btn {

        width: 100%;
    }


    .hero-trust {

        justify-content: flex-start;

        flex-wrap: wrap;

        gap: 12px 18px;

        margin-top: 24px;
    }


    .trust-item {

        font-size: 10px;
    }


    .hero-visual {

        width: 100%;
    }


    .dashboard-card {

        padding: 20px;

        border-radius: 18px;
    }


    .card-header h3 {

        font-size: 24px;
    }


    .floating-card {

        right: 8px;

        bottom: -18px;

        padding: 10px 12px;
    }

}



/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 400px) {

    .logo-text {

        font-size: 14px;
    }


    .logo-mark {

        width: 34px;
        height: 34px;
    }


    .hero {

        padding-left: 15px;
        padding-right: 15px;
    }


    .hero h1 {

        font-size: 42px;

        letter-spacing: -2px;
    }


    .dashboard-card {

        padding: 17px;
    }


    .floating-card {

        display: none;
    }

}

/* =========================================
   POPULAR SERVICES
========================================= */

.services-section {
    padding: 100px 20px;
    background: #ffffff;
}

.services-container {
    width: min(1180px, 100%);
    margin: 0 auto;
}


/* SECTION HEADER */

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 45px;
}

.section-label {
    display: block;
    margin-bottom: 12px;

    color: #13a66a;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.section-heading h2 {
    max-width: 620px;

    color: #09231a;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -2px;
    font-weight: 800;
}

.section-heading h2 span {
    display: block;
    color: #13a66a;
}

.section-heading > p {
    max-width: 380px;

    margin-bottom: 4px;

    color: #718078;

    font-size: 14px;
    line-height: 1.8;
}


/* SERVICES GRID */

.services-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}


/* SERVICE CARD */

.service-box {
    position: relative;

    min-height: 390px;

    padding: 30px;

    display: flex;
    flex-direction: column;

    border: 1px solid #dcebe3;
    border-radius: 22px;

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.data-service {
    background: #f1faf5;
}

.airtime-service {
    background: #f4f7ff;
    border-color: #e0e6f5;
}

.service-box:hover {
    transform: translateY(-5px);

    box-shadow: 0 20px 45px rgba(9, 35, 26, 0.09);
}


/* CARD TOP */

.service-box-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.large-service-icon {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #ffffff;

    color: #13a66a;

    font-size: 24px;
    font-weight: 800;

    box-shadow: 0 8px 20px rgba(9, 35, 26, 0.06);
}

.airtime-service .large-service-icon {
    color: #4d68c8;
}


/* TAG */

.service-tag {
    padding: 7px 10px;

    border-radius: 30px;

    background: #dff4e9;

    color: #0b8755;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.7px;
}

.airtime-tag {
    background: #e8edff;
    color: #4d68c8;
}


/* CARD CONTENT */

.service-box-content {
    margin-top: 55px;
}

.service-box-content h3 {
    color: #09231a;

    font-size: 28px;
    letter-spacing: -1px;
    font-weight: 800;
}

.service-box-content p {
    max-width: 420px;

    margin-top: 12px;

    color: #718078;

    font-size: 14px;
    line-height: 1.8;
}


/* NETWORKS */

.service-networks {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;

    margin-top: 24px;
}

.service-networks span {
    padding: 6px 9px;

    border: 1px solid rgba(220, 235, 227, 0.9);
    border-radius: 6px;

    background: rgba(255, 255, 255, 0.8);

    color: #52645b;

    font-size: 9px;
    font-weight: 700;
}


/* SERVICE LINK */

.service-link {
    margin-top: auto;
    padding-top: 28px;

    display: flex;
    align-items: center;
    gap: 10px;

    color: #0b8755;

    font-size: 12px;
    font-weight: 800;
}

.service-link span {
    font-size: 17px;

    transition: transform 0.2s ease;
}

.service-link:hover span {
    transform: translateX(4px);
}


/* =========================================
   SERVICES RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .services-section {
        padding: 75px 18px;
    }

    .section-heading {
        display: block;

        margin-bottom: 32px;
    }

    .section-heading h2 {
        font-size: 34px;
        letter-spacing: -1.5px;
    }

    .section-heading > p {
        margin-top: 17px;

        font-size: 13px;
        line-height: 1.7;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-box {
        min-height: 350px;

        padding: 23px;

        border-radius: 18px;
    }

    .service-box-content {
        margin-top: 42px;
    }

    .service-box-content h3 {
        font-size: 25px;
    }

    .service-box-content p {
        font-size: 13px;
    }

}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 400px) {

    .services-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .section-heading h2 {
        font-size: 31px;
    }

    .service-box {
        min-height: 330px;
        padding: 20px;
    }

}

/* =========================================
   SERVICES HEADER
========================================= */

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 70px;

    margin-bottom: 42px;
}

.section-heading-main {
    max-width: 650px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 14px;

    color: #13a66a;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.section-label::before {
    content: '';

    width: 22px;
    height: 2px;

    border-radius: 2px;

    background: #13a66a;
}

.section-heading h2 {
    margin: 0;

    color: #09231a;

    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -2px;
    font-weight: 800;
}

.section-heading h2 span {
    display: block;

    color: #13a66a;
}

.section-heading-side {
    max-width: 350px;

    padding-bottom: 3px;
}

.section-heading-side p {
    margin: 0;

    color: #718078;

    font-size: 13px;
    line-height: 1.8;
}

.services-view-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 17px;

    color: #09231a;

    font-size: 11px;
    font-weight: 800;
}

.services-view-link span {
    color: #13a66a;

    font-size: 16px;

    transition: transform 0.2s ease;
}

.services-view-link:hover span {
    transform: translateX(4px);
}


/* =========================================
   SERVICES HEADER — MOBILE
========================================= */

@media (max-width: 768px) {

    .section-heading {
        display: block;

        margin-bottom: 30px;
    }

    .section-heading h2 {
        font-size: 34px;
        letter-spacing: -1.5px;
    }

    .section-heading-side {
        max-width: 100%;

        margin-top: 17px;
    }

    .section-heading-side p {
        font-size: 13px;
    }

    .services-view-link {
        margin-top: 14px;
    }

}

/* =========================================
   WHY AMOS DATASUB
========================================= */

.why-section {
    padding: 110px 20px;

    background: #09231a;

    color: #ffffff;
}

.why-container {
    width: min(1180px, 100%);
    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;

    align-items: center;
}


/* =========================================
   WHY CONTENT
========================================= */

.why-content {
    max-width: 500px;
}

.why-content .section-label {
    margin-bottom: 18px;

    color: #55d89b;
}

.why-content .section-label::before {
    background: #55d89b;
}

.why-content h2 {
    color: #ffffff;

    font-size: clamp(38px, 4vw, 54px);

    line-height: 1.06;

    letter-spacing: -2.3px;

    font-weight: 800;
}

.why-content h2 span {
    display: block;

    color: #55d89b;
}

.why-content > p {
    max-width: 460px;

    margin-top: 22px;

    color: #a8bdb3;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   WHY LINK
========================================= */

.why-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 30px;

    padding: 13px 18px;

    border-radius: 8px;

    background: #13a66a;

    color: #ffffff;

    font-size: 12px;

    font-weight: 800;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.why-link span {
    font-size: 16px;

    transition: transform 0.2s ease;
}

.why-link:hover {
    background: #0b8755;

    transform: translateY(-2px);
}

.why-link:hover span {
    transform: translateX(4px);
}


/* =========================================
   WHY FEATURES
========================================= */

.why-features {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    border-left: 1px solid rgba(255, 255, 255, 0.12);
}


/* FEATURE */

.why-feature {
    min-height: 190px;

    padding: 28px;

    display: flex;

    flex-direction: column;

    gap: 24px;

    border-right: 1px solid rgba(255, 255, 255, 0.12);

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    transition:
        background 0.2s ease;
}

.why-feature:hover {
    background: rgba(255, 255, 255, 0.035);
}


/* NUMBER */

.why-feature-number {
    color: #55d89b;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* FEATURE TITLE */

.why-feature h3 {
    color: #ffffff;

    font-size: 15px;

    font-weight: 800;
}


/* FEATURE DESCRIPTION */

.why-feature p {
    margin-top: 8px;

    color: #91aaa0;

    font-size: 11px;

    line-height: 1.75;
}


/* =========================================
   WHY MOBILE
========================================= */

@media (max-width: 900px) {

    .why-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .why-content {
        max-width: 650px;
    }

}


/* =========================================
   SMALL TABLETS / MOBILE
========================================= */

@media (max-width: 600px) {

    .why-section {
        padding: 80px 18px;
    }

    .why-content h2 {
        font-size: 36px;

        letter-spacing: -1.6px;
    }

    .why-content > p {
        font-size: 13px;
    }

    .why-features {
        grid-template-columns: 1fr;
    }

    .why-feature {
        min-height: auto;

        padding: 23px;

        gap: 18px;
    }

}
/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: #061a13;
    color: #ffffff;
}


/* =========================================
   FOOTER MAIN
========================================= */

.footer-container {
    width: min(1180px, 100%);

    margin: 0 auto;

    padding: 70px 20px;

    display: grid;

    grid-template-columns: 1.4fr 1fr;

    gap: 100px;
}


/* =========================================
   FOOTER BRAND
========================================= */

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: -0.3px;
}

.footer-logo strong {
    color: #55d89b;

    font-weight: 800;
}

.footer-logo-mark {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #13a66a;

    color: #ffffff;

    font-size: 17px;

    font-weight: 800;
}

.footer-brand > p {
    max-width: 330px;

    margin-top: 18px;

    color: #829a90;

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================
   FOOTER LINKS
========================================= */

.footer-links {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.footer-column h4 {
    margin-bottom: 6px;

    color: #ffffff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.4px;
}

.footer-column a {
    width: fit-content;

    color: #829a90;

    font-size: 11px;

    font-weight: 600;

    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #55d89b;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-container {
    width: min(1180px, 100%);

    margin: 0 auto;

    padding: 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    color: #60786e;

    font-size: 10px;

    font-weight: 500;
}


/* =========================================
   FOOTER TABLET
========================================= */

@media (max-width: 800px) {

    .footer-container {
        grid-template-columns: 1fr;

        gap: 50px;

        padding: 60px 20px;
    }

    .footer-brand {
        max-width: 500px;
    }

}


/* =========================================
   FOOTER MOBILE
========================================= */

@media (max-width: 600px) {

    .site-footer {
        margin-top: 0;
    }

    .footer-container {
        padding: 55px 18px;

        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);

        gap: 35px 20px;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
    }

    .footer-bottom-container {
        padding: 18px;

        flex-direction: column;

        align-items: flex-start;

        gap: 7px;
    }

    .footer-bottom p {
        font-size: 9px;
    }

}


/* =========================================
   FOOTER SMALL PHONE
========================================= */

@media (max-width: 380px) {

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

}

/* =========================================
   AUTHENTICATION
========================================= */

.auth-section {
    min-height: calc(100vh - 76px);

    padding: 70px 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f5faf7;
}

.auth-container {
    width: min(460px, 100%);

    padding: 42px;

    border: 1px solid #dcebe3;
    border-radius: 22px;

    background: #ffffff;

    box-shadow: 0 20px 55px rgba(9, 35, 26, 0.07);
}


/* HEADER */

.auth-header {
    text-align: center;

    margin-bottom: 32px;
}

.auth-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 14px;

    color: #13a66a;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.auth-label::before {
    content: "";

    width: 18px;
    height: 2px;

    border-radius: 2px;

    background: #13a66a;
}

.auth-header h1 {
    color: #09231a;

    font-size: 32px;
    line-height: 1.1;

    letter-spacing: -1.4px;

    font-weight: 800;
}

.auth-header h1 span {
    display: block;

    color: #13a66a;
}

.auth-header p {
    margin-top: 14px;

    color: #718078;

    font-size: 12px;
    line-height: 1.7;
}


/* FORM */

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #263d34;

    font-size: 11px;
    font-weight: 800;
}

.form-group input {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #d7e5de;
    border-radius: 9px;

    outline: none;

    background: #fbfdfc;

    color: #09231a;

    font-family: inherit;
    font-size: 13px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group input:focus {
    border-color: #13a66a;

    box-shadow: 0 0 0 3px rgba(19, 166, 106, 0.09);

    background: #ffffff;
}


/* ERRORS */

.form-errors {
    padding: 12px 14px;

    border: 1px solid #f0caca;
    border-radius: 8px;

    background: #fff5f5;

    color: #b33a3a;

    font-size: 11px;
    line-height: 1.6;
}


/* BUTTON */

.auth-button {
    width: 100%;

    margin-top: 5px;

    padding: 14px 18px;

    border: none;
    border-radius: 9px;

    background: #13a66a;

    color: #ffffff;

    font-family: inherit;

    font-size: 12px;
    font-weight: 800;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.auth-button:hover {
    background: #0b8755;

    transform: translateY(-1px);
}


/* FOOTER */

.auth-footer {
    margin-top: 25px;

    padding-top: 22px;

    border-top: 1px solid #edf2ef;

    text-align: center;
}

.auth-footer p {
    color: #718078;

    font-size: 11px;
}

.auth-footer a {
    color: #13a66a;

    font-weight: 800;
}


/* =========================================
   AUTH MOBILE
========================================= */

@media (max-width: 600px) {

    .auth-section {
        min-height: calc(100vh - 70px);

        padding: 40px 16px;
    }

    .auth-container {
        padding: 30px 22px;

        border-radius: 18px;
    }

    .auth-header h1 {
        font-size: 28px;
    }

    .auth-header p {
        font-size: 11px;
    }

}

/* =========================================
   DASHBOARD
========================================= */

.dashboard-section {
    min-height: calc(100vh - 76px);

    padding: 60px 20px 80px;

    background: #f5faf7;
}

.dashboard-container {
    width: min(1100px, 100%);

    margin: 0 auto;
}


/* =========================================
   DASHBOARD HEADER
========================================= */

.dashboard-header {
    margin-bottom: 35px;
}

.dashboard-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #13a66a;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.dashboard-header h1 {
    color: #09231a;

    font-size: clamp(28px, 4vw, 40px);

    line-height: 1.1;

    letter-spacing: -1.5px;

    font-weight: 800;
}

.dashboard-header h1 span {
    color: #13a66a;
}

.dashboard-header p {
    max-width: 550px;

    margin-top: 12px;

    color: #718078;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================
   WALLET
========================================= */

.dashboard-wallet {
    min-height: 190px;

    padding: 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    border-radius: 20px;

    background: #09231a;

    box-shadow: 0 18px 45px rgba(9, 35, 26, 0.12);
}

.wallet-info span {
    color: #8ca99c;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.2px;
}

.wallet-info h2 {
    margin-top: 10px;

    color: #ffffff;

    font-size: 38px;

    font-weight: 800;

    letter-spacing: -1.5px;
}

.wallet-button {
    padding: 12px 18px;

    border-radius: 8px;

    background: #55d89b;

    color: #09231a;

    font-size: 11px;

    font-weight: 800;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.wallet-button:hover {
    background: #ffffff;

    transform: translateY(-1px);
}


/* =========================================
   DASHBOARD BLOCK
========================================= */

.dashboard-block {
    margin-top: 45px;
}

.dashboard-block-heading {
    margin-bottom: 20px;
}

.dashboard-block-heading h2 {
    color: #09231a;

    font-size: 19px;

    font-weight: 800;

    letter-spacing: -0.5px;
}

.dashboard-block-heading p {
    margin-top: 5px;

    color: #718078;

    font-size: 11px;
}


/* =========================================
   QUICK ACTIONS
========================================= */

.quick-actions {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.dashboard-action {
    min-height: 115px;

    padding: 22px;

    display: flex;

    align-items: center;

    gap: 16px;

    border: 1px solid #dcebe3;

    border-radius: 15px;

    background: #ffffff;

    transition:
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.dashboard-action:hover {
    border-color: #b9dfcd;

    transform: translateY(-2px);

    box-shadow: 0 12px 30px rgba(9, 35, 26, 0.06);
}

.action-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #e8f8f0;

    color: #13a66a;

    font-size: 18px;

    font-weight: 800;
}

.airtime-action-icon {
    background: #eef5ff;

    color: #3878d8;
}

.dashboard-action h3 {
    color: #09231a;

    font-size: 13px;

    font-weight: 800;
}

.dashboard-action p {
    margin-top: 4px;

    color: #718078;

    font-size: 10px;

    line-height: 1.5;
}

.action-arrow {
    margin-left: auto;

    color: #13a66a;

    font-size: 17px;

    font-weight: 700;
}


/* =========================================
   TRANSACTIONS
========================================= */

.transaction-list {
    display: flex;

    flex-direction: column;

    border: 1px solid #dcebe3;

    border-radius: 15px;

    background: #ffffff;

    overflow: hidden;
}

.transaction-item {
    min-height: 78px;

    padding: 16px 20px;

    display: flex;

    align-items: center;

    gap: 14px;

    border-bottom: 1px solid #edf4f0;

    transition:
        background 0.2s ease;
}

.transaction-item:last-child {
    border-bottom: none;
}

.transaction-item:hover {
    background: #f9fcfa;
}


/* TRANSACTION ICON */

.transaction-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #e8f8f0;

    color: #13a66a;

    font-size: 16px;

    font-weight: 800;
}


/* TRANSACTION INFO */

.transaction-info {
    min-width: 0;

    display: flex;

    flex-direction: column;
}

.transaction-info h3 {
    color: #09231a;

    font-size: 12px;

    font-weight: 800;
}

.transaction-info p {
    margin-top: 4px;

    color: #8a9891;

    font-size: 9px;
}


/* TRANSACTION DETAILS */

.transaction-details {
    margin-left: auto;

    display: flex;

    align-items: flex-end;

    flex-direction: column;

    gap: 5px;
}

.transaction-details strong {
    color: #09231a;

    font-size: 12px;

    font-weight: 800;
}


/* STATUS */

.transaction-status {
    padding: 4px 7px;

    border-radius: 5px;

    font-size: 8px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.4px;
}

.status-successful {
    background: #e8f8f0;

    color: #13a66a;
}

.status-pending {
    background: #fff7df;

    color: #b47b00;
}

.status-failed {
    background: #fff0f0;

    color: #d64545;
}


/* =========================================
   EMPTY TRANSACTIONS
========================================= */

.empty-transactions {
    padding: 50px 20px;

    border: 1px solid #dcebe3;

    border-radius: 15px;

    background: #ffffff;

    text-align: center;
}

.empty-icon {
    width: 42px;
    height: 42px;

    margin: 0 auto 14px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e8f8f0;

    color: #13a66a;

    font-size: 18px;

    font-weight: 800;
}

.empty-transactions h3 {
    color: #09231a;

    font-size: 13px;

    font-weight: 800;
}

.empty-transactions p {
    margin-top: 6px;

    color: #718078;

    font-size: 10px;
}

/* =========================================
   DASHBOARD MOBILE
========================================= */

@media (max-width: 700px) {

    .dashboard-section {
        padding: 45px 16px 65px;
    }

    .dashboard-header {
        margin-bottom: 28px;
    }

    .dashboard-wallet {
        min-height: 175px;

        padding: 25px;

        align-items: flex-start;

        flex-direction: column;
    }

    .wallet-info h2 {
        font-size: 34px;
    }

    .wallet-button {
        width: 100%;

        text-align: center;
    }

    .quick-actions {
        grid-template-columns: 1fr;
    }

    .dashboard-action {
        min-height: 100px;
    }

        .transaction-item {
        padding: 15px;
    }

    .transaction-icon {
        width: 35px;
        height: 35px;
    }

    .transaction-info h3 {
        font-size: 11px;
    }

    .transaction-info p {
        font-size: 8px;
    }

    .transaction-details strong {
        font-size: 11px;
    }

    .transaction-status {
        font-size: 7px;
    }

}


/* =========================================
   SMALL PHONE
========================================= */

@media (max-width: 400px) {

    .dashboard-section {
        padding-left: 13px;
        padding-right: 13px;
    }

    .dashboard-wallet {
        padding: 22px;
    }

    .dashboard-header h1 {
        font-size: 28px;
    }

}

/* =========================================
   FUND WALLET
========================================= */

.fund-wallet-section {
    min-height: calc(100vh - 76px);

    padding: 60px 20px 80px;

    background: #f5faf7;
}

.fund-wallet-container {
    width: min(620px, 100%);

    margin: 0 auto;
}


/* HEADER */

.fund-wallet-header {
    margin-bottom: 30px;
}

.fund-wallet-header h1 {
    color: #09231a;

    font-size: clamp(30px, 5vw, 42px);

    line-height: 1.08;

    letter-spacing: -1.7px;

    font-weight: 800;
}

.fund-wallet-header h1 span {
    color: #13a66a;
}

.fund-wallet-header p {
    max-width: 500px;

    margin-top: 12px;

    color: #718078;

    font-size: 12px;

    line-height: 1.7;
}


/* CURRENT BALANCE */

.current-balance {
    padding: 25px 28px;

    margin-bottom: 18px;

    border-radius: 16px;

    background: #09231a;

    box-shadow: 0 15px 35px rgba(9, 35, 26, 0.1);
}

.current-balance span {
    color: #8ca99c;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.3px;
}

.current-balance h2 {
    margin-top: 8px;

    color: #ffffff;

    font-size: 32px;

    font-weight: 800;

    letter-spacing: -1px;
}


/* FUND CARD */

.fund-wallet-card {
    padding: 30px;

    border: 1px solid #dcebe3;

    border-radius: 16px;

    background: #ffffff;

    box-shadow: 0 12px 30px rgba(9, 35, 26, 0.04);
}

.fund-card-header {
    margin-bottom: 25px;
}

.fund-card-header h2 {
    color: #09231a;

    font-size: 18px;

    font-weight: 800;
}

.fund-card-header p {
    margin-top: 5px;

    color: #718078;

    font-size: 11px;
}


/* AMOUNT INPUT */

.amount-input {
    display: flex;

    align-items: center;

    border: 1px solid #d7e5de;

    border-radius: 9px;

    background: #fbfdfc;

    overflow: hidden;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.amount-input:focus-within {
    border-color: #13a66a;

    box-shadow: 0 0 0 3px rgba(19, 166, 106, 0.09);

    background: #ffffff;
}

.amount-input span {
    padding-left: 14px;

    color: #13a66a;

    font-size: 15px;

    font-weight: 800;
}

.amount-input input {
    width: 100%;

    padding: 14px 12px;

    border: none;

    outline: none;

    background: transparent;

    color: #09231a;

    font-family: inherit;

    font-size: 14px;
}

.amount-input input::placeholder {
    color: #aab8b2;
}

.amount-input input::-webkit-outer-spin-button,
.amount-input input::-webkit-inner-spin-button {
    margin: 0;
}


/* HELPER TEXT */

.fund-wallet-form small {
    display: block;

    margin-top: 8px;

    color: #87958f;

    font-size: 10px;
}


/* BUTTON */

.fund-button {
    width: 100%;

    margin-top: 22px;

    padding: 14px 18px;

    border: none;

    border-radius: 9px;

    background: #13a66a;

    color: #ffffff;

    font-family: inherit;

    font-size: 12px;

    font-weight: 800;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.fund-button:hover {
    background: #0b8755;

    transform: translateY(-1px);
}


/* SECURITY NOTE */

.fund-wallet-note {
    margin-top: 18px;

    padding: 18px 20px;

    border: 1px solid #dcebe3;

    border-radius: 12px;

    background: #eef9f4;
}

.fund-wallet-note strong {
    display: block;

    color: #09231a;

    font-size: 11px;

    font-weight: 800;
}

.fund-wallet-note p {
    margin-top: 5px;

    color: #718078;

    font-size: 10px;

    line-height: 1.6;
}


/* MOBILE */

@media (max-width: 600px) {

    .fund-wallet-section {
        padding: 45px 16px 65px;
    }

    .fund-wallet-header h1 {
        font-size: 31px;
    }

    .fund-wallet-card {
        padding: 23px 20px;
    }

    .current-balance {
        padding: 23px;
    }

    .current-balance h2 {
        font-size: 29px;
    }

}

