/* =========================================================
   TRIVEEXA PERSONAL LOAN EMI
========================================================= */

: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);
}


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


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    background: var(--cream);
    color: var(--dark);

    overflow-x: hidden;
}


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


button,
input {
    font-family: inherit;
}


/* =========================================================
   COMMON
========================================================= */

.container {
    width: min(1180px, 92%);
    margin: auto;
}


.section-tag {
    display: inline-block;

    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;

    color: var(--gold);
}


.center {
    text-align: center;
}


/* =====================================================
   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;
    }
}



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

.hero {

    min-height: 670px;

    padding-top: 78px;

    background:
        radial-gradient(circle at 80% 40%,
            rgba(200, 169, 107, .14),
            transparent 30%),
        var(--navy);

    color: white;

    position: relative;

    overflow: hidden;

    display: flex;
    align-items: center;
}


.hero-grid {

    position: absolute;
    inset: 0;

    opacity: .25;

    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);

    background-size: 70px 70px;
}


.hero-content {

    width: min(1180px, 92%);

    margin: auto;

    position: relative;
    z-index: 2;

    padding-right: 48%;

}


.hero-tag {

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 25px;

    display: flex;
    align-items: center;
    gap: 10px;
}


.hero-tag span {

    width: 30px;
    height: 1px;

    background: var(--gold);
}


.hero h1 {

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

    line-height: .98;

    font-weight: 300;

    letter-spacing: -3px;
}


.hero h1 strong {

    display: block;

    color: var(--gold-light);

    font-weight: 700;

}


.hero p {

    margin-top: 30px;

    max-width: 570px;

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

    font-size: 16px;

    line-height: 1.8;
}


.hero-buttons {

    margin-top: 35px;

    display: flex;

    gap: 13px;
}


.gold-btn,
.dark-btn {

    display: inline-flex;

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

    gap: 10px;

    padding: 15px 23px;

    font-size: 12px;

    font-weight: 700;

    transition: .3s;
}


.gold-btn {

    background: var(--gold);

    color: var(--navy);
}


.gold-btn:hover {

    background: var(--gold-light);

    transform: translateY(-3px);
}


.dark-btn {

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

    color: white;
}


.dark-btn:hover {

    border-color: var(--gold);

    color: var(--gold);
}


.hero-visual {

    position: absolute;

    right: 7%;

    width: 440px;
    height: 440px;

    display: flex;

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


.orbit {

    position: absolute;

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

    border-radius: 50%;
}


.orbit-one {

    width: 410px;
    height: 410px;
}


.orbit-two {

    width: 290px;
    height: 290px;

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


.hero-card {

    width: 290px;

    padding: 27px;

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

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

    backdrop-filter: blur(20px);

    display: flex;

    align-items: center;

    gap: 18px;

    position: relative;

    z-index: 2;

    box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
}


.hero-card-icon {

    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    background: var(--gold);

    color: var(--navy);

    font-size: 21px;
}


.hero-card span {

    display: block;

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

    font-size: 8px;

    letter-spacing: 1.5px;
}


.hero-card strong {

    display: block;

    margin-top: 6px;

    color: var(--gold-light);

    font-size: 27px;
}


.mini-card {

    position: absolute;

    bottom: 70px;
    right: 0;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 16px 20px;

    background: var(--white);

    color: var(--dark);

    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);

    z-index: 3;
}


.mini-card>i {

    color: var(--gold);

    font-size: 21px;
}


.mini-card strong {

    display: block;

    font-size: 12px;
}


.mini-card small {

    display: block;

    margin-top: 3px;

    color: var(--gray);

    font-size: 10px;
}


/* =========================================================
   INTRO
========================================================= */

.intro {

    background: var(--white);

    padding: 100px 0;
}


.intro-label {

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 2px;

    display: flex;

    gap: 12px;

    align-items: center;
}


.intro-label span {

    color: var(--dark);

    font-size: 12px;

    font-weight: 800;
}


.intro-content {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    margin-top: 35px;
}


.intro h2 {

    font-size: clamp(35px, 4vw, 55px);

    line-height: 1.05;

    font-weight: 300;

    letter-spacing: -2px;
}


.intro h2 span {

    color: var(--gold);

    font-weight: 700;
}


.intro p {

    color: var(--gray);

    line-height: 1.9;

    max-width: 500px;

    font-size: 15px;
}


