/*----------------------------------------------------------------------
!!!!!!!!!!!!!!!!!!!!! NOTE TO FUTURE DESIGNERS !!!!!!!!!!!!!!!!!!!!!!!!!

This template uses grids instead of row-col for responsiveness. If you are having trouble or have questions please reach out to another team member or lead.
A lot of work was put into this to organize the code and make it work with our builder. Would hate to see this turn into a frankenstein site. Thank you.

If creating custom sections feel free to base off of one already on the site and use the classes already in the css, most of them are pretty universal.

*/

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600&display=swap");

:root {
    /* Brand Colors */
    --nlas-black: #0D0D0D;
    --nlas-charcoal: #2A2A2A;
    --nlas-red: #E10600;
    --nlas-red-dark: #B80500;
    --nlas-gold: #C5A46D;
    --nlas-white: #FFFFFF;
    --nlas-off-white: #F5F5F5;
    --nlas-gray-light: #E8E8E8;
    --nlas-gray-mid: #999999;
    --nlas-gray-dark: #555555;

    /* Typography */
    --font-display: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Spacing */
    --section-pad: 80px;
    --container-w: 1240px;

    /* Transitions */
    --ease: 0.25s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--nlas-black);
    background: var(--nlas-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    list-style: none;
}

/* ─────────────────────────────────────────
 3. UTILITY BAR
 ───────────────────────────────────────── */
.nlas-utility-bar {
    background: var(--nlas-black);
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 9px 0;
    position: relative;
    z-index: 200;
}

.nlas-utility-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.nlas-utility-bar__left,
.nlas-utility-bar__right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nlas-utility-bar a {
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--ease);
}

.nlas-utility-bar a:hover {
    color: var(--nlas-red);
}

.nlas-utility-bar__item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nlas-utility-bar__item svg {
    opacity: 0.6;
    flex-shrink: 0;
}

/* Spanish language badge */
.nlas-espanol-badge {
    background: var(--nlas-gold);
    color: var(--nlas-black);
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 2px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
}

/* Quick finance link */
.nlas-utility-bar__finance-link {
    color: var(--nlas-red) !important;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nlas-utility-bar__finance-link:hover {
    color: #FF4444 !important;
}

.header-logo {
    display: none
}

.header-info {
    display: none
}

.navbar .container {
    padding-top: 10px;
    padding-bottom: 10px
}

.header .navbar .dropdown-menu {
    min-width: 200px;
    width: auto;
    padding: 1em;
    background: var(--color-theme-background)
}

.header .navbar .dropdown-menu .dropdown-item {
    color: var(--color-theme-text)
}

.navbar-shadow {
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .02), 0 2px 2px rgba(0, 0, 0, .03), 0 4px 4px rgba(0, 0, 0, .04), 0 8px 8px rgba(0, 0, 0, .05), 0 16px 16px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .02), 0 2px 2px rgba(0, 0, 0, .03), 0 4px 4px rgba(0, 0, 0, .04), 0 8px 8px rgba(0, 0, 0, .05), 0 16px 16px rgba(0, 0, 0, .05)
}

.header .navbar .active>.nav-link,
.header .navbar .dropdown-item.active,
.header .navbar .dropdown-item:active,
.header .navbar .show>.nav-link {
    background-color: transparent !important
}

@media(min-width: 992px) {
    .navbar-collapse {
        -webkit-box-flex: initial;
        -ms-flex-positive: initial;
        flex-grow: initial
    }

    .navbar .container {
        padding-top: 15px;
        padding-bottom: 15px
    }

    .header .nav-link-cart,
    .header .navbar .nav-link {
        line-height: 20px;
        font-size: 14px
    }

    .header .navbar {
        padding-top: 5px
    }
}

@media(min-width: 1200px) {
    .header li.nav-item {
        margin-right: 25px
    }

    .header li.nav-item:last-of-type {
        margin-right: 0
    }
}

@media(max-width: 991px) {
    .navbar .container {
        text-align: center;
        max-width: 100%
    }
}

@media(min-width: 992px) {
    .header .navbar .navbar-nav .nav-link {
        padding-right: 0;
        padding-left: 0;
        margin-right: 10px;
        margin-left: 10px
    }
}

@media(min-width: 1200px) {
    .header .navbar .navbar-nav .nav-link {
        padding-right: 0;
        padding-left: 0;
        margin-right: 0;
        margin-left: 0
    }
}

/* ─────────────────────────────────────────
 2. UTILITY CLASSES
 ───────────────────────────────────────── */

