/* =====================================================
   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
   CAR LOAN PAGE
========================================================= */

: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, .9);

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

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

.nav-container {

    height: 100%;

    max-width: 1400px;

    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 {

    margin-top: 5px;

    font-size: 8px;

    letter-spacing: 4px;

    color: var(--gold);
}


/* MENU */

.nav-menu {

    display: flex;

    align-items: center;

    gap: 7px;
}

.nav-link,
.dropdown-toggle {

    padding: 12px 15px;

    font-size: 13px;

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

    transition: .3s ease;
}

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

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


/* DROPDOWN */

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {

    border: none;

    background: transparent;

    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 */

.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;

    padding: 9px;

    background: transparent;

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

    cursor: pointer;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 5px;
}

.menu-toggle span {

    width: 21px;

    height: 2px;

    background: var(--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
========================================================= */

.car-hero {

    min-height: 100vh;

    position: relative;

    overflow: hidden;

    background:

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

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

    padding-top: 78px;
}

.hero-noise {

    position: absolute;

    inset: 0;

    opacity: .12;

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

    background-size: 70px 70px;
}


.car-hero-container {

    min-height: calc(100vh - 145px);

    max-width: 1400px;

    margin: auto;

    padding: 70px 7%;

    display: grid;

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

    align-items: center;

    gap: 40px;
}


/* HERO COPY */

.car-hero-copy {

    position: relative;

    z-index: 3;
}

.hero-kicker {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 20px;
}

.hero-kicker span {

    width: 38px;

    height: 1px;

    background: var(--gold);
}

.hero-index {

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

    font-size: 11px;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.car-hero-copy h1 {

    max-width: 650px;

    font-size: clamp(55px, 7vw, 92px);

    line-height: .93;

    letter-spacing: -4px;

    font-weight: 700;
}

.car-hero-copy h1 em {

    display: block;

    color: var(--gold-light);

    font-style: normal;
}

.car-hero-copy>p {

    max-width: 580px;

    margin-top: 30px;

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

    font-size: 15px;

    line-height: 1.8;
}


/* BUTTONS */

.hero-actions {

    display: flex;

    gap: 13px;

    margin-top: 35px;
}

.gold-btn,
.line-btn {

    display: inline-flex;

    align-items: center;

    gap: 11px;

    padding: 16px 21px;

    font-size: 11px;

    font-weight: 700;

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

.gold-btn {

    background: var(--gold);

    color: var(--navy);
}

.gold-btn:hover {

    background: var(--gold-light);

    transform: translateY(-3px);
}

.line-btn {

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

    color: var(--white);
}

.line-btn:hover {

    border-color: var(--gold);

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


.hero-disclaimer {

    max-width: 510px;

    display: flex;

    gap: 9px;

    margin-top: 28px;

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

    font-size: 10px;

    line-height: 1.6;
}

.hero-disclaimer i {

    color: var(--gold);

    margin-top: 2px;
}


/* =========================================================
   CAR VISUAL
========================================================= */

.car-hero-visual {

    height: 580px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* SPEED LINES */

.speed-lines {

    position: absolute;

    width: 650px;

    height: 400px;

    background:

        repeating-linear-gradient(170deg,
            transparent 0,
            transparent 30px,
            rgba(200, 169, 107, .08) 31px,
            transparent 32px);

    transform: rotate(-8deg);

    opacity: .7;
}


/* GLOW */

.car-glow {

    position: absolute;

    width: 470px;
    height: 300px;

    border-radius: 50%;

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

    filter: blur(50px);
}


/* CAR */

.car-shape {

    width: 590px;

    height: 240px;

    position: relative;

    transform: skewX(-4deg);

    filter:
        drop-shadow(0 35px 35px rgba(0, 0, 0, .45));
}


/* ROOF */

.car-roof {

    position: absolute;

    width: 300px;

    height: 125px;

    left: 145px;

    top: 12px;

    background:

        linear-gradient(135deg,
            var(--navy3),
            #18374e);

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

    clip-path: polygon(20% 100%,
            35% 0,
            72% 0,
            100% 100%);
}


/* WINDOWS */

.car-window {

    position: absolute;

    top: 30px;

    height: 78px;

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

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

    z-index: 3;
}

.car-window.front {

    left: 325px;

    width: 95px;

    clip-path: polygon(8% 100%,
            20% 0,
            100% 0,
            100% 100%);
}

.car-window.back {

    left: 184px;

    width: 135px;

    clip-path: polygon(20% 0,
            100% 0,
            100% 100%,
            0 100%);
}


/* BODY */

.car-body {

    position: absolute;

    width: 580px;

    height: 135px;

    left: 0;

    bottom: 40px;

    background:

        linear-gradient(160deg,
            var(--navy3),
            #071522 70%);

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

    border-radius:
        55px 100px 30px 35px;

    box-shadow:

        inset 0 1px 0 rgba(255, 255, 255, .07),

        inset 0 -20px 30px rgba(0, 0, 0, .25);
}


/* LIGHTS */

.car-light {

    position: absolute;

    width: 42px;

    height: 12px;

    background: var(--gold-light);

    box-shadow:

        0 0 15px rgba(228, 202, 145, .6);

    z-index: 4;

    bottom: 115px;
}

.car-light.left {

    left: 15px;

    border-radius: 20px 5px 5px 20px;
}

.car-light.right {

    right: 18px;

    border-radius: 5px 20px 20px 5px;
}


/* WHEELS */

.car-wheel {

    position: absolute;

    bottom: 7px;

    width: 94px;

    height: 94px;

    border-radius: 50%;

    background: #030a11;

    border: 8px solid #10202d;

    box-shadow:

        0 0 0 2px rgba(200, 169, 107, .25);

    z-index: 6;
}

.car-wheel span {

    position: absolute;

    inset: 20px;

    border-radius: 50%;

    border: 2px solid var(--gold);

}

.wheel-left {

    left: 80px;
}

.wheel-right {

    right: 80px;
}


/* TAGS */

.vehicle-tag {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 10px 13px;

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

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

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

    font-size: 9px;

    letter-spacing: 1.5px;

    z-index: 10;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .25);

    animation: tagFloat 4s ease-in-out infinite;
}

.vehicle-tag i {

    color: var(--gold);
}

.tag-one {

    top: 120px;

    left: 5%;

}

.tag-two {

    top: 210px;

    right: 3%;

    animation-delay: 1s;
}

.tag-three {

    bottom: 125px;

    left: 12%;

    animation-delay: 2s;
}


@keyframes tagFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


/* HERO BOTTOM */

.hero-bottom-strip {

    height: 67px;

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

    display: grid;

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

    background: rgba(6, 17, 31, .65);
}

.hero-bottom-strip div {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

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

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

    font-size: 11px;

    letter-spacing: 1px;
}

.hero-bottom-strip span {

    color: var(--gold);

    font-size: 9px;
}


/* =========================================================
   DRIVE SECTION
========================================================= */

.drive-section {

    background: var(--cream);

    color: var(--dark);

    padding: 120px 7%;
}


.drive-container {

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: end;
}

.section-number {

    display: block;

    color: #9b7a3d;

    font-size: 10px;

    letter-spacing: 3px;

    margin-bottom: 20px;
}

.drive-title h2 {

    font-size: clamp(45px, 5vw, 70px);

    line-height: .98;

    font-weight: 400;

    letter-spacing: -3px;
}

.drive-title strong {

    color: #9b7a3d;
}

.drive-description p {

    max-width: 500px;

    color: var(--gray);

    font-size: 14px;

    line-height: 1.9;
}

.drive-description a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 25px;

    color: #9b7a3d;

    font-size: 11px;

    font-weight: 700;
}


/* VEHICLE TYPES */

.vehicle-types {

    max-width: 1250px;

    margin: 80px auto 0;

    display: grid;

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

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

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

.vehicle-type {

    min-height: 300px;

    padding: 35px;

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

    position: relative;

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

.vehicle-type:last-child {
    border-right: none;
}

.vehicle-type:hover,
.vehicle-type.active {

    background: rgba(200, 169, 107, .07);
}

.vehicle-type>span {

    color: #9b7a3d;

    font-size: 10px;
}

.vehicle-type i {

    display: block;

    margin-top: 55px;

    color: #9b7a3d;

    font-size: 27px;
}

.vehicle-type h3 {

    margin-top: 25px;

    font-size: 20px;
}

.vehicle-type p {

    max-width: 270px;

    margin-top: 10px;

    color: var(--gray);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   PRECISION
========================================================= */

.precision-section {

    background: var(--navy2);

    padding: 130px 7%;
}

.precision-container {

    max-width: 1250px;

    margin: auto;
}

.precision-intro {

    max-width: 700px;
}

.precision-intro>span {

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 3px;
}

.precision-intro h2 {

    margin-top: 20px;

    font-size: clamp(45px, 5vw, 70px);

    line-height: 1;

    font-weight: 400;

    letter-spacing: -3px;
}

.precision-intro h2 strong {

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

.precision-intro p {

    max-width: 600px;

    margin-top: 25px;

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

    font-size: 14px;

    line-height: 1.8;
}


.precision-features {

    margin-top: 75px;

    display: grid;

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

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

}

.precision-feature {

    min-height: 310px;

    padding: 30px;

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

    position: relative;

    transition: .35s ease;
}

.precision-feature:last-child {
    border-right: none;
}

.precision-feature:hover {

    background: var(--navy3);
}

.feature-number {

    position: absolute;

    top: 28px;

    right: 25px;

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

    font-size: 10px;
}

.precision-feature>i {

    margin-top: 55px;

    color: var(--gold);

    font-size: 23px;
}

.precision-feature h3 {

    margin-top: 30px;

    font-size: 17px;
}

.precision-feature p {

    margin-top: 12px;

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

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {

    background: var(--cream);

    color: var(--dark);

    padding: 120px 7%;
}

.process-heading {

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: end;
}

.process-heading span {

    color: #9b7a3d;

    font-size: 10px;

    letter-spacing: 3px;

    font-weight: 700;
}

.process-heading h2 {

    margin-top: 20px;

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

    line-height: 1;

    font-weight: 400;

    letter-spacing: -3px;
}

.process-heading h2 strong {

    display: block;

    color: #9b7a3d;
}

.process-heading>p {

    color: var(--gray);

    font-size: 13px;

    line-height: 1.8;

    max-width: 500px;
}


/* ROAD */

.road {

    max-width: 1250px;

    margin: 100px auto 0;

    position: relative;

    display: grid;

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

    gap: 30px;
}

.road-line {

    position: absolute;

    top: 25px;

    left: 25px;

    right: 25px;

    height: 1px;

    background: rgba(37, 53, 71, .18);
}

.road-step {

    position: relative;

    z-index: 2;
}

.road-dot {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--cream);

    border: 1px solid rgba(155, 122, 61, .5);

    color: #9b7a3d;

    font-size: 10px;

    margin-bottom: 35px;
}

.road-card span {

    color: #9b7a3d;

    font-size: 9px;

    letter-spacing: 2px;
}

.road-card h3 {

    margin-top: 12px;

    font-size: 18px;
}

.road-card p {

    margin-top: 10px;

    max-width: 240px;

    color: var(--gray);

    font-size: 11px;

    line-height: 1.7;
}


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

.eligibility-section {

    background: var(--navy);

    padding: 125px 7%;
}

.eligibility-wrap {

    max-width: 1250px;

    margin: auto;

    display: grid;

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

    gap: 100px;
}

.eligibility-title>span {

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 3px;
}

.eligibility-title h2 {

    margin-top: 20px;

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

    line-height: 1;

    font-weight: 400;

    letter-spacing: -3px;
}

.eligibility-title h2 strong {

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

.eligibility-title p {

    max-width: 400px;

    margin-top: 25px;

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

    font-size: 13px;

    line-height: 1.8;
}


/* TABLE */

.eligibility-table {

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

.eligibility-row {

    min-height: 120px;

    display: grid;

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

    align-items: center;

    gap: 25px;

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

    transition: .35s ease;
}

.eligibility-row:hover {

    background: var(--navy2);

    padding-left: 15px;

    padding-right: 15px;
}

.eligibility-icon {

    width: 43px;

    height: 43px;

    display: flex;

    justify-content: center;

    align-items: center;

    color: var(--gold);

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

.eligibility-row small {

    color: var(--gold);

    font-size: 8px;

    letter-spacing: 2px;
}

.eligibility-row h3 {

    margin-top: 6px;

    font-size: 15px;
}

.eligibility-row p {

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

    font-size: 11px;

    line-height: 1.6;
}


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

.car-documents {

    background: var(--navy3);

    padding: 110px 7%;
}

.documents-inner {

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 100px;

    align-items: center;
}

.documents-heading>span {

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 3px;
}

.documents-heading h2 {

    margin-top: 18px;

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

    line-height: 1;

    font-weight: 400;

    letter-spacing: -2px;
}

.documents-heading strong {

    display: block;

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

.documents-grid {

    display: grid;

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

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

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

.documents-grid>div {

    min-height: 170px;

    padding: 25px;

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

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

}

.documents-grid i {

    color: var(--gold);

    font-size: 20px;
}

.documents-grid h3 {

    margin-top: 25px;

    font-size: 15px;
}

.documents-grid p {

    margin-top: 8px;

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

    font-size: 11px;

    line-height: 1.6;
}


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

.car-faq {

    background: var(--cream);

    color: var(--dark);

    padding: 120px 7%;
}

.faq-wrapper {

    max-width: 1100px;

    margin: auto;

    display: grid;

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

    gap: 100px;
}

.faq-heading>span {

    color: #9b7a3d;

    font-size: 10px;

    letter-spacing: 3px;
}

.faq-heading h2 {

    margin-top: 18px;

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

    line-height: 1;

    font-weight: 400;

    letter-spacing: -2px;
}

.faq-heading strong {

    color: #9b7a3d;
}

.faq-items details {

    padding: 23px 0;

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

.faq-items details:last-child {

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

.faq-items summary {

    list-style: none;

    cursor: pointer;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    font-size: 13px;

    font-weight: 600;
}

.faq-items summary::-webkit-details-marker {
    display: none;
}

.faq-items summary i {

    color: #9b7a3d;

    transition: .3s ease;
}

.faq-items details[open] summary i {

    transform: rotate(45deg);
}

.faq-items details p {

    padding-top: 17px;

    color: var(--gray);

    font-size: 12px;

    line-height: 1.8;
}


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

.car-cta {

    min-height: 500px;

    position: relative;

    overflow: hidden;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    background:

        radial-gradient(ellipse at center,
            rgba(200, 169, 107, .13),
            transparent 45%),

        var(--navy);
}

.cta-speed {

    position: absolute;

    inset: 0;

    opacity: .5;

    background:

        repeating-linear-gradient(165deg,
            transparent 0,
            transparent 45px,
            rgba(200, 169, 107, .045) 46px,
            transparent 47px);
}

.cta-content {

    max-width: 850px;

    padding: 80px 20px;

    position: relative;

    z-index: 2;
}

.cta-content>span {

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 3px;

    font-weight: 700;
}

.cta-content h2 {

    margin-top: 20px;

    font-size: clamp(48px, 7vw, 80px);

    line-height: .95;

    letter-spacing: -4px;

    font-weight: 400;
}

.cta-content h2 strong {

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

.cta-content>p {

    max-width: 600px;

    margin: 25px auto 0;

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

    font-size: 14px;

    line-height: 1.8;
}

.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 13px;

    margin-top: 35px;
}

.cta-buttons a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 15px 24px;

    font-size: 11px;

    font-weight: 700;

    transition: .3s ease;
}

.cta-buttons a:first-child {

    background: var(--gold);

    color: var(--navy);
}

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

    background: var(--gold-light);

    transform: translateY(-3px);
}

.cta-buttons a:last-child {

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

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

    border-color: var(--gold);

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


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

.car-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: 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;

    margin-top: 20px;

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

    font-size: 12px;

    line-height: 1.8;
}

.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);

    border-color: var(--gold);

    color: var(--navy);
}

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
}

.footer-column h4 {

    color: var(--gold-light);

    font-size: 12px;

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


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

@media(max-width:1000px) {

    .nav-container {
        padding: 0 25px;
    }

    .nav-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {

        position: absolute;

        top: 78px;

        left: 20px;
        right: 20px;

        padding: 18px;

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

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

        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, .4);
    }

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

    .nav-dropdown {

        width: 100%;

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

    .dropdown-toggle {

        width: 100%;

        justify-content: space-between;

        padding: 15px 10px;
    }

    .dropdown-menu {

        position: static;

        display: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        box-shadow: none;

        border: none;

        min-width: 100%;

        padding: 0;

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

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

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

    .dropdown-menu a {

        padding: 12px 15px;

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

    .mobile-apply {

        display: flex !important;

        justify-content: center;

        align-items: center;

        margin-top: 15px;

        background: var(--gold);

        color: var(--navy) !important;

        font-weight: 700;

        gap: 8px;

        border: none !important;
    }


    .car-hero-container {

        grid-template-columns: 1fr;

    }

    .car-hero-copy {

        text-align: center;

    }

    .hero-kicker {

        justify-content: center;
    }

    .hero-disclaimer {

        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {

        justify-content: center;
    }

    .car-hero-visual {

        height: 480px;
    }


    .drive-container,
    .process-heading {

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .vehicle-types {

        grid-template-columns: 1fr;
    }

    .vehicle-type {

        border-right: none;

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

    .vehicle-type:last-child {
        border-bottom: none;
    }


    .precision-features {

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

    .precision-feature:nth-child(2) {
        border-right: none;
    }

    .precision-feature:nth-child(3),
    .precision-feature:nth-child(4) {
        border-top: 1px solid var(--border);
    }


    .road {

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

        gap: 60px 35px;
    }

    .road-line {
        display: none;
    }


    .eligibility-wrap,
    .documents-inner,
    .faq-wrapper {

        grid-template-columns: 1fr;

        gap: 60px;
    }


    .footer-container {

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


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

@media(max-width:600px) {

    .navbar {
        height: 70px;
    }

    .nav-menu {
        top: 70px;
        left: 12px;
        right: 12px;
    }

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


    /* HERO */

    .car-hero-container {

        padding: 60px 20px 30px;

        min-height: auto;
    }

    .car-hero-copy h1 {

        font-size: 48px;

        letter-spacing: -2px;
    }

    .car-hero-copy>p {

        font-size: 13px;
    }

    .hero-actions {

        flex-direction: column;

        align-items: stretch;
    }

    .gold-btn,
    .line-btn {

        justify-content: center;
    }

    .car-hero-visual {

        height: 340px;

        transform: scale(.68);
    }

    .hero-bottom-strip {

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

        height: auto;
    }

    .hero-bottom-strip div {

        min-height: 55px;

        font-size: 9px;
    }


    /* DRIVE */

    .drive-section {

        padding: 80px 20px;
    }

    .drive-title h2 {

        font-size: 43px;
    }

    .vehicle-types {

        margin-top: 50px;
    }

    .vehicle-type {

        min-height: 250px;
    }


    /* PRECISION */

    .precision-section {

        padding: 80px 20px;
    }

    .precision-intro h2 {

        font-size: 43px;
    }

    .precision-features {

        grid-template-columns: 1fr;
    }

    .precision-feature {

        min-height: 250px;

        border-right: none !important;

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

    .precision-feature:last-child {

        border-bottom: none;
    }


    /* PROCESS */

    .process-section {

        padding: 80px 20px;
    }

    .process-heading h2 {

        font-size: 43px;
    }

    .road {

        grid-template-columns: 1fr;

        margin-top: 60px;

        gap: 45px;
    }

    .road-step {

        display: grid;

        grid-template-columns: 50px 1fr;

        gap: 20px;
    }

    .road-dot {

        margin: 0;
    }


    /* ELIGIBILITY */

    .eligibility-section {

        padding: 80px 20px;
    }

    .eligibility-title h2 {

        font-size: 43px;
    }

    .eligibility-row {

        grid-template-columns: 48px 1fr;

        gap: 15px;

        padding: 20px 0;
    }

    .eligibility-row p {

        grid-column: 2;
    }


    /* DOCUMENTS */

    .car-documents {

        padding: 80px 20px;
    }

    .documents-heading h2 {

        font-size: 43px;
    }

    .documents-grid {

        grid-template-columns: 1fr;
    }


    /* FAQ */

    .car-faq {

        padding: 80px 20px;
    }

    .faq-heading h2 {

        font-size: 43px;
    }


    /* CTA */

    .car-cta {

        min-height: 470px;
    }

    .cta-content h2 {

        font-size: 48px;

        letter-spacing: -2px;
    }

    .cta-buttons {

        flex-direction: column;

        align-items: stretch;
    }

    .cta-buttons a {

        justify-content: center;
    }


    /* FOOTER */

    .car-footer {

        padding: 60px 20px 25px;
    }

    .footer-container {

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .footer-bottom {

        flex-direction: column;

        margin-top: 45px;
    }
}