/* =========================================================
   CALCULATOR
========================================================= */

.calculator-section {

    padding: 110px 0;

    background: var(--navy2);
}


.calculator-head {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-bottom: 45px;
}


.calculator-head h2 {

    color: white;

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 300;

    margin-top: 13px;
}


.calculator-head h2 span {

    color: var(--gold-light);

    font-weight: 700;
}


.live-badge {

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 1.5px;

    display: flex;

    align-items: center;

    gap: 8px;
}


.live-badge span {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow: 0 0 0 5px rgba(200, 169, 107, .12);
}


.calculator {

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    background: white;

    box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
}


.controls {

    padding: 50px;
}


.control {

    margin-bottom: 35px;
}


.control-title {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 18px;
}


.control-title label {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--dark);

    font-size: 13px;

    font-weight: 700;
}


.control-title label i {

    color: var(--gold);

    width: 20px;
}


.value-box {

    border: 1px solid #ddd;

    padding: 8px 12px;

    font-size: 13px;

    color: var(--dark);

    min-width: 125px;

    text-align: right;
}


.value-box input {

    width: 75px;

    border: none;

    outline: none;

    text-align: right;

    font-size: 14px;

    font-weight: 700;

    color: var(--dark);
}


input[type="range"] {

    width: 100%;

    height: 4px;

    appearance: none;

    background: #ddd;

    outline: none;

    cursor: pointer;
}


input[type="range"]::-webkit-slider-thumb {

    appearance: none;

    width: 18px;
    height: 18px;

    background: var(--gold);

    border: 3px solid white;

    box-shadow: 0 0 0 1px var(--gold);

    border-radius: 50%;
}


.range-info {

    margin-top: 9px;

    display: flex;

    justify-content: space-between;

    color: var(--gray);

    font-size: 10px;
}


.calculator-note {

    display: flex;

    gap: 12px;

    padding-top: 12px;

    border-top: 1px solid #eee;
}


.calculator-note i {

    color: var(--gold);

    margin-top: 3px;
}


.calculator-note p {

    color: var(--gray);

    font-size: 11px;

    line-height: 1.7;
}


/* RESULT */

.result {

    background: var(--navy3);

    color: white;

    padding: 50px;

    text-align: center;

    position: relative;

    overflow: hidden;
}


.result::before {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

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

    top: -140px;
    right: -100px;
}


.result-label {

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

    font-size: 10px;

    letter-spacing: 2px;

    position: relative;
}


.emi {

    color: var(--gold-light);

    font-size: clamp(38px, 4vw, 55px);

    font-weight: 700;

    margin-top: 10px;

    position: relative;
}


.emi-caption {

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

    font-size: 11px;
}


.chart {

    width: 205px;
    height: 205px;

    margin: 25px auto;

    position: relative;
}


.chart canvas {

    width: 100% !important;
    height: 100% !important;
}


.chart-center {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    pointer-events: none;
}


.chart-center span {

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

    font-size: 9px;

    letter-spacing: 1px;
}


.chart-center strong {

    color: var(--gold-light);

    font-size: 16px;

    margin-top: 5px;
}


.summary {

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

    padding-top: 18px;
}


.summary-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 8px 0;

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

    font-size: 11px;
}


.summary-row strong {

    color: white;
}


.summary-row span {

    display: flex;

    align-items: center;

    gap: 8px;
}


.dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    display: inline-block;
}


.principal-dot {
    background: white;
}


.interest-dot {
    background: var(--gold);
}


.total-row {

    margin-top: 8px;

    padding-top: 15px;

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

    color: white;

    font-weight: 700;
}


.total-row strong {

    color: var(--gold-light);

    font-size: 15px;
}


.result-btn {

    display: flex;

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

    gap: 10px;

    background: var(--gold);

    color: var(--navy);

    padding: 15px;

    margin-top: 22px;

    font-size: 11px;

    font-weight: 800;

    transition: .3s;
}


.result-btn:hover {

    background: var(--gold-light);

    transform: translateY(-2px);
}


/* =========================================================
   WHY
========================================================= */

.why-section {

    padding: 110px 0;

    background: var(--white);
}


.section-title h2 {

    margin-top: 14px;

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.05;

    font-weight: 300;

    letter-spacing: -2px;
}


.section-title h2 span {

    color: var(--gold);

    font-weight: 700;
}