.nlas-container {
    width: 100%;
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* Primary red button */
.nlas-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--nlas-red);
    color: var(--nlas-white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 32px;
    border: 2px solid var(--nlas-red);
    border-radius: 3px;
    cursor: pointer;
    transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}

.nlas-btn-primary:hover {
    background: var(--nlas-red-dark);
    border-color: var(--nlas-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(225, 6, 0, 0.35);
    color: #000;
}

/* Full-width button modifier - for use inside cards, narrow containers */
.nlas-btn-primary--full {
    width: 100%;
    justify-content: center;
}

/* Ghost / outline button */
.nlas-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--nlas-white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 30px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 3px;
    cursor: pointer;
    transition: background var(--ease), border-color var(--ease), transform var(--ease);
}

.nlas-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--nlas-white);
    transform: translateY(-2px);
    color: var(--nlas-gray-light);
}

/* Dark ghost for light backgrounds */
.nlas-btn-ghost-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--nlas-black);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 30px;
    border: 2px solid var(--nlas-charcoal);
    border-radius: 3px;
    cursor: pointer;
    transition: background var(--ease), color var(--ease), transform var(--ease);
}

.nlas-btn-ghost-dark:hover {
    background: var(--nlas-black);
    color: var(--nlas-white);
    transform: translateY(-2px);
}

.nlas-section-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--nlas-red);
    display: block;
    margin-bottom: 12px;
}

.nlas-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--nlas-black);
}

.nlas-section-title--white {
    color: var(--nlas-white);
}

.nlas-section-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--nlas-gray-dark);
    max-width: 560px;
}

.nlas-section-body--white {
    color: rgba(255, 255, 255, 0.8);
}

.nlas-divider {
    width: 48px;
    height: 3px;
    background: var(--nlas-red);
    margin: 20px 0;
}



/* ───────────────────────────────────────────────────────
 SECTION 03: Hero Section + Trust Bar
 ─────────────────────────────────────────────────────── */


/* ─────────────────────────────────────────
 5. HERO SECTION
 ───────────────────────────────────────── */

.nlas-hero {
    position: relative;
    overflow: hidden;
}

/* Carousel slides */
.nlas-hero__slides {
    position: absolute;
    inset: 0;
}

.nlas-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

/* Ken Burns: applied via JS-added .is-animated class so animation restarts on each slide entry */
.nlas-hero__slide.is-animated {
    animation: nlas-ken-burns 8s ease-out forwards;
}

.nlas-hero__slide.is-active {
    opacity: 1;
}

/* Gradient overlay - two layers:
 Base layer (0.50 uniform) ensures text is always readable regardless of image content.
 Directional layer adds extra depth on the left where content lives.
 Minimum effective opacity across the full overlay is never below ~0.50. */
.nlas-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg,
            rgba(13, 13, 13, 0.60) 0%,
            rgba(13, 13, 13, 0.30) 55%,
            rgba(13, 13, 13, 0.05) 100%),
        rgba(13, 13, 13, 0.50);
    z-index: 1;
}

/* Hero content */
.nlas-hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.nlas-hero__inner {
    max-width: 700px;
    padding: 60px 0;
}

.nlas-hero__eyebrow {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    /* White text passes WCAG AA at this size; red accent is decorative only via the left line */
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(12px);
    animation: nlas-fade-up 0.7s ease 0.3s forwards;
}

.nlas-hero__eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--nlas-red);
    flex-shrink: 0;
}

.nlas-hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4.4rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--nlas-white);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    /* text-shadow: fallback contrast insurance against any hero image */
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(16px);
    animation: nlas-fade-up 0.7s ease 0.5s forwards;
}

.nlas-hero__headline em {
    font-style: normal;
    color: var(--nlas-red);
}

.nlas-hero__sub {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 36px;
    max-width: 560px;
    opacity: 0;
    transform: translateY(16px);
    animation: nlas-fade-up 0.7s ease 0.7s forwards;
}

.nlas-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(16px);
    animation: nlas-fade-up 0.7s ease 0.9s forwards;
}

/* Trust bullets below hero CTAs */
.nlas-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    opacity: 0;
    animation: nlas-fade-in 0.7s ease 1.2s forwards;
}

.nlas-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.90);
}

.nlas-hero__trust-item svg {
    color: var(--nlas-red);
    flex-shrink: 0;
}

