/* =====================================================
   TRIVEEXA NAVBAR
===================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;
    z-index: 9999;

    background: rgba(7, 17, 31, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.nav-container {
    width: 92%;
    max-width: 1450px;
    height: 100%;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =====================================================
   LOGO
===================================================== */

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
    min-width: 150px;
}

.logo span {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
}

.logo small {
    margin-top: 5px;
    font-size: 8px;
    letter-spacing: 4px;
    color: #58d6c5;
}


/* =====================================================
   NAV MENU
===================================================== */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
}


.nav-link,
.dropdown-toggle {
    position: relative;

    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;

    font-size: 13px;
    font-weight: 500;

    padding: 12px 15px;

    transition: 0.3s ease;
}


.nav-link:hover,
.dropdown-toggle:hover {
    color: #ffffff;
}


/* ACTIVE */

.nav-link.active {
    color: #ffffff;
}

.nav-link.active::after {
    content: "";

    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 3px;

    height: 2px;

    background: #58d6c5;
}


/* =====================================================
   DROPDOWN
===================================================== */

.nav-dropdown {
    position: relative;
    height: 100%;

    display: flex;
    align-items: center;
}


.dropdown-toggle {
    background: transparent;
    border: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    gap: 8px;

    font-family: inherit;
}


.dropdown-toggle i {
    font-size: 9px;
    transition: transform 0.3s ease;
}


/* ROTATE ARROW */

.nav-dropdown:hover .dropdown-toggle i,
.nav-dropdown.open .dropdown-toggle i {
    transform: rotate(180deg);
}


/* =====================================================
   DROPDOWN MENU
===================================================== */

.dropdown-menu {
    position: absolute;

    top: 72px;
    left: 50%;

    transform: translateX(-50%) translateY(10px);

    width: 350px;

    padding: 10px;

    background: rgba(7, 17, 31, 0.98);

    border: 1px solid rgba(255, 255, 255, 0.10);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.45);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}


/* DESKTOP HOVER */

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateX(-50%) translateY(0);
}


/* =====================================================
   DROPDOWN ITEMS
===================================================== */

.dropdown-menu a {
    display: flex;
    align-items: center;

    gap: 13px;

    padding: 13px 12px;

    text-decoration: none;

    border-radius: 7px;

    transition: 0.25s ease;
}


.dropdown-menu a:hover {
    background: rgba(88, 214, 197, 0.09);

    transform: translateX(3px);
}


/* ICON */

.menu-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(88, 214, 197, 0.25);

    color: #58d6c5;

    background: rgba(88, 214, 197, 0.05);

    border-radius: 6px;
}


.menu-icon i {
    font-size: 14px;
}


/* TEXT */

.dropdown-menu strong {
    display: block;

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;

    margin-bottom: 3px;
}


.dropdown-menu small {
    display: block;

    color: rgba(255, 255, 255, 0.45);

    font-size: 10px;
}


/* =====================================================
   EMI MENU
===================================================== */

.emi-menu {
    width: 350px;
}


/* =====================================================
   APPLY BUTTON
===================================================== */

.nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 11px 19px;

    background: #58d6c5;

    color: #07111f;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition: 0.3s ease;
}


.nav-btn:hover {
    background: #ffffff;

    transform: translateY(-2px);
}


.nav-btn i {
    font-size: 10px;
}


/* MOBILE APPLY */

.mobile-apply {
    display: none !important;
}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 9px;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.20);

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;
}


.menu-toggle span {
    display: block;

    width: 21px;
    height: 2px;

    background: #ffffff;

    transition: 0.3s ease;
}