.why-grid {

    display: grid;

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

    gap: 1px;

    background: #ddd;

    margin-top: 55px;
}


.why-grid article {

    background: white;

    padding: 42px;

    min-height: 280px;

    position: relative;

    transition: .4s;
}


.why-grid article:hover {

    background: var(--navy);

    color: white;

    transform: translateY(-8px);
}


.why-grid .number {

    color: var(--gold);

    font-size: 11px;

    letter-spacing: 2px;

    margin-bottom: 35px;
}


.why-grid article>i {

    color: var(--gold);

    font-size: 25px;

    margin-bottom: 20px;
}


.why-grid h3 {

    font-size: 20px;

    margin-bottom: 12px;
}


.why-grid p {

    color: var(--gray);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   EXPLANATION
========================================================= */

.explanation {

    background: var(--cream);

    padding: 110px 0;
}


.explanation-grid {

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 90px;

    align-items: center;
}


.formula-card {

    background: var(--navy);

    color: white;

    padding: 45px;

    min-height: 380px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    box-shadow: 20px 20px 0 var(--gold);
}


.formula-card>span {

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 2px;
}


.formula-card h3 {

    font-size: 24px;

    font-weight: 400;

    line-height: 1.4;

    margin-top: 18px;
}


.formula {

    margin: 30px 0;

    color: var(--gold-light);

    font-size: 21px;

    line-height: 1.8;

    text-align: center;
}


.formula-details p {

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

    font-size: 11px;

    margin-top: 7px;
}


.explanation-text h2 {

    font-size: clamp(35px, 4vw, 52px);

    font-weight: 300;

    line-height: 1.05;

    margin: 15px 0 22px;
}


.explanation-text h2 span {

    color: var(--gold);

    font-weight: 700;
}


.explanation-text>p {

    color: var(--gray);

    line-height: 1.8;

    font-size: 14px;

    margin-bottom: 12px;
}


.example {

    display: grid;

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

    border-top: 1px solid #ddd;

    border-bottom: 1px solid #ddd;

    margin-top: 35px;
}


.example div {

    padding: 20px 12px;

    border-right: 1px solid #ddd;
}


.example div:last-child {
    border-right: 0;
}


.example small {

    display: block;

    color: var(--gray);

    font-size: 8px;

    letter-spacing: 1px;

    margin-bottom: 7px;
}


.example strong {

    color: var(--dark);

    font-size: 15px;
}


/* =========================================================
   FACTORS
========================================================= */

.factors {

    padding: 110px 0;

    background: var(--navy2);

    color: white;
}


.factor-list {

    margin-top: 50px;

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


.factor {

    display: grid;

    grid-template-columns: 90px 1fr;

    gap: 25px;

    padding: 30px 0;

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

    transition: .3s;
}


.factor>span {

    color: var(--gold);

    font-size: 11px;

    letter-spacing: 2px;
}


.factor h3 {

    font-size: 18px;

    font-weight: 600;

    margin-bottom: 8px;
}


.factor p {

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

    max-width: 650px;

    font-size: 13px;

    line-height: 1.7;
}


.factor:hover {

    padding-left: 15px;
}


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

.faq-section {

    padding: 110px 0;

    background: white;
}


.faq-list {

    width: min(800px, 100%);

    margin: 50px auto 0;
}


.faq-item {

    border-bottom: 1px solid #ddd;
}


.faq-question {

    width: 100%;

    padding: 23px 0;

    background: none;

    border: 0;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: space-between;

    text-align: left;

    color: var(--dark);

    font-size: 14px;

    font-weight: 700;
}


.faq-question i {

    color: var(--gold);

    transition: .3s;
}


.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: .4s ease;
}


.faq-answer p {

    color: var(--gray);

    font-size: 13px;

    line-height: 1.8;

    padding-bottom: 22px;
}


.faq-item.active .faq-answer {
    max-height: 150px;
}


.faq-item.active .faq-question i {

    transform: rotate(45deg);
}


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

.cta {

    padding: 110px 0;

    background: var(--navy);

    color: white;

    text-align: center;

    position: relative;

    overflow: hidden;
}


.cta-pattern {

    position: absolute;

    width: 600px;
    height: 600px;

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

    border-radius: 50%;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);
}


