/* =========================================
CUSTOM FUEL HERO
========================================= */

.custom-fuel-hero {
    --hero-navy: #0A103A;
    --hero-gold: #DAA028;
    --hero-white: #FFFFFF;
    --hero-background-image: none;

    position: relative;
    min-height: 820px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background-color: var(--hero-navy);
    font-family: "Montserrat", sans-serif;
}


/* =========================================
BACKGROUND IMAGE
========================================= */

.custom-fuel-hero__background {
    position: absolute;
    inset: 0;
    z-index: -4;

    background-image: var(--hero-background-image);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    transform: scale(1.01);
}


/* =========================================
NAVY GRADIENT OVERLAY
========================================= */

.custom-fuel-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -3;

    background:
        linear-gradient(
            90deg,
            rgba(10, 16, 58, 0.98) 0%,
            rgba(10, 16, 58, 0.94) 25%,
            rgba(10, 16, 58, 0.82) 45%,
            rgba(10, 16, 58, 0.40) 68%,
            rgba(10, 16, 58, 0.10) 100%
        ),
        linear-gradient(
            0deg,
            rgba(10, 16, 58, 0.20) 0%,
            rgba(10, 16, 58, 0.04) 50%,
            rgba(10, 16, 58, 0.18) 100%
        );
}


/* =========================================
DIAGONAL GOLD ACCENT
========================================= */

.custom-fuel-hero__gold-accent {
    position: absolute;
    top: -20%;
    left: 56%;
    z-index: -2;

    width: 4px;
    height: 145%;

    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(218, 160, 40, 0.10) 15%,
        rgba(218, 160, 40, 0.85) 48%,
        rgba(218, 160, 40, 0.15) 80%,
        transparent 100%
    );

    transform: rotate(12deg);
    transform-origin: center;
    opacity: 0.9;
}


/* =========================================
CONTAINER
========================================= */

.custom-fuel-hero__container {
    position: relative;
    width: min(100% - 40px, 1280px);
    min-height: 720px;

    margin-inline: auto;
    padding: 115px 0 105px;

    display: flex;
    align-items: center;
}


/* =========================================
CONTENT
========================================= */

.custom-fuel-hero__content {
    position: relative;
    z-index: 2;

    width: min(100%, 660px);
}


/* =========================================
EYEBROW
========================================= */

.custom-fuel-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;

    margin: 0 0 22px;

    color: var(--hero-gold);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4em;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.custom-fuel-hero__eyebrow-line {
    width: 38px;
    height: 2px;
    flex: 0 0 38px;

    background-color: var(--hero-gold);
}


/* =========================================
HEADING
========================================= */

.custom-fuel-hero__heading {
    max-width: 650px;

    margin: 0 0 24px;
    padding: 0;

    color: var(--hero-white);
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2em;
    letter-spacing: -1.2px;
}


/* Optional highlighted words inside heading */

.custom-fuel-hero__heading strong,
.custom-fuel-hero__heading em {
    color: var(--hero-gold);
    font-style: normal;
    font-weight: 800;
}


/* =========================================
DESCRIPTION
========================================= */

.custom-fuel-hero__description {
    max-width: 590px;

    margin: 0 0 34px;
    padding: 0;

    color: rgba(255, 255, 255, 0.82);
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
}


/* =========================================
BUTTON AREA
========================================= */

.custom-fuel-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 27px;

    margin-bottom: 36px;
}


/* =========================================
PRIMARY BUTTON
========================================= */

.custom-fuel-hero__primary-button {
    position: relative;

    min-height: 58px;
    padding: 7px 7px 7px 25px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;

    overflow: hidden;

    background-color: var(--hero-gold);
    border: 1px solid var(--hero-gold);
    border-radius: 7px;

    color: var(--hero-navy);
    text-decoration: none;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.custom-fuel-hero__primary-text {
    position: relative;
    z-index: 2;

    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3em;
    letter-spacing: 0.25px;
    text-transform: uppercase;
}

.custom-fuel-hero__primary-icon {
    position: relative;
    z-index: 2;

    width: 44px;
    height: 44px;
    flex: 0 0 44px;

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

    border-radius: 5px;
    background-color: var(--hero-navy);
    color: var(--hero-white);

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.custom-fuel-hero__primary-button:hover,
.custom-fuel-hero__primary-button:focus {
    background-color: var(--hero-navy);
    border-color: var(--hero-gold);
    color: var(--hero-white);

    transform: translateY(-3px);

    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.custom-fuel-hero__primary-button:hover
.custom-fuel-hero__primary-icon,
.custom-fuel-hero__primary-button:focus
.custom-fuel-hero__primary-icon {
    background-color: var(--hero-gold);
    color: var(--hero-navy);
    transform: translateX(2px);
}


/* =========================================
SECONDARY TEXT LINK
========================================= */

.custom-fuel-hero__secondary-link {
    position: relative;

    padding: 8px 0 10px;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--hero-white);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4em;
    text-decoration: none;
}

.custom-fuel-hero__secondary-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 2px;

    width: 42%;
    height: 2px;

    background-color: var(--hero-gold);

    transition: width 0.3s ease;
}

.custom-fuel-hero__secondary-link svg {
    color: var(--hero-gold);
    transition: transform 0.3s ease;
}

.custom-fuel-hero__secondary-link:hover,
.custom-fuel-hero__secondary-link:focus {
    color: var(--hero-white);
}

.custom-fuel-hero__secondary-link:hover::after,
.custom-fuel-hero__secondary-link:focus::after {
    width: 100%;
}

.custom-fuel-hero__secondary-link:hover svg,
.custom-fuel-hero__secondary-link:focus svg {
    transform: translateX(4px);
}


/* =========================================
TRUST POINTS
========================================= */

.custom-fuel-hero__trust-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px 24px;
}

