:root {
    --clr-orange: #f27533;
    --clr-orange-dark: #f0442e;
    --clr-navy-dark: #080d12;
    --clr-navy-mid: #121a26;
    --clr-white: #ffffff;
    --clr-gray-light: #cfd3d8;
    --clr-gray-mid: #9aa1ab;

    --font-display: "Space Grotesk", sans-serif;
    --font-accent: "Playfair Display", Georgia, serif;
    --font-body: "DM Sans", sans-serif;

    --header-height: 74px;

    --site-content-width: 84%;
    --site-content-max-width: 1600px;
    --site-content-edge: max(calc((100vw - var(--site-content-max-width)) / 2),
            8vw);
}




/* =============================================================
   HERO SECTION
   ============================================================= */

.hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--header-height));
    height: calc(100vh - var(--header-height));
    /* <-- replace this file (or swap the path to a .jpg/.png) to change the hero image */
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    background-color: #1b2330;
    /* fallback tone while image loads / if missing */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(6, 10, 16, 0.86) 0%,
            rgba(6, 10, 16, 0.55) 32%,
            rgba(6, 10, 16, 0.05) 60%,
            rgba(6, 10, 16, 0.25) 100%),
        linear-gradient(0deg,
            rgba(4, 7, 12, 0.55) 0%,
            rgba(4, 7, 12, 0) 35%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;

    width: var(--site-content-width);
    max-width: var(--site-content-max-width);

    margin-inline: auto;
}

.hero-eyebrow {
    color: var(--clr-orange-dark);
    font-family: var(--font-display);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    margin-bottom: 18px;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--clr-white);
    text-transform: uppercase;
    font-size: clamp(5.5rem, 10vw, 9rem);
    /* font-size: 8rem; */
    line-height: 0.88;
    letter-spacing: -1px;
    margin: 0 0 22px;
}

.hero-title-italic {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 500;
    color: var(--clr-orange);
    letter-spacing: -1px;
    display: inline-block;
}

.hero-subtext {
    color: var(--clr-gray-light);
    font-size: 1.05rem;
    line-height: 1.55;
    font-weight: 400;
    max-width: 480px;
    margin: 0 0 34px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

/* Stats block */
.hero-stats {
    position: absolute;
    right: 6vw;
    bottom: 64px;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 26px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 68px;
}

.stat-number {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--clr-white);
    font-size: 2.1rem;
    line-height: 1;
}

span.stat-label {
    color: var(--clr-gray-mid);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    line-height: 1.35;
}