/* X ANIMATION */

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .nav-container {
        width: 94%;
    }

    .nav-menu {
        gap: 2px;
    }

    .nav-link,
    .dropdown-toggle {
        padding: 10px 9px;
        font-size: 12px;
    }

    .nav-btn {
        padding: 10px 14px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 850px) {

    .navbar {
        height: 72px;
    }


    .nav-container {
        width: 92%;
    }


    /* HIDE DESKTOP APPLY */

    .nav-btn {
        display: none;
    }


    /* SHOW MENU BUTTON */

    .menu-toggle {
        display: flex;
    }


    /* MOBILE NAV */

    .nav-menu {

        position: absolute;

        top: 82px;
        left: 4%;
        right: 4%;

        height: auto;

        padding: 12px;

        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 0;

        background: rgba(7, 17, 31, 0.98);

        border: 1px solid rgba(255, 255, 255, 0.10);

        box-shadow:
            0 25px 60px rgba(0, 0, 0, 0.45);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-15px);

        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;
    }


    .nav-menu.show {

        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }


    /* LINKS */

    .nav-link {

        display: block;

        padding: 15px 12px;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.07);
    }


    .nav-link.active::after {
        display: none;
    }


    /* =================================================
       MOBILE DROPDOWN
    ================================================= */

    .nav-dropdown {

        display: block;

        height: auto;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.07);
    }


    .dropdown-toggle {

        width: 100%;

        padding: 15px 12px;

        justify-content: space-between;

        color: rgba(255, 255, 255, 0.75);
    }


    .dropdown-menu {

        position: static;

        width: 100%;

        padding: 0;

        transform: none !important;

        background: rgba(255, 255, 255, 0.025);

        border: none;

        box-shadow: none;

        display: none;

        opacity: 1;

        visibility: visible;
    }


    .nav-dropdown.open .dropdown-menu {

        display: block;
    }


    .dropdown-menu a {

        padding: 11px 10px;

        border-top:
            1px solid rgba(255, 255, 255, 0.05);
    }


    .dropdown-menu a:hover {

        transform: none;

        background: rgba(88, 214, 197, 0.07);
    }


    .menu-icon {

        width: 34px;
        height: 34px;
    }


    .dropdown-menu strong {

        font-size: 11px;
    }


    .dropdown-menu small {

        font-size: 9px;
    }


    /* =================================================
       MOBILE APPLY
    ================================================= */

    .mobile-apply {

        display: flex !important;

        justify-content: center;
        align-items: center;

        margin-top: 12px;

        padding: 13px !important;

        background: #58d6c5;

        color: #07111f !important;

        font-weight: 700;

        border: none !important;

        text-align: center;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 500px) {

    .logo span {
        font-size: 19px;
    }

    .logo small {
        font-size: 7px;
        letter-spacing: 3px;
    }


    .nav-menu {

        top: 68px;

        left: 3%;
        right: 3%;

        max-height: calc(100vh - 85px);

        overflow-y: auto;
    }


    .menu-toggle {

        width: 40px;
        height: 40px;
    }


    .dropdown-menu a {

        padding: 10px 7px;
    }
}



/* =========================================================
   TRIVEEXA FINCORP
   BUSINESS LOAN PAGE
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --navy: #06111f;
    --navy2: #091a2b;
    --navy3: #10263a;

    --gold: #c8a96b;
    --gold-light: #e4ca91;

    --white: #ffffff;
    --cream: #f6f4ee;

    --dark: #253547;

    --gray: #738294;

    --border: rgba(255, 255, 255, .1);

    --ease: cubic-bezier(.22, 1, .36, 1);

}


/* =========================================================
   RESET
========================================================= */

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


html {
    scroll-behavior: smooth;
}


body {

    font-family: Arial, Helvetica, sans-serif;

    background: var(--navy);

    color: var(--white);

    overflow-x: hidden;

}


a {
    text-decoration: none;
    color: inherit;
}


button {
    font-family: inherit;
}


img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 78px;

    z-index: 9999;

    background: rgba(6, 17, 31, .88);

    border-bottom: 1px solid rgba(255, 255, 255, .07);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

}


.nav-container {

    max-width: 1400px;

    height: 100%;

    margin: auto;

    padding: 0 45px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* LOGO */

.logo {

    display: flex;

    flex-direction: column;

    line-height: 1;

    min-width: 125px;

}


.logo span {

    font-size: 22px;

    font-weight: 800;

    letter-spacing: 2px;

    color: var(--white);

}


.logo small {

    font-size: 8px;

    letter-spacing: 4px;

    color: var(--gold);

    margin-top: 5px;

}


/* NAV MENU */

.nav-menu {

    display: flex;

    align-items: center;

    gap: 7px;

}


.nav-link,
.dropdown-toggle {

    font-size: 13px;

    color: rgba(255, 255, 255, .72);

    padding: 12px 15px;

    transition: .3s ease;

}


.nav-link:hover,
.dropdown-toggle:hover {

    color: var(--gold-light);

}


/* DROPDOWN */

.nav-dropdown {

    position: relative;

}


.dropdown-toggle {

    background: transparent;

    border: none;

    cursor: pointer;

    display: flex;

    align-items: center;

    gap: 8px;

}


.dropdown-toggle i {

    font-size: 9px;

    transition: .3s ease;

}


.nav-dropdown:hover .dropdown-toggle i {

    transform: rotate(180deg);

}


.dropdown-menu {

    position: absolute;

    top: calc(100% + 12px);

    left: 0;

    min-width: 240px;

    padding: 10px;

    background: rgba(9, 26, 43, .98);

    border: 1px solid rgba(255, 255, 255, .1);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .4);

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition: .3s var(--ease);

}