.custom-fuel-hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: rgba(255, 255, 255, 0.82);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4em;
}

.custom-fuel-hero__check {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;

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

    border: 1px solid rgba(218, 160, 40, 0.75);
    border-radius: 50%;

    color: var(--hero-gold);
    background-color: rgba(218, 160, 40, 0.08);
}


/* =========================================
FLOATING STAT CARD
========================================= */

.custom-fuel-hero__stat-card {
    position: absolute;
    right: 0;
    bottom: 50px;

    min-width: 205px;
    padding: 18px 21px;

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

    background-color: rgba(10, 16, 58, 0.93);
    border: 1px solid rgba(218, 160, 40, 0.55);
    border-radius: 9px;

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);

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

.custom-fuel-hero__stat-card::before {
    content: "";

    position: absolute;
    top: -1px;
    left: 22px;

    width: 55px;
    height: 3px;

    background-color: var(--hero-gold);
}

.custom-fuel-hero__stat-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;

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

    background-color: var(--hero-gold);
    border-radius: 7px;

    color: var(--hero-navy);
}

.custom-fuel-hero__stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.custom-fuel-hero__stat-content strong {
    color: var(--hero-white);
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1em;
}

.custom-fuel-hero__stat-content span {
    color: rgba(255, 255, 255, 0.75);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4em;
}


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

@media screen and (max-width: 1024px) {

    .custom-fuel-hero {
        min-height: 670px;
    }

    .custom-fuel-hero__container {
        width: min(100% - 50px, 1280px);
        min-height: 670px;
        padding: 100px 0 120px;
    }

    .custom-fuel-hero__content {
        width: min(100%, 610px);
    }

    .custom-fuel-hero__heading {
        font-size: 40px;
        letter-spacing: -0.8px;
    }

    .custom-fuel-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(10, 16, 58, 0.98) 0%,
                rgba(10, 16, 58, 0.92) 42%,
                rgba(10, 16, 58, 0.60) 72%,
                rgba(10, 16, 58, 0.25) 100%
            );
    }

    .custom-fuel-hero__gold-accent {
        left: 67%;
    }

    .custom-fuel-hero__stat-card {
        right: 0;
        bottom: 35px;
    }
}


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

@media screen and (max-width: 767px) {

    .custom-fuel-hero {
        min-height: auto;
    }

    .custom-fuel-hero__background {
        background-position: 62% center;
    }

    .custom-fuel-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(10, 16, 58, 0.96) 0%,
                rgba(10, 16, 58, 0.88) 100%
            ),
            linear-gradient(
                0deg,
                rgba(10, 16, 58, 0.35) 0%,
                rgba(10, 16, 58, 0.05) 100%
            );
    }

    .custom-fuel-hero__gold-accent {
        top: auto;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 3px;

        transform: none;

        background: linear-gradient(
            90deg,
            var(--hero-gold) 0%,
            rgba(218, 160, 40, 0.15) 75%,
            transparent 100%
        );
    }

    .custom-fuel-hero__container {
        width: min(100% - 36px, 1280px);
        min-height: auto;

        padding: 85px 0 38px;

        display: block;
    }

    .custom-fuel-hero__content {
        width: 100%;
    }

    .custom-fuel-hero__eyebrow {
        margin-bottom: 17px;

        font-size: 11px;
        letter-spacing: 1.2px;
    }

    .custom-fuel-hero__eyebrow-line {
        width: 29px;
        flex-basis: 29px;
    }

    .custom-fuel-hero__heading {
        margin-bottom: 20px;

        font-size: 34px;
        line-height: 1.2em;
        letter-spacing: -0.6px;
    }

    .custom-fuel-hero__description {
        margin-bottom: 28px;

        font-size: 15px;
        line-height: 1.65em;
    }

    .custom-fuel-hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;

        margin-bottom: 29px;
    }

    .custom-fuel-hero__primary-button {
        width: 100%;
        max-width: 310px;
    }

    .custom-fuel-hero__trust-list {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .custom-fuel-hero__stat-card {
        position: relative;
        right: auto;
        bottom: auto;

        width: 100%;
        max-width: 310px;

        margin-top: 33px;
    }
}


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

@media screen and (max-width: 420px) {

    .custom-fuel-hero__container {
        width: min(100% - 28px, 1280px);
        padding-top: 72px;
    }

    .custom-fuel-hero__heading {
        font-size: 31px;
    }

    .custom-fuel-hero__primary-button {
        max-width: 100%;
    }

    .custom-fuel-hero__stat-card {
        max-width: 100%;
    }
}