.cta h2 {

    position: relative;

    margin-top: 20px;

    font-size: clamp(40px, 6vw, 72px);

    line-height: 1;

    font-weight: 300;
}


.cta h2 span {

    color: var(--gold-light);

    font-weight: 700;
}


.cta p {

    position: relative;

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

    margin-top: 20px;

    font-size: 14px;
}


.cta-buttons {

    position: relative;

    margin-top: 30px;

    display: flex;

    justify-content: center;

    gap: 12px;
}


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

.footer {

    background: #030b14;

    color: white;

    padding-top: 75px;
}


.footer-grid {

    display: grid;

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

    gap: 50px;

    padding-bottom: 60px;
}


.footer-brand p {

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

    font-size: 12px;

    line-height: 1.7;

    max-width: 270px;

    margin-top: 20px;
}


.social {

    display: flex;

    gap: 8px;

    margin-top: 20px;
}


.social a {

    width: 35px;
    height: 35px;

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

    display: grid;
    place-items: center;

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

    transition: .3s;
}


.social a:hover {

    color: var(--gold);

    border-color: var(--gold);
}


.footer-column h4 {

    color: white;

    font-size: 12px;

    margin-bottom: 20px;
}


.footer-column a {

    display: block;

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

    font-size: 11px;

    margin-bottom: 12px;

    transition: .3s;
}


.footer-column a:hover {

    color: var(--gold);
}


.footer-bottom {

    width: min(1180px, 92%);

    margin: auto;

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

    padding: 20px 0;

    display: flex;

    justify-content: space-between;

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

    font-size: 10px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:900px) {

    .nav-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {

        position: absolute;

        top: 78px;

        left: 20px;
        right: 20px;

        padding: 15px;

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

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        opacity: 0;

        visibility: hidden;

        transform: translateY(-15px);

        transition: .3s;
    }

    .nav-menu.show {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);
    }

    .nav-menu>a {

        padding: 14px 10px;

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

    .nav-dropdown {

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

    .dropdown-toggle {

        width: 100%;

        padding: 14px 10px;

        justify-content: space-between;
    }

    .dropdown-menu {

        position: static;

        display: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        box-shadow: none;

        border: 0;

        padding: 0;

        min-width: 100%;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding-left: 25px;
    }

    .mobile-apply {

        display: flex !important;

        justify-content: center;

        margin-top: 12px;

        background: var(--gold);

        color: var(--navy) !important;

        font-weight: 800;
    }


    .hero {

        min-height: 800px;

        align-items: flex-start;

        padding-top: 150px;
    }


    .hero-content {

        padding-right: 0;
    }


    .hero-visual {

        position: absolute;

        width: 330px;
        height: 330px;

        right: 50%;

        transform: translateX(50%);

        bottom: 30px;
    }


    .orbit-one {

        width: 300px;
        height: 300px;
    }


    .orbit-two {

        width: 220px;
        height: 220px;
    }


    .hero-card {
        width: 250px;
    }


    .mini-card {
        right: -5px;
        bottom: 25px;
    }


    .intro-content,
    .explanation-grid {

        grid-template-columns: 1fr;

        gap: 40px;
    }


    .calculator {

        grid-template-columns: 1fr;
    }


    .why-grid {

        grid-template-columns: 1fr;
    }


    .footer-grid {

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

}


@media(max-width:600px) {

    .nav-container {
        min-height: 70px;
    }


    .hero {

        min-height: 760px;

        padding-top: 125px;
    }


    .hero h1 {

        font-size: 48px;
    }


    .hero p {

        font-size: 13px;
    }


    .hero-buttons {

        flex-direction: column;

        width: 200px;
    }


    .hero-visual {

        bottom: 25px;

        transform: translateX(50%) scale(.82);
    }


    .intro,
    .calculator-section,
    .why-section,
    .explanation,
    .factors,
    .faq-section,
    .cta {

        padding: 75px 0;
    }


    .calculator-head {

        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }


    .controls,
    .result {

        padding: 30px 22px;
    }


    .example {

        grid-template-columns: 1fr;
    }


    .example div {

        border-right: 0;

        border-bottom: 1px solid #ddd;
    }


    .example div:last-child {
        border-bottom: 0;
    }


    .formula-card {

        box-shadow: 10px 10px 0 var(--gold);
    }


    .factor {

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


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;
    }


    .footer-bottom {

        flex-direction: column;

        gap: 8px;
    }

}