.nav-dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


.dropdown-menu a {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px 13px;

    font-size: 12px;

    color: rgba(255, 255, 255, .68);

    transition: .3s ease;

}


.dropdown-menu a i {

    width: 18px;

    color: var(--gold);

}


.dropdown-menu a:hover {

    background: rgba(200, 169, 107, .08);

    color: var(--gold-light);

    padding-left: 18px;

}


/* APPLY BUTTON */

.nav-btn {

    padding: 12px 19px;

    background: var(--gold);

    color: var(--navy);

    font-size: 12px;

    font-weight: 700;

    display: flex;

    align-items: center;

    gap: 10px;

    transition: .3s ease;

}


.nav-btn:hover {

    background: var(--gold-light);

    transform: translateY(-2px);

}


.mobile-apply {

    display: none !important;

}


/* MOBILE TOGGLE */

.menu-toggle {

    display: none;

    width: 42px;

    height: 42px;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, .25);

    cursor: pointer;

    padding: 9px;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 5px;

}


.menu-toggle span {

    width: 21px;

    height: 2px;

    background: white;

    display: block;

    transition: .35s ease;

}


.menu-toggle.active span:nth-child(1) {

    transform: translateY(7px) rotate(45deg);

}


.menu-toggle.active span:nth-child(2) {

    opacity: 0;

}


.menu-toggle.active span:nth-child(3) {

    transform: translateY(-7px) rotate(-45deg);

}



/* =========================================================
   HERO
========================================================= */

.business-hero {

    min-height: 100vh;

    padding: 150px 7% 90px;

    display: flex;

    align-items: center;

    background:

        radial-gradient(circle at 80% 45%,
            rgba(200, 169, 107, .12),
            transparent 28%),

        linear-gradient(135deg,
            var(--navy),
            var(--navy2));

    position: relative;

    overflow: hidden;

}


.business-hero::before {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    border: 1px solid rgba(200, 169, 107, .07);

    border-radius: 50%;

    right: -300px;

    top: 20%;

}


.hero-grid {

    width: 100%;

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;

}


/* HERO TEXT */

.hero-content {

    position: relative;

    z-index: 2;

}


.hero-label {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 25px;

}


.label-line {

    width: 42px;

    height: 1px;

    background: var(--gold);

}


.hero-content h1 {

    font-size: clamp(48px, 6vw, 82px);

    line-height: .98;

    letter-spacing: -3px;

    font-weight: 700;

    max-width: 720px;

}


.hero-content h1 span {

    display: block;

    color: var(--gold-light);

}


.hero-content>p {

    max-width: 600px;

    margin-top: 30px;

    font-size: 16px;

    line-height: 1.8;

    color: rgba(255, 255, 255, .58);

}


.hero-buttons {

    display: flex;

    gap: 15px;

    margin-top: 38px;

}


.business-primary,
.business-secondary {

    padding: 16px 23px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    font-size: 12px;

    font-weight: 700;

    transition: .35s var(--ease);

}


.business-primary {

    background: var(--gold);

    color: var(--navy);

}


.business-primary:hover {

    background: var(--gold-light);

    transform: translateY(-3px);

}


.business-secondary {

    border: 1px solid rgba(255, 255, 255, .2);

    color: var(--white);

}


.business-secondary:hover {

    border-color: var(--gold);

    color: var(--gold-light);

}


.hero-note {

    margin-top: 30px;

    display: flex;

    align-items: flex-start;

    gap: 10px;

    max-width: 500px;

    color: rgba(255, 255, 255, .36);

    font-size: 11px;

    line-height: 1.6;

}


.hero-note i {

    color: var(--gold);

    margin-top: 2px;

}


/* =========================================================
   HERO VISUAL
========================================================= */

.business-visual {

    min-height: 560px;

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

}