/* Carousel dots */
.nlas-hero__dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.nlas-hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: background var(--ease), transform var(--ease);
    padding: 0;
}

.nlas-hero__dot.is-active {
    background: var(--nlas-red);
    transform: scale(1.3);
}


/* ─────────────────────────────────────────
 6. TRUST BADGE BAR
 ───────────────────────────────────────── */

.nlas-trust-bar {
    background: var(--nlas-charcoal);
    padding: 20px 0;
}

.nlas-trust-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 16px;
    flex-wrap: wrap;
}

.nlas-trust-bar__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
}

.nlas-trust-bar__icon {
    color: var(--nlas-red);
    flex-shrink: 0;
}

.nlas-trust-bar__label {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.nlas-trust-bar__divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
    display: none;
}



/* MD: 992px & Up */
@media (min-width: 992px) {
    .nlas-trust-bar__divider {
        display: block;
    }
}



/* ───────────────────────────────────────────────────────
 SECTION 04: Inventory Search Panel
 ─────────────────────────────────────────────────────── */


.nlas-search-section {
    background: var(--nlas-off-white);
    padding: 56px 0 20px 0;
}

.inventory-search-module {
    background: var(--nlas-off-white);
    margin: 0 !important;
    padding-bottom: 70px;
    border-bottom: 1px solid var(--nlas-gray-light);
}

.nlas-search-section__header {
    text-align: center;
    margin-bottom: 32px;
}

.inventory-search-module .form__wrapper {
    background-color: var(--nlas-white) !important;
    border-radius: 6px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
    padding: 32px;
    border: none !important;
}

.inventory-search-module label {
    font-family: var(--font-display);
    font-size: 0.7rem !important;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--nlas-gray-mid);
}

.inventory-search-module .form-select,
.nlas-search-field input {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--nlas-black);
    border: 1px solid var(--nlas-gray-light);
    border-radius: 4px;
    padding: 12px 14px;
    background: var(--nlas-white);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    transition: border-color var(--ease), box-shadow var(--ease);
    cursor: pointer;
}

.inventory-search-module .form-select:focus,
.nlas-search-field input:focus {
    outline: none;
    border-color: var(--nlas-red);
    box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.1);
}

.inventory-search-module .btn50 {
    background: var(--nlas-red);
    color: var(--nlas-white);
    border: none;
    border-radius: 4px;
    padding: 13px 28px;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    transition: background var(--ease), transform var(--ease);
}

.inventory-search-module .btn50:hover {
    background: var(--nlas-red-dark);
    transform: translateY(-1px);
}

/* COMMENT: This panel links to Cars for Sale inventory search.
 Update the action/href values with the platform's search URL params. */


/* ───────────────────────────────────────────────────────
 SECTION 05: Featured Inventory Cards
 ─────────────────────────────────────────────────────── */



.nlas-inventory-section-top {
    padding-top: var(--section-pad);
    background: var(--nlas-white);
}


.nlas-inventory-section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.inventoryslideshow .inventoryslideshow-title-heading {
    display: none;
}


.inventoryslideshow {
    padding: 0;
}




/* ───────────────────────────────────────────────────────
 SECTION 06: Value Proposition
 ─────────────────────────────────────────────────────── */

.nlas-value-section {
    padding: var(--section-pad) 0;
    background: var(--nlas-off-white);
}

.nlas-value-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
}

/* MD: 992px & Up */
@media (min-width: 992px) {
    .nlas-value-section__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.nlas-value-section__img-outer {
    /* Outer wrapper: relative + padding creates space for the accent block to hang out */
    position: relative;
    padding-bottom: 24px;
    padding-right: 24px;
}

.nlas-value-section__img-wrap {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--nlas-gray-light);
}

.nlas-value-section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Red accent block - positioned on outer wrapper so it's NOT clipped by overflow:hidden */
.nlas-value-section__img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--nlas-red);
    border-radius: 4px;
    z-index: -1;
}

.nlas-value-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 0;
}

.nlas-value-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.nlas-value-item__icon {
    width: 36px;
    height: 36px;
    background: rgba(225, 6, 0, 0.08);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--nlas-red);
    margin-top: 2px;
}

.nlas-value-item__text strong {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.nlas-value-item__text p {
    font-size: 0.88rem;
    color: var(--nlas-gray-dark);
    line-height: 1.6;
}


/* ───────────────────────────────────────────────────────
 SECTION 07: Financing Process (3 Steps)
 ─────────────────────────────────────────────────────── */


/* ─────────────────────────────────────────
 10. FINANCING PROCESS SECTION
 ───────────────────────────────────────── */

.nlas-finance-section {
    padding: var(--section-pad) 0;
    background: var(--nlas-black);
}

.nlas-finance-section__header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.nlas-finance-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
    margin-bottom: 56px;
}