.stat-divider {
    width: 1px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.18);
    margin-top: 6px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    left: 47%;
    bottom: 40px;
    z-index: 2;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-indicator span {
    color: var(--clr-gray-mid);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.scroll-line {
    width: 1px;
    height: 34px;
    background-color: var(--clr-orange);
}





/* =============================================================RESPONSIVE — TABLET / MOBILE (< 992px)============================================================= */

@media (max-width: 991.98px) {
    :root {
        --header-height: 64px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .brand-name {
        font-size: 0.92rem;
    }

    .brand-mark {
        font-size: 1.45rem;
    }

    .hero {
        height: auto;
        min-height: calc(100vh - var(--header-height));
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-end;
        padding-bottom: 40px;
        background-position: center 20%;
    }

    .hero-overlay {
        background: linear-gradient(180deg,
                rgba(6, 10, 16, 0.15) 0%,
                rgba(6, 10, 16, 0.55) 55%,
                rgba(6, 10, 16, 0.92) 100%);
    }

    .hero-content {
        max-width: 100%;
        padding: 0 24px;
    }

    .hero-eyebrow {
        font-size: 0.7rem;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: clamp(2.4rem, 11vw, 3.2rem);
        letter-spacing: -0.5px;
        margin-bottom: 16px;
    }

    .hero-subtext {
        font-size: 0.92rem;
        margin-bottom: 24px;
    }

    .hero-buttons {
        gap: 14px;
        width: 100%;
    }

    .hero-buttons .btn-cta,
    .hero-buttons .btn-text-link {
        font-size: 0.72rem;
        padding: 13px 18px;
    }

    .hero-stats {
        position: static;
        margin-top: 30px;
        padding: 20px 24px 0;
        justify-content: flex-start;
        gap: 24px;
        border-top: none;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .stat-divider {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 420px) {
    .hero-stats {
        gap: 18px;
    }

    .hero-buttons {
        flex-direction: row;
    }
}














/*------------------------------------------------------------------------------ bike section------------------------------------------------------------------------------------ */

.bike-lineup {
    width: 100%;
    background: #080909;
    color: #ffffff;

    padding: 105px 0 110px;
}

.bike-lineup-container {
    width: var(--site-content-width);
    max-width: var(--site-content-max-width);
    margin-inline: auto;
}


.lineup-header {
    display: grid;

    grid-template-columns: 145px minmax(0, 1fr) 300px;

    column-gap: 35px;

    align-items: start;

    margin-bottom: 43px;
}

.lineup-label {
    padding-top: 28px;

    color: #f0442e;

    font-family: var(--font-body);

    font-size: 0.58rem;
    font-weight: 800;

    letter-spacing: 1.7px;

    white-space: nowrap;
}

.lineup-heading h2 {
    margin: 0;

    color: #f5f5f5;

    font-family: var(--font-display);

    font-size: clamp(3rem, 4.2vw, 4rem);

    font-weight: 500;

    line-height: 1.05;

    letter-spacing: -2.2px;
}

.lineup-description {
    padding-top: 25px;

    color: #8e9298;

    font-family: var(--font-body);

    font-size: 0.87rem;

    font-weight: 400;

    line-height: 1.55;
}



.lineup-tabs {
    display: flex;
    align-items: center;

    gap: 28px;

    height: 48px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.11);

    margin-bottom: 19px;
}

.lineup-tab {
    position: relative;

    height: 48px;

    padding: 0 0 1px;

    border: 0;

    background: transparent;

    color: #626870;

    font-family: var(--font-body);

    font-size: 0.67rem;

    font-weight: 700;

    letter-spacing: 1px;

    cursor: pointer;

    transition: color 0.2s ease;
}

.lineup-tab:hover {
    color: #ffffff;
}

.lineup-tab.active {
    color: #ffffff;
}

.lineup-tab.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -1px;

    height: 2px;

    background: #f0442e;
}


.bike-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 15px;
}


/* =============================================================BIKE CARD============================================================= */

.bike-card {
    min-width: 0;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


.bike-card.hidden {
    display: none;
}



.bike-image-wrapper {
    position: relative;

    width: 100%;

    aspect-ratio: 1.06 / 1;

    overflow: hidden;

    background: #0d1013;
}

.bike-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.bike-card:hover .bike-image {
    transform: scale(1.025);
}


/* Small text over image */

.bike-image-label {
    position: absolute;

    top: 15px;
    left: 13px;

    color: rgba(255, 255, 255, 0.72);

    font-family: var(--font-body);

    font-size: 0.57rem;

    font-weight: 700;

    letter-spacing: 1px;

    pointer-events: none;
}


.bike-image-arrow {
    position: absolute;

    right: 14px;
    bottom: 14px;

    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.55);

    border-radius: 50%;

    color: #ffffff;

    font-size: 0.85rem;

    text-decoration: none;

    background: rgba(0, 0, 0, 0.15);

    backdrop-filter: blur(3px);

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.bike-image-arrow span {
    line-height: 1;
}

.bike-image-arrow:hover {
    background: #f0442e;

    border-color: #f0442e;

    transform: translateX(2px);
}



.bike-info {
    padding: 12px;
}

.bike-title-row {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    min-height: 48px;

    padding-bottom: 9px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.bike-category {
    margin-bottom: 4px;

    color: #6d7279;

    font-family: var(--font-body);

    font-size: 0.65rem;

    font-weight: 600;

    letter-spacing: 1.2px;
}

.bike-name {
    margin: 0;

    color: #f5f5f5;

    font-family: var(--font-display);

    font-size: 1.55rem;

    font-weight: 500;

    line-height: 1;
}

.bike-price {
    padding-top: 7px;

    color: #ffffff;

    font-family: var(--font-body);

    font-size: 0.78rem;

    font-weight: 800;

    white-space: nowrap;
}



.bike-specs {
    display: flex;

    align-items: flex-start;

    gap: 28px;

    padding-top: 12px;
}

.bike-spec {
    display: flex;

    flex-direction: column;

    gap: 6px;
}

.bike-spec strong {
    color: #c9cdd1;

    font-family: var(--font-body);

    font-size: 0.84rem;

    font-weight: 500;

    line-height: 1;

    white-space: nowrap;
}

.bike-spec span {
    color: #555b62;

    font-family: var(--font-body);

    font-size: 0.59rem;

    font-weight: 600;

    letter-spacing: 0.7px;

    line-height: 1;
}



.bike-enquire {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 17px;

    color: #f0442e;

    font-family: var(--font-body);

    font-size: 0.69rem;

    font-weight: 700;

    letter-spacing: 0.8px;

    text-decoration: none;

    transition: color 0.2s ease;
}

.bike-enquire span {
    font-size: 0.85rem;

    transition: transform 0.2s ease;
}

.bike-enquire:hover {
    color: #ff654f;
}

.bike-enquire:hover span {
    transform: translateX(3px);
}



@media (max-width: 991.98px) {

    .bike-lineup {
        padding: 75px 0 80px;
    }

    .bike-lineup-container {
        width: calc(100% - 48px);
    }

    .lineup-header {
        grid-template-columns: 110px minmax(0, 1fr);

        gap: 20px;

        margin-bottom: 35px;
    }

    .lineup-label {
        padding-top: 17px;
    }

    .lineup-description {
        grid-column: 2;

        padding-top: 0;

        max-width: 350px;
    }

    .lineup-heading h2 {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }

    .bike-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        row-gap: 45px;
    }
}



@media (max-width: 767.98px) {

    .bike-lineup {
        padding: 65px 0 70px;
    }

    .bike-lineup-container {
        width: calc(100% - 48px);
    }

    .lineup-header {
        display: block;

        margin-bottom: 28px;
    }

    .lineup-label {
        padding: 0;

        margin-bottom: 14px;
    }

    .lineup-heading h2 {
        font-size: clamp(2.35rem, 11vw, 3.2rem);

        line-height: 1;

        letter-spacing: -1.5px;

        margin-bottom: 20px;
    }

    .lineup-description {
        padding: 0;

        max-width: 300px;

        font-size: 0.68rem;
    }



    .lineup-tabs {
        gap: 25px;

        overflow-x: auto;

        scrollbar-width: none;

        margin-bottom: 18px;
    }

    .lineup-tabs::-webkit-scrollbar {
        display: none;
    }

    .lineup-tab {
        flex-shrink: 0;
    }



    .bike-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .bike-image-wrapper {
        aspect-ratio: 1.12 / 1;
    }

    .bike-image-label {
        top: 14px;
        left: 14px;
    }

    .bike-title-row {
        min-height: 50px;
    }

    .bike-name {
        font-size: 1.15rem;
    }

    .bike-specs {
        gap: 25px;
    }
}



@media (max-width: 420px) {

    .bike-lineup-container {
        width: calc(100% - 28px);
    }

    .lineup-heading h2 {
        font-size: 2.35rem;
    }

    .bike-specs {
        gap: 17px;
    }

    .bike-spec strong {
        font-size: 0.5rem;
    }
}

.lineup-view-all {
    display: flex;
    justify-content: center;

    margin-top: 55px;
}

.view-all-bikes {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 14px 24px;

    border: 1px solid rgba(255, 255, 255, 0.25);

    color: #ffffff;

    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1px;

    text-decoration: none;

    transition: all 0.2s ease;
}

.view-all-bikes span {
    color: #f0442e;
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.view-all-bikes:hover {
    border-color: #f0442e;
}

.view-all-bikes:hover span {
    transform: translateX(4px);
}

/*------------------------------------------------------ bike section------------------------------------------------------------------------------------ */







/*------------------------------------------------------------------------------ why us section------------------------------------------------------------------------- */

.why-nova {
    display: grid;
    grid-template-columns: 1fr 1fr;

    width: 100%;
    min-height: 710px;

    background: #121516;
}



.why-nova-content {
    display: flex;
    justify-content: flex-end;
}


.why-nova-inner {
    width: calc(50vw - var(--site-content-edge));

    padding-top: 90px;
    padding-bottom: 90px;

    padding-right: 60px;
}



.why-nova .section-eyebrow {
    margin-bottom: 25px;

    color: #f0442e;

    font-size: 0.58rem;
    font-weight: 800;

    letter-spacing: 1.8px;
    line-height: 1;
}



.why-nova-title {
    margin: 0;

    color: #f1f1ed;

    font-family: var(--font-display);

    font-size: clamp(3.4rem, 4.2vw, 4.6rem);

    font-weight: 500;

    line-height: 0.98;

    letter-spacing: -2.5px;
}


.why-nova-title span {
    display: block;

    margin-top: 4px;

    color: #f26b32;

    font-family: var(--font-accent);

    font-style: italic;
    font-weight: 400;

    letter-spacing: -2.5px;
}


.why-nova-description {
    max-width: 455px;

    margin: 38px 0 0;

    color: #9ba1a5;

    font-family: var(--font-body);

    font-size: 1rem;

    font-weight: 400;

    line-height: 1.9;
}


.why-nova-features {
    display: flex;
    flex-direction: column;

    gap: 20px;

    margin-top: 34px;
}


.why-nova-feature {
    display: flex;

    align-items: center;

    gap: 13px;

    color: #e5e6e3;

    font-family: var(--font-body);

    font-size: 0.8rem;

    font-weight: 500;
}


.feature-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;

    flex: 0 0 17px;

    color: #f0442e;
}


.feature-icon svg {
    width: 20px;
    height: 20px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}



.why-nova-image {
    position: relative;

    min-height: 710px;

    overflow: hidden;

    background: #080909;
}


.why-nova-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}


.why-nova-image-label {
    position: absolute;

    left: 34px;
    bottom: 28px;

    color: #f0f0eb;

    font-size: 0.57rem;
    font-weight: 700;

    letter-spacing: 1.2px;
}



@media (max-width: 1100px) {

    .why-nova-inner {
        padding: 75px 55px 75px 45px;
    }

    .why-nova-title {
        font-size: clamp(3rem, 5vw, 4rem);
    }

    .why-nova-description {
        max-width: 410px;
    }

}



@media (max-width: 767px) {
    :root {
        --site-content-width: calc(100% - 48px);
    }

    .site-container {
        width: var(--site-content-width);
    }

    .why-nova-inner {
        width: var(--site-content-width);
        max-width: none;

        margin: 0 auto;

        padding: 70px 0;
    }

    .why-nova {
        display: flex;
        flex-direction: column;

        min-height: auto;
    }


    .why-nova-content {
        display: block;
    }


    .why-nova-inner {
        max-width: none;

        margin: 0;

        padding: 75px 24px 70px;
    }


    .why-nova-title {
        font-size: clamp(2.8rem, 11vw, 4rem);

        letter-spacing: -1.8px;
    }


    .why-nova-title span {
        letter-spacing: -1.8px;
    }


    .why-nova-description {
        max-width: 100%;

        margin-top: 30px;

        font-size: 0.78rem;

        line-height: 1.8;
    }


    .why-nova-features {
        margin-top: 32px;

        gap: 18px;
    }


    .why-nova-image {
        min-height: 500px;

        height: 500px;
    }


    .why-nova-image-label {
        left: 24px;
        bottom: 24px;
    }

}

/*------------------------------------------------------------------------------ why us section------------------------------------------------------------------------- */









/*------------------------------------------------------------------------------ THE COLLECTIVE / RIDE COMMUNITY ------------------------------------------------------------------------- */

.collective-section {
    width: 100%;

    background: #080909;

    padding: 125px 0 105px;
}



.collective-header {
    display: grid;

    grid-template-columns: 1fr 2fr 1fr;

    align-items: start;

    margin-bottom: 52px;
}


.collective-eyebrow {
    padding-top: 12px;

    color: #f0442e;

    font-size: 0.57rem;
    font-weight: 800;

    letter-spacing: 1.7px;

    line-height: 1;
}


.collective-title {
    margin: 0;

    color: #eeeeeb;

    font-family: var(--font-display);

    font-size: clamp(3.2rem, 4.2vw, 4.4rem);

    font-weight: 500;

    line-height: 0.98;

    letter-spacing: -2.5px;

    text-align: center;
}


.collective-description {
    max-width: 270px;

    margin: 8px 0 0 auto;

    color: #858b8e;

    font-family: var(--font-body);

    font-size: 0.92rem;

    line-height: 1.65;
}



.collective-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}