.visual-grid {

    position: absolute;

    inset: 20px;

    background-image:

        linear-gradient(rgba(200, 169, 107, .055) 1px,
            transparent 1px),

        linear-gradient(90deg,
            rgba(200, 169, 107, .055) 1px,
            transparent 1px);

    background-size: 45px 45px;

    mask-image: linear-gradient(to bottom,
            transparent,
            black 20%,
            black 80%,
            transparent);

}


.visual-circle {

    position: absolute;

    border: 1px solid rgba(200, 169, 107, .16);

    border-radius: 50%;

}


.circle-one {

    width: 500px;

    height: 500px;

}


.circle-two {

    width: 390px;

    height: 390px;

}


.circle-three {

    width: 280px;

    height: 280px;

}


/* BUILDING */

.business-building {

    position: relative;

    width: 280px;

    height: 370px;

    padding: 22px;

    background:

        linear-gradient(180deg,
            rgba(200, 169, 107, .09),
            rgba(255, 255, 255, .015));

    border: 1px solid rgba(200, 169, 107, .28);

    box-shadow:

        0 40px 100px rgba(0, 0, 0, .35),

        inset 0 0 50px rgba(200, 169, 107, .025);

    z-index: 2;

}


.building-top {

    display: flex;

    justify-content: center;

    gap: 10px;

    padding-bottom: 18px;

    border-bottom: 1px solid rgba(200, 169, 107, .2);

}


.building-top span {

    width: 7px;

    height: 7px;

    background: var(--gold);

    border-radius: 50%;

}


.building-floor {

    height: 86px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    align-items: center;

    border-bottom: 1px solid rgba(255, 255, 255, .07);

}


.building-floor i {

    height: 45px;

    display: flex;

    justify-content: center;

    align-items: center;

    color: var(--gold-light);

    background: rgba(255, 255, 255, .025);

    font-size: 15px;

}


.building-base {

    position: absolute;

    bottom: -10px;

    left: 25px;

    right: 25px;

    height: 10px;

    background: var(--gold);

    opacity: .6;

}


/* FUNDING CARD */

.funding-card {

    position: absolute;

    right: 5%;

    bottom: 75px;

    min-width: 245px;

    padding: 17px;

    background: rgba(9, 26, 43, .96);

    border: 1px solid rgba(200, 169, 107, .3);

    display: flex;

    align-items: center;

    gap: 13px;

    z-index: 5;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);

    animation: floatingCard 4s ease-in-out infinite;

}


@keyframes floatingCard {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-10px);

    }

}


.funding-icon {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(200, 169, 107, .1);

    color: var(--gold-light);

}


.funding-card div:nth-child(2) {

    display: flex;

    flex-direction: column;

    gap: 5px;

}


.funding-card span {

    color: rgba(255, 255, 255, .4);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

}


.funding-card strong {

    color: white;

    font-size: 14px;

}


.funding-arrow {

    margin-left: auto;

    color: var(--gold);

    font-size: 12px;

}


/* =========================================================
   BUSINESS USE
========================================================= */

.business-use {

    background: var(--cream);

    color: var(--dark);

    padding: 120px 7%;

}


.use-container {

    max-width: 1250px;

    margin: auto;

}


.section-eyebrow {

    font-size: 10px;

    letter-spacing: 3px;

    font-weight: 700;

    color: #9b7a3d;

    margin-bottom: 18px;

}


.section-eyebrow.light {

    color: var(--gold);

}


.use-heading {

    max-width: 700px;

    margin-bottom: 70px;

}


.use-heading h2 {

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1.05;

    letter-spacing: -2px;

    font-weight: 400;

}


.use-heading h2 strong {

    display: block;

    color: #9b7a3d;

}


.use-heading p {

    max-width: 600px;

    margin-top: 25px;

    color: var(--gray);

    font-size: 15px;

    line-height: 1.8;

}


/* USE LIST */

.use-list {

    border-top: 1px solid rgba(37, 53, 71, .16);

}


.use-item {

    display: grid;

    grid-template-columns: 70px 70px 1fr 50px;

    align-items: center;

    gap: 25px;

    min-height: 145px;

    padding: 20px 0;

    border-bottom: 1px solid rgba(37, 53, 71, .16);

    transition: .35s var(--ease);

}


.use-item:hover {

    padding-left: 20px;

    padding-right: 20px;

    background: rgba(200, 169, 107, .06);

}