/* XS: 440px & Up */
@media (min-width: 440px) {}

/* SM: 768px & Up */
@media (min-width: 768px) {}

/* MD: 992px & Up */
@media (min-width: 992px) {
    .nlas-finance-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Connecting line between steps */
    .nlas-finance-steps::before {
        content: '';
        position: absolute;
        top: 44px;
        left: calc(16.66% + 20px);
        right: calc(16.66% + 20px);
        height: 1px;
        background: linear-gradient(90deg, var(--nlas-red), rgba(225, 6, 0, 0.3), var(--nlas-red));
        z-index: 0;
    }
}

/* LG: 1200px & Up */
@media (min-width: 1200px) {}

/* XLG: 1400px & Up */
@media (min-width: 1400px) {}




.nlas-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.nlas-step__number {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: var(--nlas-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    transition: border-color var(--ease), background var(--ease);
}

.nlas-step:hover .nlas-step__number {
    border-color: var(--nlas-red);
    background: rgba(225, 6, 0, 0.1);
}

.nlas-step__num-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--nlas-red);
    line-height: 1;
}

.nlas-step__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--nlas-white);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.nlas-step__body {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 260px;
    margin: 0 auto;
}

.nlas-finance-section__cta {
    text-align: center;
}

.nlas-finance-section__note {
    margin-top: 16px;
    font-size: 0.82rem;
    /* Raised from 0.40 - this is a critical trust/objection-handling line, not a disclaimer */
    color: rgba(255, 255, 255, 0.70);
    font-family: var(--font-display);
    letter-spacing: 0.04em;
}


/* ───────────────────────────────────────────────────────
 SECTION 08: Testimonials
 ─────────────────────────────────────────────────────── */


/* ─────────────────────────────────────────
 11. TESTIMONIALS SECTION
 ───────────────────────────────────────── */

.nlas-testimonials-section {
    padding: var(--section-pad) 0;
    background: var(--nlas-white);
}

.nlas-testimonials-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.nlas-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* MD: 992px & Up */
@media (min-width: 992px) {
    .nlas-testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nlas-testimonial-card {
    background: var(--nlas-off-white);
    border-radius: 6px;
    padding: 28px;
    border-left: 4px solid var(--nlas-red);
    transition: transform var(--ease), box-shadow var(--ease);
}

.nlas-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.nlas-testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: var(--nlas-gold);
    font-size: 0.6rem;
}

.nlas-testimonial-card__quote {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--nlas-charcoal);
    margin-bottom: 20px;
    font-style: italic;
}

.nlas-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nlas-testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--nlas-gray-light);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--nlas-gray-dark);
}

.nlas-testimonial-card__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--nlas-black);
}

.nlas-testimonial-card__meta {
    font-size: 0.75rem;
    color: var(--nlas-gray-mid);
    margin-top: 2px;
}

/* Google review badge */
.nlas-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--nlas-off-white);
    border: 1px solid var(--nlas-gray-light);
    padding: 10px 18px;
    border-radius: 4px;
    margin-top: 48px;
}

.nlas-testimonials-section__cta {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.nlas-google-badge__rating {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--nlas-black);
}

.nlas-google-badge__label {
    font-size: 0.78rem;
    color: var(--nlas-gray-dark);
}

.nlas-google-badge__stars {
    color: var(--nlas-gold);
    font-size: 0.52rem;
}


/* ───────────────────────────────────────────────────────
 SECTION 09: Local Community
 ─────────────────────────────────────────────────────── */


/* ─────────────────────────────────────────
 12. LOCAL / COMMUNITY SECTION
 ───────────────────────────────────────── */

.nlas-local-section {
    padding: var(--section-pad) 0;
    background: var(--nlas-off-white);
}

.nlas-local-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

/* MD: 992px & Up */
@media (min-width: 992px) {
    .nlas-local-section__grid {
        grid-template-columns: 1fr 1fr;
    }
}


.nlas-local-section__img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.nlas-local-section__img-item {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--nlas-gray-light);
}

.nlas-local-section__img-item:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16/8;
}

.nlas-local-section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nlas-local-section__img-item:hover .nlas-local-section__img {
    transform: scale(1.04);
}