.collective-card {
    position: relative;

    height: 500px;

    overflow: hidden;

    background: #101213;
}


.collective-card img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s cubic-bezier(.2, .7, .2, 1);
}



.collective-card-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.03) 25%,
            rgba(0, 0, 0, 0.10) 45%,
            rgba(0, 0, 0, 0.85) 100%);

    pointer-events: none;
}



.collective-card-content {
    position: absolute;

    left: 22px;
    right: 22px;
    bottom: 25px;

    z-index: 2;
}


.collective-card-type {
    margin-bottom: 17px;

    color: #f26a32;

    font-size: 0.52rem;
    font-weight: 800;

    letter-spacing: 1px;

    line-height: 1;
}


.collective-card h3 {
    margin: 0 0 14px;

    color: #f0f0ed;

    font-family: var(--font-display);

    font-size: clamp(1.3rem, 1.7vw, 1.55rem);

    font-weight: 500;

    line-height: 1.05;

    letter-spacing: -0.4px;
}


.collective-card-meta {
    color: #b1b3b2;

    font-size: 0.52rem;
    font-weight: 600;

    letter-spacing: 0.8px;

    line-height: 1;
}



.collective-join {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-top: 27px;

    color: #eeeeeb;

    font-size: 0.56rem;
    font-weight: 800;

    letter-spacing: 0.8px;

    text-decoration: none;
}