.use-number {

    font-size: 12px;

    color: var(--gray);

}


.use-icon {

    width: 52px;

    height: 52px;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #9b7a3d;

    background: rgba(200, 169, 107, .12);

}


.use-content h3 {

    font-size: 20px;

    margin-bottom: 8px;

}


.use-content p {

    max-width: 650px;

    color: var(--gray);

    line-height: 1.6;

    font-size: 13px;

}


.use-arrow {

    color: #9b7a3d;

    transition: .3s ease;

}


.use-item:hover .use-arrow {

    transform: translateX(7px);

}


/* =========================================================
   SNAPSHOT
========================================================= */

.business-snapshot {

    background: var(--navy);

    padding: 130px 7%;

}


.snapshot-container {

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 90px;

    align-items: center;

}


.snapshot-left h2 {

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1;

    letter-spacing: -2px;

    font-weight: 400;

}


.snapshot-left h2 strong {

    color: var(--gold-light);

}


.snapshot-left p {

    max-width: 480px;

    margin-top: 30px;

    color: rgba(255, 255, 255, .5);

    line-height: 1.8;

    font-size: 14px;

}


.snapshot-left a {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 35px;

    padding: 15px 22px;

    background: var(--gold);

    color: var(--navy);

    font-size: 12px;

    font-weight: 700;

    transition: .3s ease;

}


.snapshot-left a:hover {

    background: var(--gold-light);

    transform: translateY(-3px);

}


.snapshot-right {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

}


.snapshot-card {

    min-height: 230px;

    padding: 28px;

    background: var(--navy2);

    border: 1px solid var(--border);

    position: relative;

    transition: .4s var(--ease);

}


.snapshot-card:hover {

    transform: translateY(-6px);

    border-color: rgba(200, 169, 107, .35);

}


.snapshot-card.active {

    background: var(--navy3);

    border-color: rgba(200, 169, 107, .35);

}


.snapshot-number {

    position: absolute;

    top: 25px;

    right: 25px;

    color: rgba(255, 255, 255, .25);

    font-size: 10px;

}


.snapshot-card>i {

    display: block;

    color: var(--gold);

    font-size: 23px;

    margin-top: 35px;

    margin-bottom: 30px;

}


.snapshot-card h3 {

    font-size: 17px;

    margin-bottom: 10px;

}


.snapshot-card p {

    color: rgba(255, 255, 255, .42);

    font-size: 12px;

    line-height: 1.6;

}


/* =========================================================
   ELIGIBILITY
========================================================= */

.business-eligibility {

    background: var(--cream);

    color: var(--dark);

    padding: 120px 7%;

}


.eligibility-container {

    max-width: 1250px;

    margin: auto;

}


.eligibility-top {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 80px;

}


.eligibility-top>div>span {

    color: #9b7a3d;

    font-size: 10px;

    letter-spacing: 3px;

    font-weight: 700;

}


.eligibility-top h2 {

    margin-top: 18px;

    font-size: clamp(40px, 5vw, 62px);

    line-height: 1;

    letter-spacing: -2px;

    font-weight: 400;

}


.eligibility-top>p {

    color: var(--gray);

    line-height: 1.8;

    font-size: 14px;

    max-width: 500px;

}


/* TIMELINE */

.eligibility-timeline {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

}


.eligibility-item {

    position: relative;

    padding-right: 30px;

}


.timeline-number {

    width: 52px;

    height: 52px;

    border: 1px solid rgba(200, 169, 107, .55);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #9b7a3d;

    font-size: 12px;

    margin-bottom: 30px;

}


.timeline-line {

    position: absolute;

    top: 26px;

    left: 52px;

    right: 0;

    height: 1px;

    background: rgba(37, 53, 71, .15);

}


.eligibility-item:last-child .timeline-line {

    display: none;

}


.eligibility-info h3 {

    font-size: 17px;

    margin-bottom: 12px;

}


.eligibility-info p {

    color: var(--gray);

    font-size: 12px;

    line-height: 1.7;

    max-width: 230px;

}


/* =========================================================
   DOCUMENTS
========================================================= */

.documents-section {

    background: var(--navy2);

    padding: 120px 7%;

}


.documents-container {

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: .75fr 1.25fr;

    gap: 100px;

}


.documents-heading h2 {

    font-size: clamp(40px, 5vw, 60px);

    line-height: 1;

    letter-spacing: -2px;

    font-weight: 400;

}