.nlas-local-stat-row {
    display: flex;
    gap: 32px;
    margin: 28px 0;
    flex-wrap: wrap;
}

.nlas-local-stat {
    text-align: left;
}

.nlas-local-stat__num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--nlas-red);
    line-height: 1;
}

.nlas-local-stat__label {
    font-size: 0.8rem;
    color: var(--nlas-gray-dark);
    font-family: var(--font-display);
    font-weight: 500;
    margin-top: 4px;
    letter-spacing: 0.04em;
}


/* ───────────────────────────────────────────────────────
 SECTION 10: Final CTA
 ─────────────────────────────────────────────────────── */


/* ─────────────────────────────────────────
 13. FINAL CTA SECTION
 ───────────────────────────────────────── */

.nlas-final-cta {
    padding: 96px 0;
    background: var(--nlas-charcoal);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Subtle noise texture */
.nlas-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(225, 6, 0, 0.1) 0%, transparent 55%),
        radial-gradient(circle at 80% 50%, rgba(225, 6, 0, 0.06) 0%, transparent 55%);
    pointer-events: none;
}

.nlas-final-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.nlas-final-cta__headline {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--nlas-white);
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.nlas-final-cta__headline em {
    color: var(--nlas-red);
    font-style: normal;
}

.nlas-final-cta__sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 40px;
}

.nlas-final-cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.nlas-final-cta__disclaimer {
    margin-top: 24px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    font-family: var(--font-display);
    letter-spacing: 0.05em;
}


/* ───────────────────────────────────────────────────────
 SECTION 12: Sticky Mobile CTA Bar
 ─────────────────────────────────────────────────────── */


/* ─────────────────────────────────────────
 STICKY MOBILE CTA BAR
 Appears after hero scrolls out of view.
 Mobile only - hidden on desktop.
 ─────────────────────────────────────────── */

.nlas-sticky-cta {
    display: none;
    /* Hidden on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: var(--nlas-black);
    border-top: 2px solid var(--nlas-red);
    padding: 12px 20px;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    transform: translateY(100%);
    transition: transform 0.35s ease;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}

.nlas-sticky-cta.is-visible {
    transform: translateY(0);
}

.nlas-sticky-cta__phone {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.04em;
}

.nlas-sticky-cta__phone a {
    color: var(--nlas-white);
}

.nlas-sticky-cta__btn {
    background: var(--nlas-red);
    color: var(--nlas-white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 3px;
    transition: background var(--ease);
    flex-shrink: 0;
}

.nlas-sticky-cta__btn:hover {
    background: var(--nlas-red-dark);
}

@media (max-width: 768px) {
    .nlas-sticky-cta {
        display: flex;
    }

    /* Add bottom padding so page content isn't hidden behind bar */
    .nlas-footer {
        padding-bottom: 72px;
    }
}


/* ───────────────────────────────────────────────────────
 ANIMATIONS + RESPONSIVE
 ─────────────────────────────────────────────────────── */


/* ─────────────────────────────────────────
 15. ANIMATIONS
 ───────────────────────────────────────── */

@keyframes nlas-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nlas-fade-in {
    to {
        opacity: 1;
    }
}

@keyframes nlas-ken-burns {
    from {
        transform: scale(1.06);
    }

    to {
        transform: scale(1.00);
    }
}

/* Scroll reveal utility */
.nlas-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.nlas-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.nlas-reveal--delay-1 {
    transition-delay: 0.1s;
}

.nlas-reveal--delay-2 {
    transition-delay: 0.2s;
}

.nlas-reveal--delay-3 {
    transition-delay: 0.3s;
}

/* Accessibility: respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .nlas-hero__slide {
        animation: none;
        transition: opacity 0.3s ease;
    }

    .nlas-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .nlas-hero__headline,
    .nlas-hero__eyebrow,
    .nlas-hero__sub,
    .nlas-hero__actions,
    .nlas-hero__trust {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 480px) {
    .nlas-hero__inner {
        padding: 26px 0 50px 0;
        /* Reduced from 60px - prevents overflow on short mobile screens */
    }

    .nlas-hero__trust {
        flex-direction: column;
        gap: 10px;
    }

    .nlas-local-section__img-grid {
        grid-template-columns: 1fr;
    }

    .nlas-local-section__img-item:first-child {
        grid-column: 1;
    }
}

/* ─────────────────────────────────────────
   14. FOOTER
   ───────────────────────────────────────── */