.collective-join span {
    font-size: 1rem;

    line-height: 1;

    transition: transform 0.2s ease;
}


.collective-join:hover span {
    transform: translateX(5px);
}


.collective-card:hover img {
    transform: scale(1.035);
}


@media (max-width: 1000px) {

    .collective-section {
        padding: 100px 0 85px;
    }

    .collective-header {
        grid-template-columns: 1fr 1.8fr 1fr;
    }

    .collective-title {
        font-size: clamp(2.8rem, 5vw, 4rem);
    }

    .collective-grid {
        gap: 12px;
    }

    .collective-card {
        height: 440px;
    }

}


@media (max-width: 767px) {

    .collective-section {
        padding: 75px 0 70px;
    }


    .collective-header {
        display: block;

        margin-bottom: 38px;
    }


    .collective-eyebrow {
        margin-bottom: 20px;
    }


    .collective-title {
        font-size: clamp(2.8rem, 11vw, 4rem);

        text-align: left;

        letter-spacing: -1.8px;
    }


    .collective-description {
        max-width: 300px;

        margin: 22px 0 0;

        font-size: 0.75rem;
    }


    .collective-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .collective-card {
        height: 480px;
    }


    .collective-card-content {
        left: 20px;
        right: 20px;
        bottom: 23px;
    }

}