.documents-heading h2 strong {

    color: var(--gold-light);

    display: block;

}


.documents-heading p {

    margin-top: 25px;

    color: rgba(255, 255, 255, .45);

    font-size: 14px;

    line-height: 1.8;

    max-width: 430px;

}


.document-list {

    border-top: 1px solid var(--border);

}


.document-row {

    min-height: 105px;

    display: grid;

    grid-template-columns: 60px 1fr 30px;

    align-items: center;

    gap: 20px;

    border-bottom: 1px solid var(--border);

    transition: .3s ease;

}


.document-row:hover {

    background: var(--navy3);

    padding-left: 15px;

    padding-right: 15px;

    border-color: rgba(200, 169, 107, .3);

}


.document-icon {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(200, 169, 107, .08);

    color: var(--gold);

}


.document-row h3 {

    font-size: 15px;

    margin-bottom: 6px;

}


.document-row p {

    color: var(--gray);

    font-size: 11px;

}


.document-row>span {

    color: rgba(255, 255, 255, .2);

    font-size: 10px;

}


/* =========================================================
   FAQ
========================================================= */

.business-faq {

    background: var(--cream);

    color: var(--dark);

    padding: 120px 7%;

}


.faq-container {

    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: .7fr 1.3fr;

    gap: 100px;

}


.faq-title h2 {

    font-size: clamp(40px, 5vw, 60px);

    line-height: 1;

    font-weight: 400;

    letter-spacing: -2px;

}


.faq-title h2 strong {

    color: #9b7a3d;

}


.faq-title p {

    color: var(--gray);

    font-size: 13px;

    line-height: 1.7;

    margin-top: 20px;

}


.faq-list details {

    border-top: 1px solid rgba(37, 53, 71, .15);

    padding: 22px 0;

}


.faq-list details:last-child {

    border-bottom: 1px solid rgba(37, 53, 71, .15);

}


.faq-list summary {

    list-style: none;

    cursor: pointer;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    font-size: 14px;

    font-weight: 600;

}


.faq-list summary::-webkit-details-marker {

    display: none;

}


.faq-list summary i {

    color: #9b7a3d;

    font-size: 12px;

    transition: .3s ease;

}


.faq-list details[open] summary i {

    transform: rotate(45deg);

}


.faq-list details p {

    color: var(--gray);

    font-size: 12px;

    line-height: 1.8;

    max-width: 650px;

    padding-top: 18px;

}


/* =========================================================
   FINAL CTA
========================================================= */

.business-final {

    padding: 140px 7%;

    text-align: center;

    background:

        radial-gradient(circle at 80% 50%,
            rgba(200, 169, 107, .12),
            transparent 30%),

        var(--navy);

}


.final-content {

    max-width: 850px;

    margin: auto;

}


.final-content h2 {

    font-size: clamp(45px, 7vw, 85px);

    line-height: .98;

    letter-spacing: -3px;

    font-weight: 400;

}


.final-content h2 strong {

    color: var(--gold-light);

}


.final-content>p {

    max-width: 600px;

    margin: 25px auto 0;

    color: rgba(255, 255, 255, .48);

    line-height: 1.8;

    font-size: 14px;

}


.final-buttons {

    display: flex;

    justify-content: center;

    gap: 15px;

    margin-top: 38px;

}


.final-buttons a {

    padding: 15px 24px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-size: 12px;

    font-weight: 700;

    transition: .3s ease;

}


.final-buttons a:first-child {

    background: var(--gold);

    color: var(--navy);

}


.final-buttons a:first-child:hover {

    background: var(--gold-light);

    transform: translateY(-3px);

}


.final-buttons a:last-child {

    border: 1px solid rgba(255, 255, 255, .2);

}


.final-buttons a:last-child:hover {

    border-color: var(--gold);

    color: var(--gold-light);

}


/* =========================================================
   FOOTER
========================================================= */

.business-footer {

    background: #040d17;

    padding: 80px 7% 25px;

    border-top: 1px solid rgba(255, 255, 255, .06);

}


.footer-container {

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 60px;

}


.footer-logo {

    display: inline-flex;

    flex-direction: column;

}


.footer-logo span {

    font-size: 22px;

    font-weight: 800;

    letter-spacing: 2px;

}


.footer-logo small {

    color: var(--gold);

    font-size: 7px;

    letter-spacing: 4px;

    margin-top: 5px;

}