.nlas-footer {
    background: var(--nlas-black);
    color: rgba(255, 255, 255, 0.65);
    padding-top: 64px;
    padding-bottom: 0;
}

.nlas-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* SM: 768px & Up */
@media (min-width: 768px) {
    .nlas-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* MD: 992px & Up */
@media (min-width: 992px) {
    .nlas-footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}


.nlas-footer__brand-name {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--nlas-white);
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

.nlas-footer__brand-sub {
    font-size: 0.75rem;
    color: var(--nlas-red);
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.nlas-footer__brand-desc {
    font-size: 0.87rem;
    line-height: 1.75;
    max-width: 300px;
    margin-bottom: 24px;
}

.nlas-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.nlas-footer__social-link {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: background var(--ease), color var(--ease);
}

.nlas-footer__social-link:hover {
    background: var(--nlas-red);
    color: var(--nlas-white);
}

/* YouTube play triangle flips to white on hover */
.nlas-footer__social-link:hover polygon {
    fill: var(--nlas-white);
}

.nlas-footer__col-title {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--nlas-white);
    margin-bottom: 20px;
}

.nlas-footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
}

.nlas-footer__link {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--ease);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nlas-footer__link:hover {
    color: var(--nlas-white);
}

.nlas-footer__link--highlight {
    color: var(--nlas-red);
}

.nlas-footer__link--highlight:hover {
    color: #FF4444;
}

.nlas-footer__hours-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.84rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nlas-footer__hours-item:last-child {
    border-bottom: none;
}

.nlas-footer__hours-day {
    color: rgba(255, 255, 255, 0.5);
}

.nlas-footer__hours-time {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-family: var(--font-display);
    font-size: 0.8rem;
}

.nlas-footer__contact-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.nlas-footer__contact-icon {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--nlas-red);
}

.nlas-footer__contact-text {
    font-size: 0.87rem;
    line-height: 1.55;
}

.nlas-footer__contact-text a {
    color: inherit;
    transition: color var(--ease);
}

.nlas-footer__contact-text a:hover {
    color: var(--nlas-white);
}

.nlas-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 16px;
    flex-wrap: wrap;
}

.nlas-footer__copyright {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}

.nlas-footer__bottom-links {
    display: flex;
    gap: 20px;
}

.nlas-footer__bottom-link {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    transition: color var(--ease);
}

.nlas-footer__bottom-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Default footer modificationss, hides default footer */
.footer {
    padding-top: 0
}

footer>.container {
    display: none
}

/* ── Page Hero ─────────────────────────────────────────── */
.story-hero {
    background: var(--nlas-black);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.story-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 50%, rgba(225, 6, 0, 0.08) 0%, transparent 55%);
    pointer-events: none;
}

.story-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.story-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: var(--nlas-white);
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.story-hero__title em {
    color: var(--nlas-red);
    font-style: normal;
}

.story-hero__sub {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
}

.story-hero__img-wrap {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--nlas-gray-light);
}

.story-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Our Story Section ─────────────────────────────────── */
.story-about {
    padding: var(--section-pad) 0;
    background: var(--nlas-white);
}

.story-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-about__img-wrap {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--nlas-gray-light);
}

.story-about__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-about__accent {
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 80px;
    height: 80px;
    background: var(--nlas-red);
    border-radius: 4px;
    z-index: -1;
}

.story-about__img-outer {
    position: relative;
    padding-bottom: 20px;
    padding-left: 20px;
}

.story-about__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.story-about__body {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--nlas-gray-dark);
}

.story-about__body p+p {
    margin-top: 16px;
}

/* ── LIGHT Values ──────────────────────────────────────── */
.story-values {
    padding: var(--section-pad) 0;
    background: var(--nlas-off-white);
}

.story-values__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.story-values__header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
}

.story-values__header p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--nlas-gray-dark);
    margin-top: 16px;
}

.story-values__header h2 span {
    color: var(--nlas-red);
}

.light-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.light-card {
    background: var(--nlas-white);
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    border-bottom: 4px solid transparent;
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.light-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--nlas-red);
}

.light-card__letter {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--nlas-red);
    line-height: 1;
    margin-bottom: 8px;
}

.light-card__word {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--nlas-charcoal);
    margin-bottom: 14px;
}

.light-card__body {
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--nlas-gray-dark);
}

/* ── Meet the Team ─────────────────────────────────────── */
.story-team {
    padding: var(--section-pad) 0;
    background: var(--nlas-white);
}