/*------------------------------------------------------------ THE COLLECTIVE / RIDE COMMUN------------------------------------------------------------------------- */












/*------------------------------------------------------------ STATS / RIDER NUMBERS------------------------------------------------------------------------- */

.stats-section {
    width: 100%;
    background: #080909;
    border-top: 1px solid #252728;
    border-bottom: 1px solid #252728;

    padding: clamp(48px, 8vw, 80px) 0;
}

.stats-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    width: 100%;
    row-gap: 40px;
}


.stat-item {
    min-height: 94px;
    min-width: 0;

    padding-left: 29px;
    padding-right: 12px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-left: 1px solid #252728;
}

.stat-number {
    color: #eeeeeb;

    font-family: var(--font-display);

    font-size: clamp(2.2rem, 3.2vw, 3.5rem);

    font-weight: 500;

    line-height: 0.9;

    letter-spacing: -2px;

    white-space: nowrap;
}


.stat-number span {
    color: #f0442e;

    margin-left: 2px;

    font-size: 0.72em;

    letter-spacing: -1px;
}

.stat-label {
    margin-top: 18px;

    color: #62686b;

    font-size: 0.68rem;

    font-weight: 600;

    letter-spacing: 1.45px;

    line-height: 1;

    white-space: nowrap;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 36px;
    }

    /* Kill the left border on the 1st column of each row (items 1 and 3) */
    .stat-item:nth-child(2n+1) {
        border-left: none;
        padding-left: 0;
    }

    /* Give the 2nd column its border, offset with some left padding */
    .stat-item:nth-child(2n) {
        padding-left: 29px;
    }

}