.footer-brand p {

    max-width: 300px;

    color: rgba(255, 255, 255, .38);

    font-size: 12px;

    line-height: 1.8;

    margin-top: 20px;

}


.footer-social {

    display: flex;

    gap: 10px;

    margin-top: 25px;

}


.footer-social a {

    width: 38px;

    height: 38px;

    border: 1px solid rgba(255, 255, 255, .12);

    display: flex;

    align-items: center;

    justify-content: center;

    color: rgba(255, 255, 255, .6);

    transition: .3s ease;

}


.footer-social a:hover {

    background: var(--gold);

    color: var(--navy);

    border-color: var(--gold);

}


.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;

}


.footer-column h4 {

    font-size: 12px;

    color: var(--gold-light);

    letter-spacing: 1px;

    margin-bottom: 8px;

}


.footer-column a {

    color: rgba(255, 255, 255, .42);

    font-size: 11px;

    transition: .3s ease;

}


.footer-column a:hover {

    color: var(--gold-light);

}


.footer-column a i {

    width: 20px;

    color: var(--gold);

}


.footer-bottom {

    max-width: 1250px;

    margin: 60px auto 0;

    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, .07);

    display: flex;

    justify-content: space-between;

    gap: 20px;

}


.footer-bottom p {

    color: rgba(255, 255, 255, .25);

    font-size: 9px;

    line-height: 1.5;

}


/* =========================================================
   MOBILE NAV
========================================================= */