.story-team__header {
    text-align: center;
    margin-bottom: 56px;
}

.story-team__header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
}

.team-card {
    background: var(--nlas-off-white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--ease), box-shadow var(--ease);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.team-card__img-wrap {
    aspect-ratio: 4/3;
    background: var(--nlas-gray-light);
    overflow: hidden;
}

.team-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card__img {
    transform: scale(1.04);
}

.team-card__body {
    padding: 28px;
}

.team-card__name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--nlas-black);
    margin-bottom: 4px;
}

.team-card__role {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--nlas-red);
    margin-bottom: 16px;
}

.team-card__bio {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--nlas-gray-dark);
    margin-bottom: 20px;
}

.team-card__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.team-card__contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--nlas-charcoal);
    transition: color var(--ease);
}

.team-card__contact-item:hover {
    color: var(--nlas-red);
}

.team-card__contact-item svg {
    color: var(--nlas-red);
    flex-shrink: 0;
}

/* ── Final CTA ─────────────────────────────────────────── */
.story-cta {
    padding: 80px 0;
    background: var(--nlas-charcoal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.story-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(225, 6, 0, 0.08) 0%, transparent 55%);
    pointer-events: none;
}

.story-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.story-cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--nlas-white);
    line-height: 1.1;
    margin-bottom: 16px;
}

.story-cta__title em {
    color: var(--nlas-red);
    font-style: normal;
}

.story-cta__sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 32px;
}

.story-cta__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .light-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 56px;
    }

    .story-hero {
        padding: 72px 0 56px;
    }

    .story-hero__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .story-about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .light-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .story-cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .story-cta__actions .nlas-btn-primary,
    .story-cta__actions .nlas-btn-ghost {
        width: 100%;
        justify-content: center;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .light-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Page Hero (Inventory) ─────────────────────────────── */
.inv-hero {
    background: var(--nlas-black);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inv-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(225, 6, 0, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(225, 6, 0, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.inv-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.inv-hero__label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--nlas-red);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.inv-hero__label::before,
.inv-hero__label::after {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--nlas-red);
}

.inv-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: var(--nlas-white);
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.inv-hero__title em {
    color: var(--nlas-red);
    font-style: normal;
}

.inv-hero__sub {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.inv-hero__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── Inventory CTA Banner ──────────────────────────────── */
.inv-cta-banner {
    background: var(--nlas-red);
    padding: 20px 0;
    text-align: center;
}

.inv-cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.inv-cta-banner__text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--nlas-white);
    letter-spacing: 0.04em;
}

.inv-cta-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--nlas-white);
    color: var(--nlas-black);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 3px;
    transition: background var(--ease), transform var(--ease);
}

.inv-cta-banner__btn:hover {
    background: var(--nlas-off-white);
    transform: translateY(-2px);
}

/* ── Why Our Inventory Section ─────────────────────────── */
.inv-why {
    padding: var(--section-pad) 0;
    background: var(--nlas-white);
}

.inv-why__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.inv-why__header p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--nlas-gray-dark);
    margin-top: 16px;
}

.inv-process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.inv-process-card {
    background: var(--nlas-off-white);
    border-radius: 8px;
    padding: 36px;
    border-top: 4px solid var(--nlas-red);
    transition: transform var(--ease), box-shadow var(--ease);
}

.inv-process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.inv-process-card__num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 900;
    color: rgba(225, 6, 0, 0.12);
    line-height: 1;
    margin-bottom: 12px;
}

.inv-process-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--nlas-black);
    margin-bottom: 14px;
    line-height: 1.2;
}

.inv-process-card__body {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--nlas-gray-dark);
}

.inv-process-card__list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.inv-process-card__list-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--nlas-gray-dark);
    line-height: 1.5;
}

.inv-process-card__list-item svg {
    color: var(--nlas-red);
    flex-shrink: 0;
    margin-top: 3px;
}

/* ── No Pressure Section ───────────────────────────────── */
.inv-nopressure {
    padding: var(--section-pad) 0;
    background: var(--nlas-charcoal);
}

.inv-nopressure__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.inv-nopressure__img-wrap {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--nlas-gray-light);
}

.inv-nopressure__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inv-nopressure__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--nlas-white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.inv-nopressure__body {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.inv-nopressure__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.inv-nopressure__list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.04em;
}

.inv-nopressure__list-item svg {
    color: var(--nlas-red);
    flex-shrink: 0;
}