@media (max-width: 560px) {

    .stats-section {
        padding: 40px 0;
    }

    .stats-grid {
        row-gap: 28px;
    }

    .stat-item {
        min-height: auto;
        padding-right: 8px;
    }

    .stat-number {
        font-size: clamp(1.7rem, 8vw, 2.2rem);
        white-space: normal;
    }

    .stat-label {
        margin-top: 10px;
        font-size: 0.6rem;
        letter-spacing: 1.1px;
        white-space: normal;
    }

}

/*------------------------------------------------------------ STATS / RIDER NUMBERS------------------------------------------------------------------------- */












/*------------------------------------------------------------ RIDER NOTES / REVIEWS ------------------------------------------------------------------------- */

.rider-notes-section {
    width: 100%;

    background: #080909;

    padding: 135px 0;
}


.rider-notes-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: start;
}



.rider-notes-intro {
    padding-top: 2px;
}


.section-eyebrow {
    color: #f0442e;

    font-size: 0.57rem;
    font-weight: 800;

    letter-spacing: 1.7px;

    line-height: 1;
}


.rider-notes-title {
    margin: 27px 0 0;

    color: #eeeeeb;

    font-family: var(--font-display);

    font-size: clamp(3.5rem, 5vw, 5rem);

    font-weight: 500;

    line-height: 0.91;

    letter-spacing: -3px;
}


.rider-notes-title span {
    display: block;

    color: #f26a32;

    font-family: var(--font-accent);
    font-style: italic;

    font-weight: 400;

    letter-spacing: -2px;
}


.rider-notes-description {

    margin: 8px 0 0;

    color: #8a9092;

    font-size: 0.94rem;

    line-height: 1.6;
}



.share-experience-btn {
    width: 100%;

    max-width: 750px;

    min-height: 89px;

    margin-top: 40px;

    padding: 20px 25px;

    display: flex;
    align-items: center;

    gap: 19px;

    background: transparent;

    border: 1px dashed #3c3f40;

    color: #eeeeeb;

    text-align: left;

    cursor: pointer;

    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}


.share-experience-btn:hover {
    border-color: #f0442e;

    background: rgba(240, 68, 46, 0.025);
}


.share-icon {
    flex: 0 0 auto;

    width: 23px;
    height: 23px;

    color: #f0442e;
}


.share-icon svg {
    display: block;

    width: 100%;
    height: 100%;
}


.share-experience-content {
    display: flex;
    flex-direction: column;

    gap: 8px;
}


.share-experience-content strong {
    color: #eeeeeb;

    font-size: 0.82rem;

    font-weight: 700;
}


.share-experience-content small {
    color: #62686b;

    font-size: 0.70rem;

    font-weight: 500;
}



.feedback-card {
    position: relative;

    min-height: 340px;

    padding: 50px 45px 42px;

    background: #151818;

    border: 1px solid #393d3d;
}


.feedback-rating {
    color: #f26a32;

    font-size: 17px;

    letter-spacing: 2px;

    line-height: 1;
}


.feedback-quote {
    position: absolute;

    top: 28px;
    right: 31px;

    color: rgba(240, 68, 46, 0.35);

    font-family: Georgia, serif;

    font-size: 65px;

    line-height: 0.7;
}