@media(max-width:900px) {

    .nav-container {

        padding: 18px 25px;

    }


    .nav-btn {

        display: none;

    }


    .menu-toggle {

        display: flex;

    }


    .nav-menu {

        position: absolute;

        top: 78px;

        left: 20px;

        right: 20px;

        background: rgba(7, 17, 31, .98);

        backdrop-filter: blur(20px);

        border: 1px solid rgba(255, 255, 255, .10);

        padding: 18px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        opacity: 0;

        visibility: hidden;

        transform: translateY(-15px);

        transition: .35s ease;

        box-shadow: 0 25px 60px rgba(0, 0, 0, .35);

    }


    .nav-menu.show {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }


    .nav-menu>a {

        padding: 15px 10px;

        border-bottom: 1px solid rgba(255, 255, 255, .08);

        font-size: 13px;

        color: rgba(255, 255, 255, .8);

    }


    .nav-dropdown {

        width: 100%;

        border-bottom: 1px solid rgba(255, 255, 255, .08);

    }


    .dropdown-toggle {

        width: 100%;

        padding: 15px 10px;

        background: transparent;

        border: none;

        color: rgba(255, 255, 255, .8);

        font-size: 13px;

        text-align: left;

        display: flex;

        justify-content: space-between;

        align-items: center;

        cursor: pointer;

    }


    .dropdown-menu {

        position: static;

        min-width: 100%;

        background: rgba(255, 255, 255, .03);

        border: none;

        padding: 0;

        display: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        box-shadow: none;

    }


    .nav-dropdown.open .dropdown-menu {

        display: block;

    }


    .nav-dropdown.open .dropdown-toggle i {

        transform: rotate(180deg);

    }


    .dropdown-menu a {

        padding: 12px 15px;

        font-size: 12px;

        color: rgba(255, 255, 255, .55);

        border-top: 1px solid rgba(255, 255, 255, .05);

    }


    .mobile-apply {

        display: flex !important;

        justify-content: center;

        align-items: center;

        margin-top: 15px;

        padding: 13px !important;

        background: var(--gold);

        color: var(--navy) !important;

        font-weight: 700;

        border: none !important;

        gap: 8px;

    }


    /* HERO */

    .business-hero {

        padding: 130px 25px 70px;

    }


    .hero-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .business-visual {

        min-height: 470px;

    }


    /* SNAPSHOT */

    .snapshot-container {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    /* ELIGIBILITY */

    .eligibility-top {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .eligibility-timeline {

        grid-template-columns: repeat(2, 1fr);

        gap: 50px 20px;

    }


    .eligibility-item:nth-child(2) .timeline-line {

        display: none;

    }


    /* DOCUMENTS */

    .documents-container {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    /* FAQ */

    .faq-container {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    /* FOOTER */

    .footer-container {

        grid-template-columns: repeat(2, 1fr);

    }

}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:700px) {

    .hero-content h1 {

        font-size: 52px;

        letter-spacing: -2px;

    }


    .business-visual {

        min-height: 430px;

    }


    .business-building {

        width: 240px;

        height: 320px;

    }


    .circle-one {

        width: 420px;

        height: 420px;

    }


    .circle-two {

        width: 330px;

        height: 330px;

    }


    .circle-three {

        width: 240px;

        height: 240px;

    }


    .funding-card {

        right: 0;

        bottom: 45px;

    }


    .use-item {

        grid-template-columns: 45px 55px 1fr;

    }


    .use-arrow {

        display: none;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:600px) {

    .navbar {

        height: 70px;

    }


    .nav-container {

        padding: 15px 18px;

    }


    .logo span {

        font-size: 19px;

    }


    .logo small {

        font-size: 7px;

    }


    .nav-menu {

        top: 70px;

        left: 12px;

        right: 12px;

        padding: 15px;

    }


    .menu-toggle {

        width: 40px;

        height: 40px;

    }


    /* HERO */

    .business-hero {

        padding: 115px 20px 60px;

    }


    .hero-grid {

        gap: 10px;

    }


    .hero-content h1 {

        font-size: 43px;

        line-height: 1;

    }


    .hero-content>p {

        font-size: 14px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .business-primary,
    .business-secondary {

        width: 100%;

    }


    .business-visual {

        min-height: 360px;

    }


    .business-building {

        width: 190px;

        height: 260px;

        padding: 15px;

    }


    .building-floor {

        height: 59px;

    }


    .building-floor i {

        height: 34px;

        font-size: 11px;

    }


    .circle-one {

        width: 320px;

        height: 320px;

    }


    .circle-two {

        width: 260px;

        height: 260px;

    }


    .circle-three {

        width: 190px;

        height: 190px;

    }


    .funding-card {

        min-width: 205px;

        padding: 12px;

        bottom: 15px;

    }


    .funding-icon {

        width: 38px;

        height: 38px;

    }


    /* USE */

    .business-use {

        padding: 80px 20px;

    }


    .use-heading {

        margin-bottom: 45px;

    }


    .use-heading h2 {

        font-size: 42px;

    }


    .use-item {

        grid-template-columns: 35px 48px 1fr;

        gap: 12px;

        min-height: 130px;

    }


    .use-item:hover {

        padding-left: 10px;

        padding-right: 10px;

    }


    .use-icon {

        width: 44px;

        height: 44px;

    }


    .use-content h3 {

        font-size: 15px;

    }


    .use-content p {

        font-size: 11px;

    }


    /* SNAPSHOT */

    .business-snapshot {

        padding: 80px 20px;

    }


    .snapshot-left h2 {

        font-size: 43px;

    }


    .snapshot-right {

        grid-template-columns: 1fr;

    }


    /* ELIGIBILITY */

    .business-eligibility {

        padding: 80px 20px;

    }


    .eligibility-top h2 {

        font-size: 42px;

    }


    .eligibility-timeline {

        grid-template-columns: 1fr;

        gap: 0;

    }


    .eligibility-item {

        padding-bottom: 45px;

        padding-right: 0;

    }


    .timeline-line {

        display: block !important;

        left: 26px;

        top: 52px;

        bottom: 0;

        width: 1px;

        height: auto;

        right: auto;

    }


    .eligibility-item:last-child {

        padding-bottom: 0;

    }


    .eligibility-item:last-child .timeline-line {

        display: none !important;

    }


    /* DOCUMENTS */

    .documents-section {

        padding: 80px 20px;

    }


    .documents-heading h2 {

        font-size: 42px;

    }


    .document-row {

        grid-template-columns: 45px 1fr 25px;

        gap: 12px;

    }


    .document-icon {

        width: 40px;

        height: 40px;

    }


    /* FAQ */

    .business-faq {

        padding: 80px 20px;

    }


    .faq-title h2 {

        font-size: 42px;

    }


    /* CTA */

    .business-final {

        padding: 90px 20px;

    }


    .final-content h2 {

        font-size: 48px;

    }


    .final-buttons {

        flex-direction: column;

    }


    .final-buttons a {

        width: 100%;

        justify-content: center;

    }


    /* FOOTER */

    .business-footer {

        padding: 60px 20px 25px;

    }


    .footer-container {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .footer-bottom {

        flex-direction: column;

        margin-top: 45px;

    }

}