/* ── Financing Bridge CTA ──────────────────────────────── */
.inv-finance-bridge {
    padding: 64px 0;
    background: var(--nlas-off-white);
    text-align: center;
}

.inv-finance-bridge__inner {
    max-width: 640px;
    margin: 0 auto;
}

.inv-finance-bridge__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.inv-finance-bridge__title em {
    color: var(--nlas-red);
    font-style: normal;
}

.inv-finance-bridge__body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--nlas-gray-dark);
    margin-bottom: 28px;
}

/* ── Final CTA ─────────────────────────────────────────── */
.inv-final-cta {
    padding: 80px 0;
    background: var(--nlas-black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inv-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(225, 6, 0, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.inv-final-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.inv-final-cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--nlas-white);
    line-height: 1.1;
    margin-bottom: 16px;
}

.inv-final-cta__title em {
    color: var(--nlas-red);
    font-style: normal;
}

.inv-final-cta__sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 32px;
}

.inv-final-cta__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .inv-process-grid {
        grid-template-columns: 1fr;
    }

    .inv-nopressure__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .inv-hero {
        padding: 72px 0 56px;
    }

    .inv-hero__actions,
    .inv-final-cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .inv-hero__actions .nlas-btn-primary,
    .inv-hero__actions .nlas-btn-ghost,
    .inv-final-cta__actions .nlas-btn-primary,
    .inv-final-cta__actions .nlas-btn-ghost {
        width: 100%;
        justify-content: center;
        max-width: 320px;
    }

    .inv-cta-banner__inner {
        flex-direction: column;
        gap: 12px;
    }
}

/* ── Review Page Hero ─────────────────────────────────────────── */
.rev-hero {
    background: var(--nlas-black);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rev-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(225, 6, 0, 0.08) 0%, transparent 55%);
    pointer-events: none;
}

.rev-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.rev-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: var(--nlas-white);
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.rev-hero__title em {
    color: var(--nlas-red);
    font-style: normal;
}

.rev-hero__sub {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
}

/* ── Google Rating Banner ──────────────────────────────── */
.rev-rating-banner {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 28px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.rev-rating-banner__stars {
    color: var(--nlas-gold);
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.rev-rating-banner__number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--nlas-white);
}

.rev-rating-banner__label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.rev-rating-banner__google {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Reviews Grid ──────────────────────────────────────── */
.rev-section {
    padding: var(--section-pad) 0;
    background: var(--nlas-off-white);
}

.rev-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.rev-section__header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
}

.rev-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.rev-card {
    background: var(--nlas-white);
    border-radius: 8px;
    padding: 28px;
    border-left: 4px solid var(--nlas-red);
    transition: transform var(--ease), box-shadow var(--ease);
}

.rev-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.rev-card__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: var(--nlas-gold);
    font-size: 0.9rem;
}

.rev-card__quote {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--nlas-charcoal);
    margin-bottom: 20px;
    font-style: italic;
}

.rev-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rev-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--nlas-gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--nlas-gray-dark);
    flex-shrink: 0;
}

.rev-card__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--nlas-black);
}

.rev-card__meta {
    font-size: 0.75rem;
    color: var(--nlas-gray-mid);
    margin-top: 2px;
}

/* ── Leave a Review CTA ───────────────────────────────── */
.rev-leave {
    padding: 56px 0;
    background: var(--nlas-white);
    text-align: center;
    border-top: 1px solid var(--nlas-gray-light);
}

.rev-leave__inner {
    max-width: 560px;
    margin: 0 auto;
}

.rev-leave__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.rev-leave__body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--nlas-gray-dark);
    margin-bottom: 24px;
}

/* ── Final CTA ─────────────────────────────────────────── */
.rev-cta {
    padding: 80px 0;
    background: var(--nlas-charcoal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rev-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(225, 6, 0, 0.08) 0%, transparent 55%);
    pointer-events: none;
}

.rev-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.rev-cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--nlas-white);
    line-height: 1.1;
    margin-bottom: 16px;
}

.rev-cta__title em {
    color: var(--nlas-red);
    font-style: normal;
}

.rev-cta__sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 32px;
}

.rev-cta__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .rev-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rev-hero {
        padding: 72px 0 56px;
    }

    .rev-grid {
        grid-template-columns: 1fr;
    }

    .rev-rating-banner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .rev-cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .rev-cta__actions .nlas-btn-primary,
    .rev-cta__actions .nlas-btn-ghost {
        width: 100%;
        justify-content: center;
        max-width: 320px;
    }
}