.feedback-card blockquote {
    max-width: 500px;

    margin: 39px 0 0;

    color: #eeeeeb;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(1.45rem, 1.7vw, 1.8rem);

    line-height: 1.25;

    letter-spacing: -0.3px;
}



.feedback-user {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 48px;
}


.feedback-avatar {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #bd492f;

    color: #ffffff;

    font-size: 0.61rem;
    font-weight: 700;
}


.feedback-user-info {
    display: flex;
    flex-direction: column;

    gap: 6px;
}


.feedback-user-info strong {
    color: #eeeeeb;

    font-size: 0.78rem;
}


.feedback-user-info small {
    color: #5e6668;

    font-size: 0.55rem;

    letter-spacing: 0.8px;
}


.feedback-video-btn {
    position: absolute;

    right: 42px;
    bottom: 39px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 0;

    background: transparent;

    border: 0;

    color: #eeeeeb;

    font-size: 0.52rem;

    font-weight: 800;

    letter-spacing: 0.8px;

    cursor: pointer;
}


.video-play-icon {
    width: 29px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #555a5b;

    border-radius: 50%;

    font-size: 8px;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}


.feedback-video-btn:hover .video-play-icon {
    background: #f0442e;

    border-color: #f0442e;
}

@media (max-width: 767px) {

    .rider-notes-section {
        padding: 80px 0;
    }


    .rider-notes-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .rider-notes-title {
        font-size: clamp(3rem, 13vw, 4rem);

        letter-spacing: -2px;
    }


    .feedback-card {
        min-height: 390px;

        padding: 35px 25px;
    }


    .feedback-card blockquote {
        font-size: 1.35rem;
    }


    .feedback-video-btn {
        position: static;

        margin-top: 25px;
    }


    .review-modal {
        padding: 15px;
    }


    .review-modal-dialog {
        max-height: calc(100vh - 30px);

        padding: 35px 22px 25px;
    }


    .review-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }


    .video-modal {
        padding: 15px;
    }


    .video-modal-content {
        width: 100%;
    }


    .video-modal-close {
        top: -40px;
    }

}

body.modal-open {
    overflow: hidden;
}

/* =========================================================
   FEEDBACK SLIDER
   ========================================================= */

.feedback-slider-wrapper {
    position: relative;

    width: 100%;

    padding-right: 58px;
}


.rider-feedback-swiper {
    width: 100%;
    overflow: hidden;
    height: 340px;
}

.rider-feedback-swiper .feedback-card {
    height: 100%;
    box-sizing: border-box;
}


.rider-feedback-swiper .swiper-slide {
    height: auto;
}

@media (max-width: 767px) {

    .feedback-slider-wrapper {
        padding-right: 0;
    }

    .rider-feedback-swiper {
        height: 390px;
    }

    .rider-feedback-swiper {
        /* Keep vertical if you want the same interaction */
    }

    .feedback-slider-controls {
        position: static;

        transform: none;

        flex-direction: row;

        justify-content: center;

        margin-top: 20px;
    }

    .feedback-slider-counter {
        flex-direction: row;

        gap: 5px;
    }

}


/* =========================================================
   VERTICAL CONTROL RAIL
   ========================================================= */

.feedback-slider-controls {
    position: absolute;

    top: 50%;
    right: 0;

    transform: translateY(-50%);

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 14px;

    z-index: 5;
}


/* Arrows */

.feedback-slider-controls button {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    background: transparent;

    border: 1px solid #3b3f40;

    color: #eeeeeb;

    font-size: 13px;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}


.feedback-slider-controls button:hover {
    background: #f0442e;

    border-color: #f0442e;
}


.feedback-slider-controls button.swiper-button-disabled {
    opacity: 0.3;
}


/* =========================================================
   COUNTER
   ========================================================= */

.feedback-slider-counter {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 3px;

    color: #777d7f;

    font-size: 0.7rem;

    letter-spacing: 1px;

    line-height: 1;
}


.feedback-slider-counter .current-slide {
    color: #eeeeeb;
}


.feedback-slider-counter .counter-divider {
    color: #414546;
}

/*------------------------------------------------------------ RIDER NOTES / REVIEWS ------------------------------------------------------------------------- */