/********** Template CSS **********/
:root {
    --primary: #0046ae;
    --secondary: #8D9297;
    --light: #F8F9FA;
    --dark: #182333;
}

/* Discourage casual image save — images only; links/text unaffected */
img {
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.wd-floating-actions {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.wd-floating-actions .back-to-top {
    position: static;
    right: auto;
    bottom: auto;
}

.wd-floating-whatsapp {
    display: none;
    background: #25d366;
    border: none;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.wd-floating-whatsapp:hover,
.wd-floating-whatsapp:focus {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.wd-floating-whatsapp .fa-whatsapp {
    font-size: 1.35rem;
    line-height: 1;
}


/*** WOW scroll animations (Animate.css + wow.js) ***/
.wow.animated {
    animation-duration: 0.75s !important;
}

@media (prefers-reduced-motion: reduce) {
    .wow {
        animation: none !important;
        visibility: visible !important;
    }
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: 0;
    z-index: 1030;
}

.navbar.navbar-pinned {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    top: 0;
    z-index: 1030;
    --nav-progress: 0;
    transform: translateY(calc(-100% * (1 - var(--nav-progress))));
    opacity: calc(0.35 + 0.65 * var(--nav-progress));
    will-change: transform, opacity;
}

.navbar.navbar-pinned.navbar-scroll-sync {
    transition: none;
}

.navbar.navbar-pinned.navbar-scroll-sync .navbar-brand .navbar-logo {
    max-height: calc(70px + 30px * (1 - var(--nav-progress)));
    transition: none;
}

.navbar.navbar-pinned.navbar-scroll-sync .navbar-brand.d-lg-none .navbar-logo {
    max-height: calc(50px + 10px * (1 - var(--nav-progress)));
    transition: none;
}

.navbar-brand .navbar-logo {
    max-height: 100px;
}

.navbar-brand.d-lg-none .navbar-logo {
    max-height: 60px;
}

.navbar.navbar-stuck .navbar-brand .navbar-logo {
    max-height: 70px;
}

.navbar.navbar-stuck .navbar-brand.d-lg-none .navbar-logo {
    max-height: 50px;
}

.navbar .navbar-nav .nav-link {
    position: relative;
    margin-left: 0;
    padding: 25px 0;
    color: #1a1a2e;
    font-family: "Roboto", sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
    white-space: nowrap;
    transition: color .25s ease;
}

.navbar .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 999px;
    opacity: 0;
    transform: scaleX(0);
    transition: opacity .25s ease, transform .25s ease;
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--primary);
}

.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .navbar-nav .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}


@media (min-width: 992px) {
    .navbar .navbar-collapse > .w-100.d-none.d-lg-flex {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .navbar .navbar-collapse > .w-100.d-none.d-lg-flex > .navbar-nav {
        display: flex;
        gap: clamp(24px, 2.2vw, 34px);
        align-items: center;
        flex-shrink: 0;
    }

    .navbar .navbar-collapse > .w-100.d-none.d-lg-flex > .navbar-nav:first-child {
        justify-content: flex-start;
    }

    .navbar .navbar-collapse > .w-100.d-none.d-lg-flex > .navbar-nav:last-child {
        justify-content: flex-end;
    }

    .navbar .navbar-collapse > .w-100.d-none.d-lg-flex > .navbar-brand {
        margin: 0 !important;
        padding: 0;
        flex-shrink: 0;
    }
}
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 12px;
    }

    .navbar .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar .navbar-nav .nav-link.active {
        color: var(--primary);
        background: rgba(0, 70, 174, 0.08);
        border-left: 3px solid var(--primary);
        padding-left: 9px;
        border-radius: 0 4px 4px 0;
    }

    .navbar .navbar-nav {
        margin-top: 25px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    background: rgba(0, 0, 0, .65);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
    border-radius: 50px;
}

.carousel-caption .breadcrumb-item+.breadcrumb-item::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
        border-width: 12px;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/carousel-1.webp) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Facts ***/
.facts-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, .65);
}

.facts-overlay h1 {
    font-size: 120px;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
}

.facts-overlay a:hover {
    color: var(--primary) !important;
}


/*** Service ***/
.service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: var(--primary);
    opacity: 0;
    transition: .5s;
}

.service-item:hover .service-text::before {
    height: 100%;
    opacity: 1;
}

.service-text * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-text * {
    color: #FFFFFF !important;
}


/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-text {
    position: absolute;
    width: 75%;
    bottom: 30px;
    left: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    width: 100%;
}

.team-text * {
    transition: .5s;
}

.team-item:hover .team-text * {
    letter-spacing: 2px;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    color: #b8bcc4;
    background: var(--dark);
    border-top: 3px solid var(--primary);
}

.footer-main {
    display: grid;
    gap: 2rem;
    align-items: start;
}

.footer-col,
.footer-brand,
.footer-community-col {
    min-width: 0;
}

.footer-logo {
    margin-bottom: 1.25rem;
}

.footer-logo img {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.footer-tagline {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 0;
}

.footer-heading {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.footer-social .btn-square {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    transition: background-color .3s ease, color .3s ease, transform .2s ease, border-color .3s ease;
}

.footer-social .btn-square:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.85rem;
    line-height: 1.5;
}

.footer-contact-item i {
    color: var(--primary);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact-link {
    color: #b8bcc4;
    text-decoration: none;
    transition: color .3s ease;
    word-break: break-word;
}

.footer-contact-link:hover {
    color: #ffffff;
}

.footer-links-grid .btn.btn-link {
    display: block;
    margin-bottom: 0;
    padding: 0.35rem 0;
    text-align: left;
    color: #b8bcc4;
    font-weight: normal;
    text-transform: capitalize;
    transition: color .3s ease, letter-spacing .3s ease;
}

.footer-links-grid .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
    transition: color .3s ease;
}

.footer-links-grid .btn.btn-link:hover {
    color: #ffffff;
    letter-spacing: 0.5px;
    box-shadow: none;
}

.footer-links-grid .btn.btn-link:hover::before {
    color: #ffffff;
}

.footer-community-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.footer-community-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
    line-height: 1;
    text-align: center;
}

.footer-community {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.footer-community-img {
    max-width: 260px;
    width: auto;
    height: auto;
    display: block;
    margin: -0.4rem auto 0;
}

.footer-bottom-bar {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, #0b1018 0%, #060a10 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-bottom-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 70, 174, 0.55) 35%, rgba(77, 143, 255, 0.75) 50%, rgba(0, 70, 174, 0.55) 65%, transparent);
    opacity: 0.85;
    pointer-events: none;
}


.footer-bottom-bar > .container {
    max-width: 100%;
    width: 100%;
    padding-left: clamp(3.85rem, 11vw, 8.5rem);
    padding-right: clamp(3.85rem, 11vw, 8.5rem);
}


.footer-legal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 1rem;
    width: 100%;
    padding: 1.35rem 0;
    min-height: 74px;
}

.footer-legal-left,
.footer-legal-right {
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.42);
    z-index: 1;
}

.footer-legal-left {
    white-space: nowrap;
    text-align: left;
    margin-right: auto;
}

.footer-legal-right {
    white-space: nowrap;
    text-align: right;
    margin-left: auto;
}

.footer-legal-left a,
.footer-legal-right a {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
}


.footer-bottom-bar a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-bar a:hover {
    color: #ffffff;
    text-shadow: none;
}

.footer-legal-nav {
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.2rem 0.4rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-width: min(820px, calc(100% - 13rem));
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    z-index: 2;
}

.footer-legal-nav a {
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    padding: 0.28rem 0.5rem;
    border-radius: 6px;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease;
}

.footer-legal-nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    transform: none;
}

.footer-link-tag {
    position: relative;
    z-index: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0.5rem 1.05rem !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13.5px !important;
    letter-spacing: 0.04em;
    line-height: 1.15;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow: hidden;
    isolation: isolate;
    transition: background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}

.footer-link-tag::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    z-index: 0;
}

.footer-link-tag::after {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 50%;
    height: 100%;
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: -1;
    animation: footer-tag-shine 5s ease-in-out infinite;
}

.footer-link-tag--hub::after {
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 42%,
        rgba(255, 255, 255, 0.22) 50%,
        rgba(255, 255, 255, 0.05) 58%,
        transparent 100%
    );
}

.footer-link-tag--garage::after {
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.06) 42%,
        rgba(255, 255, 255, 0.24) 50%,
        rgba(255, 255, 255, 0.06) 58%,
        transparent 100%
    );
    animation-delay: 2.5s;
}

@keyframes footer-tag-shine {
    0%, 78% {
        left: -130%;
    }

    100% {
        left: 150%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer-link-tag::after,
    .footer-link-tag--hub:hover::before,
    .footer-link-tag--garage:hover::before {
        animation: none;
    }

    .footer-link-tag--hub:hover,
    .footer-link-tag--garage:hover {
        transform: none;
    }
}

.footer-link-tag--hub {
    background: #1368dc;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff !important;
    text-shadow: 0 1px 1px rgba(0, 28, 72, 0.35);
    box-shadow: 0 1px 3px rgba(0, 40, 100, 0.28);
}

.footer-link-tag--hub::before {
    border: 2px solid rgba(120, 185, 255, 0.75);
    box-shadow: 0 0 14px rgba(58, 140, 255, 0.35);
}

.footer-link-tag--hub:hover {
    background: #1a78f0;
    color: #ffffff !important;
    border-color: rgba(180, 215, 255, 0.45);
    box-shadow: 0 6px 22px rgba(0, 90, 220, 0.48);
    transform: translateY(-2px) scale(1.04);
}

.footer-link-tag--hub:hover::before {
    opacity: 1;
    animation: footer-hub-pulse 1s ease-out infinite;
}

@keyframes footer-hub-pulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

.footer-link-tag--garage {
    background: #c8860c;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff !important;
    text-shadow: 0 1px 1px rgba(72, 42, 0, 0.35);
    box-shadow: 0 1px 3px rgba(100, 60, 0, 0.26);
}

.footer-link-tag--garage::before {
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 240, 190, 0.15) 35%,
        rgba(255, 250, 220, 0.75) 50%,
        rgba(255, 240, 190, 0.15) 65%,
        transparent 100%
    );
    transform: translateX(-140%) skewX(-12deg);
}

.footer-link-tag--garage:hover {
    background: #dba018;
    color: #ffffff !important;
    border-color: rgba(255, 230, 160, 0.55);
    box-shadow: 0 5px 18px rgba(200, 120, 0, 0.42), inset 0 0 0 1px rgba(255, 220, 140, 0.25);
    transform: translateY(-2px);
}

.footer-link-tag--garage:hover::after {
    animation: none;
}

.footer-link-tag--garage:hover::before {
    opacity: 1;
    animation: footer-garage-sweep 0.65s ease forwards;
}

@keyframes footer-garage-sweep {
    0% {
        transform: translateX(-140%) skewX(-12deg);
    }

    100% {
        transform: translateX(140%) skewX(-12deg);
    }
}

.footer-legal-sep {
    margin: 0;
    color: rgba(255, 255, 255, 0.22);
    font-size: 11px;
    user-select: none;
}

@media (min-width: 992px) {
    .footer-main {
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
        justify-content: space-between;
        gap: 2rem;
        width: 100%;
    }

    .footer-brand {
        flex: 0 0 auto;
        width: 220px;
    }

    .footer-contact-col {
        flex: 0 0 auto;
        max-width: 280px;
    }

    .footer-links-col {
        flex: 0 0 auto;
        max-width: 220px;
    }

    .footer-community-col {
        flex: 0 0 auto;
        width: 260px;
        text-align: center;
    }

    .footer-main > .footer-brand,
    .footer-main > .footer-col:not(.footer-community-col) {
        text-align: left;
    }

    .footer-logo img {
        max-width: 220px;
        width: 220px;
    }

    .footer-community-img {
        max-width: 260px;
        width: 260px;
        margin: -0.4rem auto 0;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 2rem;
        row-gap: 2.5rem;
    }
}

@media (min-width: 768px) {
    .footer-links-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.15rem;
    }
}

@media (max-width: 767.98px) {
    .footer {
        margin-bottom: 0;
    }

    .footer .container.py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2rem !important;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-brand .footer-tagline {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-links-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.25rem 1rem;
    }

    .footer-links-grid .btn.btn-link {
        text-align: left;
    }

    .footer-community {
        max-width: none;
        margin: 0;
    }

    .footer-community-col {
        text-align: center;
    }

    .footer-community-img {
        max-width: 280px;
        margin: -0.4rem auto 0;
    }

    .footer-bottom-bar {
        border-radius: 0;
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }

    .footer-legal-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.9rem;
        padding: 1.3rem 0;
        min-height: 0;
        text-align: center;
        position: static;
    }

    .footer-legal-nav {
        position: static;
        transform: none;
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        padding: 0.45rem 0.65rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-legal-nav--mobile {
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        padding: 0.5rem 0.65rem;
    }

    .footer-legal-left,
    .footer-legal-right {
        margin-left: 0;
        margin-right: 0;
        justify-self: auto;
        width: 100%;
        max-width: 100%;
        text-align: center;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        font-size: 12px;
        line-height: 1.45;
    }

    .footer-legal-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.35rem 0.45rem;
        width: 100%;
        max-width: 100%;
        padding: 0.45rem 0.65rem;
    }

    .footer-legal-nav--mobile {
        flex-direction: column;
        gap: 0.4rem;
    }

    .footer-legal-nav__line {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.35rem 0.45rem;
        width: 100%;
    }

    .footer-legal-nav a:not(.footer-link-tag) {
        font-size: 12px;
        padding: 0.35rem 0.5rem;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.04);
    }

    .footer-legal-nav a:not(.footer-link-tag):hover {
        background: rgba(255, 255, 255, 0.08);
    }

    .footer-legal-sep {
        display: none;
    }

    .footer-link-tag {
        font-size: 13px !important;
        padding: 0.48rem 0.9rem !important;
        border-radius: 8px;
    }

    .footer-legal-nav .footer-link-tag--hub {
        background: #1368dc !important;
        border: 1px solid rgba(255, 255, 255, 0.14) !important;
        color: #ffffff !important;
        text-shadow: 0 1px 1px rgba(0, 28, 72, 0.35);
        box-shadow: 0 1px 3px rgba(0, 40, 100, 0.28);
    }

    .footer-legal-nav .footer-link-tag--garage {
        background: #c8860c !important;
        border: 1px solid rgba(255, 255, 255, 0.16) !important;
        color: #ffffff !important;
        text-shadow: 0 1px 1px rgba(72, 42, 0, 0.35);
        box-shadow: 0 1px 3px rgba(100, 60, 0, 0.26);
    }
}

@media (max-width: 575.98px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .footer-links-grid .btn.btn-link {
        padding: 0.5rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .footer-legal-row {
        gap: 0.75rem;
        padding: 0.9rem 0.85rem calc(0.9rem + env(safe-area-inset-bottom, 0px));
    }

    .footer-legal-left,
    .footer-legal-right {
        font-size: 11px;
    }

    .footer-legal-nav {
        gap: 0.35rem 0.4rem;
    }

    .footer-legal-nav a:not(.footer-link-tag) {
        font-size: 11px;
        padding: 0.38rem 0.5rem;
    }

    .footer-legal-nav .footer-link-tag {
        font-size: 13px !important;
        padding: 0.48rem 0.9rem !important;
    }
}

/* ================================
   Top Bar Styling - WD Racing
================================ */
.topbar {
    background-color: var(--primary);
}

.topbar small,
.topbar i {
    color: #ffffff;
}

.topbar a {
    color: #ffffff;
}

.topbar a:hover {
    color: var(--light);
}

.topbar .topbar-action {
    cursor: pointer;
    transition: background-color .25s ease, color .25s ease, transform .2s ease;
}

.topbar .topbar-action:hover {
    background-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.topbar .topbar-action:hover small,
.topbar .topbar-action:hover i {
    color: #ffffff;
}

.topbar .topbar-action.btn-square:hover i {
    transform: scale(1.12);
}

.topbar .topbar-action.btn-square i {
    transition: transform .2s ease;
}

/* remove light borders look */
.topbar .border-start,
.topbar .border-end {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.topbar-hub-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    height: calc(100% - 10px);
    margin: 5px 0.35rem 5px 0;
    padding: 0 0.75rem;
    border-radius: 6px;
    font-family: "Poppins", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    color: #ffffff !important;
    line-height: 1;
    white-space: nowrap;
    transition: background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.topbar-hub-btn i {
    font-size: 0.72rem;
    opacity: 0.95;
}

.topbar-hub-btn--hub {
    background: #1368dc;
    border: 1px solid rgba(160, 205, 255, 0.35);
    box-shadow: 0 1px 4px rgba(0, 50, 120, 0.28);
    text-shadow: 0 1px 1px rgba(0, 28, 72, 0.3);
}

.topbar-hub-btn--hub:hover {
    background: #1a78f0;
    border-color: rgba(190, 220, 255, 0.5);
    box-shadow: 0 3px 10px rgba(0, 90, 220, 0.38);
    color: #ffffff !important;
}

.topbar-hub-btn--hub.topbar-hub-btn--active {
    background: #1a78f0;
    border-color: rgba(200, 230, 255, 0.55);
    box-shadow: 0 0 0 1px rgba(180, 215, 255, 0.35), 0 3px 10px rgba(0, 90, 220, 0.35);
}

.topbar-hub-btn--garage {
    background: #c8860c;
    border: 1px solid rgba(255, 220, 150, 0.35);
    box-shadow: 0 1px 4px rgba(100, 60, 0, 0.26);
    text-shadow: 0 1px 1px rgba(72, 42, 0, 0.3);
}

.topbar-hub-btn--garage:hover {
    background: #dba018;
    border-color: rgba(255, 230, 160, 0.5);
    box-shadow: 0 3px 10px rgba(200, 120, 0, 0.38);
    color: #ffffff !important;
}

.topbar-hub-btn--garage.topbar-hub-btn--active {
    background: #dba018;
    border-color: rgba(255, 235, 175, 0.55);
    box-shadow: 0 0 0 1px rgba(255, 220, 140, 0.3), 0 3px 10px rgba(200, 120, 0, 0.35);
}

/* ================================
   Service Card Blue → Orange Hover
================================ */

/* Default state: BLUE */
.service-item {
    background-color: var(--primary) !important;
}

.service-item .service-text {
    background-color: var(--primary);
}

.service-item .service-text h5,
.service-item .service-text p,
.service-item .service-text a {
    color: #ffffff;
}

/* Disable old overlay */
.service-text::before {
    display: none;
}

/* Hover state: ORANGE */
.service-item:hover {
    background-color: #FDA12B !important;
}

.service-item:hover .service-text {
    background-color: #FDA12B;
}

.service-item:hover .service-text h5,
.service-item:hover .service-text p,
.service-item:hover .service-text a {
    color: #ffffff !important;
}

/* Smooth transition */
.service-item,
.service-item .service-text {
    transition: background-color 0.3s ease;
}

/* DEFAULT: Enquire Now ORANGE */
.service-cta,
.service-cta i {
    color: #f96b13 !important;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* HOVER: Enquire Now BLUE */
.service-item:hover .service-cta,
.service-item:hover .service-cta i {
    color: var(--primary) !important;
}

/* ================================
   Services Page — modern cards
================================ */
.services-page .services-section-head {
    margin-top: 2.5rem;
    margin-bottom: 0.25rem;
}

.services-page .services-section-head:first-of-type {
    margin-top: 0;
}

.services-page .services-section-head h6 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.services-page .services-section-head .h4 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.services-page .service-page-card {
    cursor: default;
}

.services-page .service-page-card h5 {
    color: var(--dark);
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.35;
    padding: 0.42rem 0.7rem 0.42rem 0.8rem;
    margin: 0 0 0.65rem;
    border-left: 4px solid var(--primary);
    border-radius: 0 8px 8px 0;
    background: linear-gradient(
        90deg,
        rgba(0, 70, 174, 0.1) 0%,
        rgba(0, 70, 174, 0.03) 58%,
        transparent 100%
    );
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.services-page .service-page-card p {
    color: #5c6778;
}

@media (min-width: 768px) {
    .services-page .service-page-card {
        transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    }

    .services-page .service-page-card:hover h5 {
        color: var(--dark);
        border-left-color: #f96b13;
        background: linear-gradient(
            90deg,
            rgba(249, 107, 19, 0.12) 0%,
            rgba(249, 107, 19, 0.03) 55%,
            transparent 100%
        );
    }

    .services-page .service-page-card:hover {
        transform: translateY(-3px);
        border-color: rgba(0, 70, 174, 0.14);
        box-shadow: 0 12px 26px rgba(24, 35, 51, 0.12);
    }

    .services-page .service-page-card:hover .service-enquire-btn {
        color: #f96b13;
    }
}

.services-page .service-enquire-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 14px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color .25s ease, background-color .25s ease;
}

.services-page .service-enquire-btn:hover {
    color: #003580;
}

@media (max-width: 767.98px) {
    .services-page .services-section-head {
        margin-top: 2rem;
        margin-bottom: 0.5rem;
    }

    .services-page .services-section-head h6 {
        font-size: 0.95rem;
    }

    .services-page .services-section-head .h4 {
        font-size: 1.55rem;
        line-height: 1.25;
    }

    .services-page .service-page-card {
        display: grid;
        grid-template-columns: 38% 1fr;
        align-items: stretch;
        min-height: 170px;
        border-radius: 10px;
        box-shadow: 0 8px 22px rgba(24, 35, 51, .1);
    }

    .services-page .service-page-card:hover {
        transform: none;
        box-shadow: 0 10px 24px rgba(24, 35, 51, .13);
    }

    .services-page .service-page-card img {
        width: 100%;
        height: 100%;
        min-height: 170px;
        object-fit: cover;
    }

    .services-page .service-page-card .home-service-card-body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 12px 14px;
        text-align: left;
    }

    .services-page .service-page-card .service-card-tag {
        font-size: 9px;
        min-height: 22px;
        padding: 3px 9px;
        margin-bottom: 6px;
    }

    .services-page .service-page-card h5 {
        font-size: 1.02rem;
        line-height: 1.32;
        margin-bottom: 0.35rem;
        padding: 0.32rem 0.5rem 0.32rem 0.62rem;
        border-left-width: 3px;
        border-radius: 0 6px 6px 0;
    }

    .services-page .service-page-card p {
        font-size: 0.78rem;
        line-height: 1.4;
        margin-bottom: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .services-page .service-enquire-btn {
        width: auto;
        align-self: flex-start;
        justify-content: center;
        margin-top: 4px;
        padding: 0.28rem 0.45rem;
        min-height: 32px;
        border-radius: 4px;
        background: var(--primary);
        color: #ffffff !important;
        font-size: 0.6875rem;
        line-height: 1.15;
        letter-spacing: 0.02em;
    }

    .services-page .service-enquire-btn i {
        font-size: 0.58rem;
        margin-left: 0.25rem !important;
    }

    .services-page .service-enquire-btn:hover {
        background: #003580;
        color: #ffffff !important;
    }

    .services-page .service-page-card:hover .service-enquire-btn {
        background: #f96b13;
        color: #ffffff !important;
    }

    .services-page .service-page-card:hover .service-enquire-btn:hover {
        background: #e05a0a;
        color: #ffffff !important;
    }

    .services-page .services-grid {
        display: flex;
        flex-direction: column;
    }

    .services-page .services-grid__more-item {
        display: none;
        order: 9;
    }

    .services-page .services-grid.services-grid--expanded .services-grid__more-item {
        display: block;
    }

    .services-page .services-more-trigger-wrap {
        order: 10;
        text-align: center;
        margin-top: 1.1rem;
    }

    .services-page .services-more__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 38px;
        padding: 0.5rem 1.1rem;
        margin: 0 auto;
        border: 2px solid var(--primary);
        border-radius: 6px;
        color: var(--primary);
        background: transparent;
        font-weight: 600;
        font-size: 0.84rem;
        cursor: pointer;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .services-page .services-more__toggle::after {
        content: "\f078";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-left: 0.5rem;
        font-size: 0.75rem;
        transition: transform 0.2s ease;
    }

    .services-page .services-grid.services-grid--expanded .services-more__toggle::after {
        transform: rotate(180deg);
    }

    .services-page .services-more__toggle:hover {
        color: #fff;
        background: var(--primary);
    }

    .services-page .services-grid.services-grid--expanded .services-more__label-more {
        display: none;
    }

    .services-page .services-grid:not(.services-grid--expanded) .services-more__label-less {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .wd-floating-whatsapp {
        display: none !important;
    }

    .wd-floating-actions .back-to-top {
        display: none !important;
    }

    body[data-seo-page="service"] .back-to-top {
        right: 20px;
        bottom: 20px;
        width: 48px;
        height: 48px;
        display: none;
        align-items: center;
        justify-content: center;
    }

    body[data-seo-page="service"] .back-to-top.is-visible {
        display: flex !important;
    }

    .services-page {
        padding-top: 2rem !important;
    }

    .services-page .border-start {
        padding-left: 1rem !important;
    }

    .services-page .display-6 {
        font-size: 1.8rem;
        line-height: 1.25;
    }
}


/* Client Card */
a.client-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

a.client-card-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 10px;
}

.client-card {
  background: #f8f9fa;
  min-height: 170px;
  height: auto;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Hover 3D Effect */
.client-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 12px 28px rgba(0, 70, 174, 0.14),
    0 4px 12px rgba(0, 0, 0, 0.08);
  background: #eef4fc;
  border-color: rgba(0, 70, 174, 0.22);
}

/* Logo container */
.client-logo {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

/* Slight logo pop */
.client-card:hover .client-logo {
  transform: scale(1.08);
}

/* Logo image */
.client-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* Client name */
.client-name {
  font-size: clamp(12px, 2.8vw, 13px);
  font-weight: 600;
  margin: 0;
  color: #333;
  line-height: 1.35;
  transition: color 0.3s ease;
  word-break: break-word;
  hyphens: auto;
}

/* Text color on hover */
.client-card:hover .client-name {
  color: var(--primary);
}

/* Clients page — gallery slider */
.clients-page .client-gallery-wrap {
  position: relative;
  padding: 0 42px;
  overflow-x: clip;
}

.clients-page .clients-grid-loading {
  min-height: 180px;
}

.clients-page #clientsGallerySection[hidden] {
  display: none !important;
}

.client-gallery-wrap {
  position: relative;
  padding: 0 42px;
  overflow-x: clip;
}

.client-gallery-carousel {
  position: relative;
}

.client-gallery-carousel .client-gallery__item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.client-gallery-carousel .client-gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 70, 174, 0.18);
}

.client-gallery-carousel .client-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.client-gallery__trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  position: relative;
}

.client-gallery__trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 70, 174, 0);
  transition: background 0.25s ease;
}

.client-gallery__trigger:hover::after,
.client-gallery__trigger:focus-visible::after {
  background: rgba(0, 70, 174, 0.12);
}

.client-gallery__trigger:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.client-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(7, 17, 31, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.client-gallery-lightbox.is-open {
  display: flex;
}

.client-gallery-lightbox__figure {
  margin: 0;
  max-width: min(1200px, 95vw);
  text-align: center;
}

.client-gallery-lightbox__figure img {
  max-width: 95vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(0, 87, 255, 0.35);
}

.client-gallery-lightbox__figure figcaption {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.client-gallery-lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.client-gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 87, 255, 0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
}

.client-gallery-lightbox__nav--prev {
  left: 1rem;
}

.client-gallery-lightbox__nav--next {
  right: 1rem;
}

.client-gallery-lightbox__close:hover,
.client-gallery-lightbox__nav:hover {
  filter: brightness(1.08);
}

@media (max-width: 575.98px) {
  .client-gallery-lightbox__nav {
    width: 40px;
    height: 40px;
  }

  .client-gallery-lightbox__nav--prev {
    left: 0.35rem;
  }

  .client-gallery-lightbox__nav--next {
    right: 0.35rem;
  }
}

.client-gallery-carousel .owl-nav {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}

.client-gallery-carousel .owl-nav .owl-prev,
.client-gallery-carousel .owl-nav .owl-next {
  pointer-events: auto;
  margin: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50%;
  font-size: 18px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
}

.clients-page .client-gallery-carousel .owl-nav .owl-prev {
  margin-left: -42px;
}

.clients-page .client-gallery-carousel .owl-nav .owl-next {
  margin-right: -42px;
}

.client-gallery-carousel .owl-nav .owl-prev {
  margin-left: -42px;
}

.client-gallery-carousel .owl-nav .owl-next {
  margin-right: -42px;
}

.client-gallery-carousel .owl-nav .owl-prev:hover,
.client-gallery-carousel .owl-nav .owl-next:hover {
  color: #fff;
  background: var(--primary);
}

@media (max-width: 575.98px) {
  .client-gallery-wrap {
    padding: 0 36px;
  }

  .client-gallery-carousel .owl-nav .owl-prev {
    margin-left: -36px;
  }

  .client-gallery-carousel .owl-nav .owl-next {
    margin-right: -36px;
  }

  .client-gallery-carousel .owl-nav .owl-prev,
  .client-gallery-carousel .owl-nav .owl-next {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
}

/* Clients page — video slider */
.clients-page .client-video-wrap {
  position: relative;
  padding: 0 42px;
  overflow-x: clip;
}

.clients-page #clientsVideosWrap[hidden],
.clients-page #clientsVideosEmpty[hidden] {
  display: none !important;
}

.client-video-empty {
  margin: 0;
  padding: 1.5rem 1rem 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: #6c757d;
}

.client-video-carousel .client-video__item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.client-video-carousel .client-video__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 70, 174, 0.18);
}

.client-video__trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #0d1520;
  cursor: pointer;
  position: relative;
}

.client-video__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

.client-video__trigger:hover .client-video__thumb,
.client-video__trigger:focus-visible .client-video__thumb {
  transform: scale(1.03);
  opacity: 0.92;
}

.client-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 70, 174, 0.92);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, background 0.25s ease;
}

.client-video__play i {
  margin-left: 0.15rem;
  font-size: 0.95rem;
}

.client-video__trigger:hover .client-video__play,
.client-video__trigger:focus-visible .client-video__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--primary);
}

.client-video__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem 0.85rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  text-align: left;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 12, 20, 0.82) 100%);
  pointer-events: none;
}

.client-video__trigger:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.client-video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(8, 12, 20, 0.92);
}

.client-video-lightbox.is-open {
  display: flex;
  flex-direction: column;
}

.client-video-lightbox__frame-wrap {
  position: relative;
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.client-video-lightbox__frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.client-video-lightbox__caption {
  margin: 0.85rem 0 0;
  max-width: min(960px, 100%);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.client-video-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.client-video-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.client-video-carousel .owl-nav {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}

.client-video-carousel .owl-nav .owl-prev,
.client-video-carousel .owl-nav .owl-next {
  pointer-events: auto;
  margin: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50%;
  font-size: 18px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
}

.clients-page .client-video-carousel .owl-nav .owl-prev {
  margin-left: -42px;
}

.clients-page .client-video-carousel .owl-nav .owl-next {
  margin-right: -42px;
}

.client-video-carousel .owl-nav .owl-prev:hover,
.client-video-carousel .owl-nav .owl-next:hover {
  color: #fff;
  background: var(--primary);
}

@media (max-width: 575.98px) {
  .client-video-wrap {
    padding: 0 36px;
  }

  .client-video-carousel .owl-nav .owl-prev {
    margin-left: -36px;
  }

  .client-video-carousel .owl-nav .owl-next {
    margin-right: -36px;
  }

  .client-video-carousel .owl-nav .owl-prev,
  .client-video-carousel .owl-nav .owl-next {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .client-video__play {
    width: 2.75rem;
    height: 2.75rem;
  }
}

/* Clients page — mobile layout & typography */
@media (max-width: 991.98px) {
  .clients-page .container-xxl.py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .clients-page .border-start.border-5.ps-4 {
    padding-left: 1rem !important;
    margin-bottom: 2rem !important;
  }

  .clients-page .display-6 {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .clients-page .service-item .service-text {
    padding: 1.35rem 1.15rem !important;
  }

  .clients-page .service-item .service-text h5 {
    font-size: 1.05rem;
  }

  .clients-page .service-item .service-text p {
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .clients-page .page-header h1.display-4 {
    font-size: 2rem;
  }

  .clients-page .page-header .py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .clients-page .row.g-4 {
    --bs-gutter-x: 0.85rem;
    --bs-gutter-y: 0.85rem;
  }

  .client-logo {
    height: 88px;
    margin-bottom: 8px;
  }

  .client-card {
    min-height: 148px;
    padding: 12px 10px;
  }

  .client-name {
    font-size: 12px;
    line-height: 1.3;
  }

  .clients-page .home-feature-card__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(8, 12, 20, 0.15) 0%,
        rgba(8, 12, 20, 0.55) 45%,
        rgba(8, 12, 20, 0.92) 100%
      );
  }

  .clients-page .home-feature-card__text {
    font-size: 0.88rem;
    line-height: 1.5;
    max-width: none;
  }

  .clients-page .client-gallery-wrap {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 2rem;
    box-sizing: border-box;
  }

  .clients-page .client-video-wrap {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 2rem;
    box-sizing: border-box;
  }

  .clients-page .client-gallery-carousel .client-gallery__item {
    aspect-ratio: 5 / 4;
  }

  .clients-page .client-gallery-carousel .owl-nav .owl-prev,
  .clients-page .client-gallery-carousel .owl-nav .owl-next {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 575.98px) {
  .clients-page .container-xxl.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .clients-page .display-6 {
    font-size: 1.45rem;
  }

  .clients-page .border-start.border-5 h6 {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }

  .clients-page .client-gallery-wrap {
    padding: 0 1.75rem;
  }

  .clients-page .client-video-wrap {
    padding: 0 1.75rem;
  }

  .clients-page .client-gallery-carousel .client-gallery__item {
    aspect-ratio: 5 / 4;
  }

  .clients-page .client-gallery-carousel .owl-nav {
    left: 0;
    right: 0;
    padding: 0 0.15rem;
  }

  .client-gallery-carousel .owl-nav .owl-prev,
  .client-gallery-carousel .owl-nav .owl-next {
    margin-left: 0;
    margin-right: 0;
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .clients-page .client-gallery-carousel .client-gallery__item {
    border-radius: 10px;
  }

  .clients-page .home-feature-card,
  .clients-page .home-feature-card__content {
    min-height: 280px;
  }

  .clients-page .home-feature-card__title {
    font-size: 1.3rem;
  }

  .clients-page .home-event-cta {
    padding: 1.25rem 1rem;
  }

  .clients-page .home-event-cta__title {
    font-size: 1.2rem;
  }

  .clients-page .home-event-cta__text {
    font-size: 0.92rem;
  }

  .clients-page .home-event-cta__btn {
    width: 100%;
    max-width: 280px;
    padding: 0.75rem 1.25rem;
  }
}

@media (max-width: 359.98px) {
  .clients-page .row.g-4 > [class*="col-6"] {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .client-card {
    min-height: 132px;
  }

  .client-logo {
    height: 76px;
  }
}

/* Clients page — host event CTA (taller block above feature cards) */
.clients-page .home-event-cta {
  padding: 2.85rem 3rem;
}

.clients-page .home-event-cta__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.clients-page .home-event-cta__title {
  margin-bottom: 0.65rem;
}

.clients-page .home-event-cta__text {
  margin-bottom: 1.35rem;
  max-width: 38rem;
}

/* Clients page — feature card CTA as solid buttons */
.clients-page .home-feature-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 40px;
  padding: 0.55rem 1.1rem;
  border-radius: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: 0 5px 14px rgba(0, 70, 174, 0.3);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.clients-page .home-feature-card__cta i {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
}

.clients-page .home-feature-card:hover .home-feature-card__cta {
  color: #fff;
  background: #f96b13;
  border-color: #f96b13;
  box-shadow: 0 8px 22px rgba(249, 107, 19, 0.45);
  transform: translateY(-2px);
}

.clients-page .home-feature-card:hover .home-feature-card__cta i {
  transform: translateX(4px);
}

@media (max-width: 575.98px) {
  .clients-page .home-feature-card__cta {
    width: 100%;
    max-width: 230px;
    min-height: 38px;
    font-size: 0.68rem;
    padding: 0.5rem 1rem;
  }
}

/* EVENTS GRID */
.events-list-section {
  overflow-x: clip;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: none;
  align-items: start;
}

/* Event Card Default */
.event-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border: 2px solid #0d6efd;
  border-radius: 8px;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  width: 100%;
  align-self: start;
  height: auto;
  cursor: default;
}

.event-card.active {
  border-color: #0046ae;
  box-shadow: 0 8px 28px rgba(0, 70, 174, 0.16);
}

/* Hover Effect – ONLY PROJECTION */
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  background: #ffffff;
  color: inherit;
}

/* Poster-style rectangle — full image visible, centered (portrait or landscape) */
.event-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0b1520;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px 6px 0 0;
}

.event-card--has-url .event-card__media {
  cursor: pointer;
}

.event-card--has-url .event-card__media:hover img {
  opacity: 0.92;
}

.event-card--has-url .event-card__media:focus-visible {
  outline: 2px solid #0046ae;
  outline-offset: -2px;
}

.event-card__media img,
.event-card > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.2s ease;
}

.event-card__tag {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.event-card__tag--upcoming {
  background: #16a34a;
  color: #fff;
}

.event-card__tag--live {
  background: #0046ae;
  color: #fff;
}

.event-card__tag--ended,
.event-card__tag--cancelled,
.event-card__tag--postponed {
  background: #dc2626;
  color: #fff;
}

.event-card--ended {
  opacity: 0.92;
}

.event-info {
  padding: 0.65rem 0.75rem;
  text-align: center;
}

.event-card h5 {
  font-size: 0.92rem;
  line-height: 1.3;
  color: #1a2233;
  font-weight: 700;
}

.event-card__meta {
  font-size: 0.78rem;
  margin-top: 0.35rem;
  color: #0046ae;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.event-card h5,
.event-card__meta {
  margin: 0;
  transition: color 0.3s;
}

.event-card__title {
  margin: 0;
}

.event-card--has-url .event-card__title {
  cursor: pointer;
}

.event-card--has-url .event-card__title:hover {
  color: #0046ae;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.event-card--has-url .event-card__title:focus-visible {
  outline: 2px solid #0046ae;
  outline-offset: 2px;
  border-radius: 4px;
}

.event-card:hover h5:not(.event-card__title:hover) {
  color: #1a2233;
}

.event-card:hover .event-card__meta {
  color: #f96b13;
}

.event-card .expand-hint {
  text-align: center;
  font-size: 0.72rem;
  color: #999;
  margin-top: 0.45rem;
  transition: color 0.22s ease;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.event-card .expand-hint:hover {
  color: #0046ae;
}

.event-card .expand-hint:focus-visible {
  outline: 2px solid #0046ae;
  outline-offset: 2px;
  border-radius: 4px;
  color: #0046ae;
}

.event-card .expand-hint i {
  display: block;
  font-size: 0.9rem;
  transition: transform 0.22s ease;
}

.event-card.active .expand-hint {
  color: #0046ae;
}

.event-card.active .expand-hint i {
  transform: rotate(180deg);
}

.event-desc-wrap {
  display: none;
  padding: 0 0.75rem 0.75rem;
  text-align: left;
}

.event-card:not(.active) .event-desc-wrap {
  display: none !important;
}

.event-card.active .event-desc-wrap {
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 70, 174, 0.45) transparent;
}

.event-card.active .event-desc-wrap::-webkit-scrollbar {
  width: 5px;
}

.event-card.active .event-desc-wrap::-webkit-scrollbar-thumb {
  background: rgba(0, 70, 174, 0.4);
  border-radius: 4px;
}

.event-card.active .event-desc-wrap::-webkit-scrollbar-track {
  background: transparent;
}

.event-desc-wrap .event-desc-text,
.event-desc-wrap p {
  font-size: 0.78rem;
  color: #555;
  line-height: 1.55;
  margin: 0;
  border-top: 1px solid #eee;
  padding-top: 0.65rem;
  white-space: pre-line;
  word-break: break-word;
}

body.events-page .events-grid {
  align-items: start;
}

@media (min-width: 992px) {
  .events-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .event-info {
    padding: 0.8rem 0.9rem;
  }

  .event-card h5 {
    font-size: 1rem;
  }

  .event-card__meta {
    font-size: 0.85rem;
  }
}

@media (min-width: 1200px) {
  .events-grid {
    gap: 1.65rem;
  }
}

@media (max-width: 991.98px) {
  .events-grid {
    gap: 1.15rem;
  }
}

@media (max-width: 575.98px) {
  .events-list-section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .events-page__intro h2 {
    font-size: 1.65rem;
  }

  .events-grid {
    gap: 0.75rem;
  }

  .event-info {
    padding: 0.55rem 0.5rem;
  }

  .event-card h5 {
    font-size: 0.85rem;
  }

  .event-card__meta {
    font-size: 0.72rem;
  }
}

.race-calendar {
  border-left: 4px solid #0d6efd;
  padding-left: 30px;
}

.race-month {
  margin-bottom: 40px;
}

.race-month h3 {
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.race-card {
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.race-card:hover {
  background: #0d6efd;
  transform: translateX(10px);
}

.race-card:hover h5,
.race-card:hover p {
  color: #fff;
}

.race-tag {
  display: inline-block;
  background: #f96b13;
  color: #fff;
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.section-title-line {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    font-size: 2.2rem;
    font-weight: 700;
    color: #0046ae;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 40px 0;
}

.section-title-line::before,
.section-title-line::after {
    content: "";
    flex: 1;
    height: 4px;
    background: linear-gradient(90deg, #0046ae, #0056d6);
    margin: 0 20px;
    border-radius: 3px;
}

/* RC Arena Solutions */
.arena-page .arena-section {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
}

.arena-page .page-header.mb-4 {
    margin-bottom: 1.5rem !important;
}

.arena-page .arena-section--cta {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.arena-page .arena-process-lead {
    color: #5f6873;
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 640px;
}

.arena-page .arena-types-more-wrap {
    margin-top: 0.35rem;
    text-align: center;
}

@media (min-width: 768px) {
    .arena-page .arena-types-more-wrap {
        display: none;
    }
}

.arena-page .arena-types-more__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.55rem 1.25rem;
    border: 2px solid var(--primary);
    border-radius: 6px;
    color: var(--primary);
    background: transparent;
    font-weight: 600;
    font-size: 0.88rem;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.arena-page .arena-types-more__toggle.is-expanded .arena-types-more__label-more {
    display: none;
}

.arena-page .arena-types-more__toggle:not(.is-expanded) .arena-types-more__label-less {
    display: none;
}

.arena-page .arena-types-more__toggle::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5rem;
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.arena-page .arena-types-more__toggle.is-expanded::after {
    transform: rotate(180deg);
}

.arena-page .arena-types-more__toggle:hover {
    color: #fff;
    background: var(--primary);
}

.arena-page .arena-check-grid--compact div {
    padding: 12px 14px;
}

.arena-page .arena-check-grid--compact span {
    font-size: 0.92rem;
    line-height: 1.45;
}

.arena-page .arena-business-card {
    padding: 18px;
}

.arena-page .arena-business-card i {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
}

.arena-page .arena-business-card p {
    font-size: 0.92rem;
    line-height: 1.5;
}

.arena-page .arena-proof--dark {
    padding: 18px;
}

.arena-page .arena-proof--dark span {
    min-width: 40px;
    height: 40px;
    margin-bottom: 12px;
    font-size: 18px;
}

.arena-page .arena-proof--dark p {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.arena-page .arena-step {
    padding: 18px;
}

.arena-page .arena-step span {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.arena-page .arena-step p {
    font-size: 0.92rem;
}

.arena-page .arena-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 12px;
    border: 1px solid rgba(0, 70, 174, .18);
    border-radius: 999px;
    color: var(--primary);
    background: rgba(0, 70, 174, .06);
    font-size: 13px;
    font-weight: 500;
}

.arena-page .arena-section-eyebrow {
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f96b13;
}

@media (min-width: 768px) {
    .arena-page .arena-section-eyebrow {
        font-size: 1.08rem;
        letter-spacing: 0.09em;
    }
}

.arena-business-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.arena-page .arena-business-hero {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.arena-page .arena-business-hero__head {
    margin-bottom: 0;
}

.arena-page .arena-business-hero__title {
    white-space: nowrap;
}

.arena-page .arena-business-hero__media .arena-hero-image {
    position: static;
    width: 100%;
    height: auto;
    max-height: none;
}

.arena-page .arena-business-hero__media .arena-hero-image--16x9 {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
}

.arena-page .arena-business-hero__media .arena-hero-image img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: initial;
    object-position: center;
    border-radius: 8px;
    display: block;
}

.arena-page .arena-business-hero__media .arena-hero-image--16x9 img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
}

.arena-page .arena-track-carousel-wrap {
    position: relative;
    width: 100%;
}

.arena-page .arena-track-carousel {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    background: #0f1724;
}

.arena-page .arena-track-carousel .carousel-inner,
.arena-page .arena-track-carousel .carousel-item {
    width: 100%;
    height: 100%;
}

.arena-page .arena-track-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.arena-page .arena-track-carousel-ui {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.arena-page .arena-track-carousel__indicators {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.75rem;
    margin: 0;
    pointer-events: auto;
}

.arena-page .arena-track-carousel-wrap .carousel-control-prev,
.arena-page .arena-track-carousel-wrap .carousel-control-next {
    width: 1.9rem;
}

.arena-page .arena-track-carousel__control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1.9rem;
    height: 1.9rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(10, 18, 32, 0.45);
    opacity: 0.72;
    pointer-events: auto;
    transition: opacity 0.2s ease, background 0.2s ease;
}

.arena-page .arena-track-carousel__control:hover,
.arena-page .arena-track-carousel__control:focus-visible {
    opacity: 1;
    background: rgba(10, 18, 32, 0.68);
    outline: none;
}

.arena-page .arena-track-carousel__control .carousel-control-prev-icon,
.arena-page .arena-track-carousel__control .carousel-control-next-icon {
    width: 0.72rem;
    height: 0.72rem;
    margin: 0 auto;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    background-size: 100% 100%;
    filter: brightness(1.15);
}

.arena-page .arena-track-carousel__control.carousel-control-prev {
    left: 0.45rem;
}

.arena-page .arena-track-carousel__control.carousel-control-next {
    right: 0.45rem;
}

.arena-page .arena-track-carousel__indicators [data-bs-target] {
    width: 1.35rem;
    height: 0.18rem;
    margin: 0 0.18rem;
    border: 0;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.38);
    opacity: 1;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.arena-page .arena-track-carousel__indicators .active {
    background-color: rgba(255, 255, 255, 0.92);
    transform: scaleX(1.08);
}

.arena-page .arena-track-carousel--single .arena-track-carousel__control,
.arena-page .arena-track-carousel--single .arena-track-carousel__indicators {
    display: none;
}

.arena-page .arena-business-hero__content p {
    margin-bottom: 0.4rem;
    color: #5c6778;
    line-height: 1.5;
}

.arena-page .arena-split-row__body p {
    color: #5c6778;
}

.arena-page .arena-business-hero__content .arena-highlight-list {
    margin-bottom: 0;
}

.arena-page .arena-business-hero__content {
    overflow: visible;
}

.arena-page .arena-business-hero__actions {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 28px;
    margin-top: 0;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding: 4px 0 8px;
}

.arena-page .arena-business-hero__actions .arena-highlight-list {
    display: flex;
    flex-wrap: nowrap;
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    gap: 12px;
}

.arena-page .arena-business-hero__actions .arena-highlight-list span {
    min-height: 38px;
    padding: 8px 16px;
    font-size: 13.5px;
    flex-shrink: 0;
    white-space: nowrap;
}

.arena-page .arena-business-hero__actions .arena-business-hero__footer .btn {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
    padding-left: 1.35rem !important;
    padding-right: 1.35rem !important;
    font-size: 1rem;
    line-height: 1.3;
}

.arena-page .arena-business-hero__cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 48px;
    overflow: hidden;
    isolation: isolate;
    letter-spacing: 0.02em;
    vertical-align: middle;
    box-shadow: none;
}

.arena-page .arena-business-hero__cta::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        105deg,
        transparent 38%,
        rgba(255, 255, 255, 0.28) 50%,
        transparent 62%
    );
    transform: translateX(-130%);
    animation: arena-business-cta-shine 3.8s ease-in-out infinite;
    pointer-events: none;
}

.arena-page .arena-business-hero__cta-label,
.arena-page .arena-business-hero__cta-icon {
    position: relative;
    z-index: 1;
}

.arena-page .arena-business-hero__cta-icon {
    font-size: 0.88em;
    transition: transform 0.25s ease;
}

.arena-page .arena-business-hero__cta:hover .arena-business-hero__cta-icon,
.arena-page .arena-business-hero__cta:focus-visible .arena-business-hero__cta-icon {
    transform: translateX(3px);
}

.arena-page .arena-business-hero__cta.btn.btn-primary:hover,
.arena-page .arena-business-hero__cta.btn.btn-primary:focus-visible {
    box-shadow: none;
    transform: translateY(-6px);
}

@keyframes arena-business-cta-shine {
    0%,
    72%,
    100% {
        transform: translateX(-130%);
    }

    28% {
        transform: translateX(130%);
    }
}

.arena-page .arena-primary-cta-shine {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    box-shadow: none;
}

.arena-page .arena-primary-cta-shine::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        105deg,
        transparent 38%,
        rgba(255, 255, 255, 0.28) 50%,
        transparent 62%
    );
    transform: translateX(-130%);
    animation: arena-business-cta-shine 3.8s ease-in-out infinite;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .arena-page .arena-business-hero__cta::after {
        animation: none;
    }

    .arena-page .arena-primary-cta-shine::after {
        animation: none;
    }

    .arena-page .arena-business-hero__cta:hover .arena-business-hero__cta-icon,
    .arena-page .arena-business-hero__cta:focus-visible .arena-business-hero__cta-icon {
        transform: none;
    }
}

.arena-page .arena-business-hero__footer {
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    align-self: center;
    transform: translateY(-6px);
}

@media (min-width: 992px) {
    .arena-page .arena-business-hero__actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 1.25rem 1.5rem;
        overflow-x: visible;
    }

    .arena-page .arena-business-hero__actions .arena-highlight-list {
        flex-wrap: wrap;
        width: 100%;
        min-width: 0;
    }

    .arena-page .arena-business-hero__footer {
        justify-self: end;
        transform: none;
    }
}

@media (max-width: 767.98px) {
    .arena-page .arena-business-hero__actions .arena-business-hero__footer .btn {
        font-size: 0.96rem;
        min-height: 46px;
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
        white-space: nowrap;
    }
}

.arena-page .arena-business-hero + .border-start {
    margin-top: 2rem;
}

@media (max-width: 1199.98px) {
    .arena-page .arena-business-hero__title {
        white-space: normal;
    }
}

.arena-page .btn.btn-primary {
    background-color: #f96b13;
    border-color: #f96b13;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
}

.arena-page .btn.btn-primary:hover,
.arena-page .btn.btn-primary:focus-visible {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 70, 174, 0.4);
    transform: translateY(-2px);
}

.arena-page .arena-highlight-list {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.arena-page .arena-highlight-list span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 6px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--primary);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    white-space: normal;
}

.arena-page .arena-highlight-list__tag--mobile {
    display: none;
}

.arena-page .arena-cta .btn.btn-light {
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
}

.arena-page .arena-cta .btn.btn-light:hover,
.arena-page .arena-cta .btn.btn-light:focus-visible {
    background-color: #f96b13;
    border-color: #f96b13;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(249, 107, 19, 0.45);
    transform: translateY(-2px);
}

.arena-page .arena-business-card {
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(24, 35, 51, .08);
    box-shadow: 0 10px 26px rgba(24, 35, 51, .08);
}

.arena-page .arena-business-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 8px;
    color: #ffffff;
    background: #f96b13;
}

.arena-page .arena-business-card p {
    margin-bottom: 0;
    color: #5f6873;
}

.arena-page .arena-build-plan-track {
    position: relative;
    margin-bottom: 0;
}

.arena-page .arena-build-plan-cards {
    position: relative;
    z-index: 1;
}

.arena-page .arena-hero-image,
.arena-page .arena-feature-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(24, 35, 51, .16);
}

.arena-page .arena-business-section .arena-hero-image {
    box-shadow: none;
    border-radius: 8px;
    background: transparent;
}

.arena-page .arena-business-section .arena-hero-image img {
    object-position: center 38%;
}

.arena-page .arena-business-section .arena-hero-image--contain {
    background: #ffffff;
}

.arena-page .arena-hero-image img,
.arena-page .arena-feature-image img {
    width: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 992px) {
    .arena-page .arena-split-row {
        align-items: stretch;
    }

    .arena-page .arena-split-row__text-col {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
        justify-content: space-between;
        height: 100%;
    }

    .arena-page .arena-split-row__body {
        display: flex;
        flex-direction: column;
        flex: 1;
        gap: 0.65rem;
        justify-content: center;
    }

    .arena-page .arena-split-row__body p {
        margin-bottom: 0 !important;
        line-height: 1.55;
        color: #5c6778;
    }

    .arena-page .arena-split-row__body .arena-highlight-list {
        margin-bottom: 0 !important;
        margin-top: 0.15rem;
    }

    .arena-page .arena-split-row__body .arena-value-grid,
    .arena-page .arena-split-row__body .arena-check-grid {
        margin-top: 0.15rem;
    }

    .arena-page .arena-split-row__footer {
        flex-shrink: 0;
        margin-top: 0.25rem;
    }

    .arena-page .arena-split-row__footer .btn {
        margin-top: 0 !important;
    }

    /* Track building carousel — fixed 16:9 on all breakpoints */
    .arena-page .arena-split-row__media {
        position: relative;
        min-height: 0;
    }

    .arena-page .arena-split-row__media .arena-track-carousel-wrap,
    .arena-page .arena-split-row__media .arena-track-carousel {
        position: static;
        height: auto;
    }

    .arena-page .arena-split-row__media .arena-hero-image,
    .arena-page .arena-split-row__media .arena-feature-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        display: block;
    }

    .arena-page .arena-split-row__media .arena-hero-image img,
    .arena-page .arena-split-row__media .arena-feature-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .arena-page .arena-split-row__media .arena-hero-image--contain {
        background: #ffffff;
    }

    .arena-page .arena-split-row__media .arena-feature-image--contain {
        background: #ffffff;
    }

    .arena-page .arena-business-section .arena-split-row__media .arena-hero-image--contain {
        background: #ffffff;
    }

    .arena-page .arena-split-row__media .arena-hero-image--contain img {
        object-fit: contain;
        object-position: center;
        padding: 1.25rem;
    }

    .arena-page .arena-split-row__media .arena-feature-image--contain img {
        object-fit: contain;
        object-position: center;
        padding: 1.25rem;
    }

    .arena-page .arena-business-section .arena-split-row__media .arena-hero-image--contain img {
        padding: 1.25rem;
        background: #ffffff;
    }
}

.arena-page .arena-card {
    overflow: hidden;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(24, 35, 51, .08);
    box-shadow: 0 10px 26px rgba(24, 35, 51, .08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.arena-page .arena-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(24, 35, 51, .16);
}

.arena-page .arena-card img {
    width: 100%;
    height: 155px;
    object-fit: cover;
    display: block;
}

.arena-page .arena-card-body {
    padding: 14px 16px;
}

.arena-page .arena-card-body h5 {
    margin-bottom: 6px;
    font-size: 1rem;
}

.arena-page .arena-type-card .arena-card-body h5 {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    width: auto;
    max-width: 100%;
    margin-bottom: 0.55rem;
    padding: 0.38rem 0.85rem 0.38rem 0.72rem;
    border: 0;
    border-radius: 0;
    color: #ffffff;
    background: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.02em;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    filter: drop-shadow(0 3px 8px rgba(0, 70, 174, 0.2));
}

.arena-page .arena-card-body p {
    margin-bottom: 0;
    color: #5f6873;
    font-size: 0.88rem;
    line-height: 1.45;
}

.arena-page .arena-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.arena-page .arena-check-grid div {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(24, 35, 51, .08);
}

.arena-page .arena-check-grid i {
    color: #f96b13;
    margin-top: 4px;
}

.arena-process {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.arena-why-section {
    background: #ffffff;
}

.arena-page .arena-why-section__lead {
    color: #5f6873;
    line-height: 1.6;
}

.arena-page .arena-why-section .arena-business-card i {
    background: var(--primary);
}

@media (min-width: 1200px) {
    .arena-page .arena-why-cards {
        flex-wrap: nowrap;
    }

    .arena-page .arena-why-cards .arena-business-card {
        padding: 18px 14px;
    }

    .arena-page .arena-why-cards .arena-business-card i {
        width: 38px;
        height: 38px;
        margin-bottom: 14px;
        font-size: 0.95rem;
    }

    .arena-page .arena-why-cards .arena-business-card h5 {
        font-size: 0.95rem;
    }

    .arena-page .arena-why-cards .arena-business-card p {
        font-size: 0.84rem;
        line-height: 1.45;
    }
}

.arena-value-section {
    background: #ffffff;
}

.arena-page .arena-value-section .arena-feature-image img {
    object-position: 32% center;
}

.arena-page .arena-value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.arena-page .arena-value-grid div {
    padding: 16px;
    border-radius: 8px;
    background: #f8f9fa;
    border-left: 4px solid #f96b13;
}

.arena-page .arena-value-grid strong,
.arena-page .arena-value-grid span {
    display: block;
}

.arena-page .arena-value-grid strong {
    color: var(--dark);
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 0.95rem;
}

.arena-page .arena-value-grid span {
    color: #5f6873;
}

.arena-page .arena-step {
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(24, 35, 51, .08);
}

.arena-page .arena-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--primary);
    font-weight: 700;
}

.arena-page .arena-step p {
    margin-bottom: 0;
    color: #5f6873;
}

.arena-page .arena-proof {
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(24, 35, 51, .08);
    box-shadow: 0 10px 26px rgba(24, 35, 51, .08);
}

.arena-page .arena-proof span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 46px;
    margin-bottom: 18px;
    padding: 0 10px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--primary);
    font-weight: 800;
    font-size: 22px;
    line-height: 1;
}

.arena-page .arena-proof span i {
    font-size: 20px;
    line-height: 1;
}

.arena-page .arena-proof h5 {
    margin-bottom: 0.65rem;
    font-weight: 700;
    color: var(--dark);
}

.arena-page .arena-tailored-lead {
    max-width: 720px;
    font-size: 1rem;
    line-height: 1.65;
    color: #5f6873;
}

.arena-page .arena-tailored-section {
    position: relative;
    overflow: hidden;
    color: #e8eef7;
    background:
        linear-gradient(180deg, rgba(0, 70, 174, 0.1) 0%, transparent 45%),
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.02) 0,
            rgba(255, 255, 255, 0.02) 2px,
            transparent 2px,
            transparent 8px
        ),
        #0b0f14;
}

.arena-page .arena-tailored-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 70, 174, 0.32), transparent 42%),
        radial-gradient(circle at 85% 75%, rgba(0, 86, 214, 0.16), transparent 40%);
    pointer-events: none;
}

.arena-page .arena-tailored-section .container {
    position: relative;
    z-index: 1;
}

.arena-page .arena-tailored-section__eyebrow,
.arena-page .arena-section-eyebrow--dark {
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f96b13;
}

@media (min-width: 768px) {
    .arena-page .arena-tailored-section__eyebrow,
    .arena-page .arena-section-eyebrow--dark {
        font-size: 1rem;
    }
}

.arena-page .arena-tailored-section__title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    letter-spacing: 0.03em;
    background: linear-gradient(90deg, #ffffff 0%, #7eb4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.arena-page .arena-tailored-section .arena-tailored-lead {
    color: rgba(255, 255, 255, 0.68);
}

.arena-page .arena-proof--dark {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.arena-page .arena-proof--dark:hover {
    transform: translateY(-4px);
    border-color: rgba(126, 180, 255, 0.35);
    box-shadow: 0 14px 34px rgba(0, 70, 174, 0.22);
}

.arena-page .arena-proof--dark h5 {
    color: #ffffff;
    font-size: clamp(1.12rem, 1.8vw, 1.3rem);
    font-weight: 700;
    line-height: 1.3;
}

.arena-page .arena-proof--dark p {
    color: rgba(255, 255, 255, 0.88);
}

.arena-page .arena-proof--dark span {
    background: linear-gradient(135deg, #0046ae 0%, #0056d6 100%);
    box-shadow: 0 6px 18px rgba(0, 70, 174, 0.35);
}

.arena-page .arena-proof:not(.arena-proof--dark) p {
    margin-bottom: 0;
    color: #5f6873;
}

.arena-page .arena-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--primary);
}

.arena-page .arena-cta h2,
.arena-page .arena-cta p {
    color: #ffffff;
}

.arena-page .arena-cta p {
    max-width: 680px;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .arena-page .arena-section {
        padding-top: 2.25rem;
        padding-bottom: 2.25rem;
    }

    .arena-page .container {
        padding-left: 1.125rem;
        padding-right: 1.125rem;
    }

    /* Mobile order: title → image → text → CTA */
    .arena-page .arena-split-row {
        display: flex;
        flex-direction: column;
        --bs-gutter-y: 0.5rem;
        row-gap: 0.5rem;
    }

    .arena-page .arena-split-row__text-col {
        display: contents;
    }

    .arena-page .arena-split-row__head {
        order: 1;
        width: 100%;
        margin-bottom: 0 !important;
    }

    .arena-page .arena-split-row__media {
        order: 2;
        width: 100%;
        min-height: 0;
        margin-top: 0.15rem;
    }

    .arena-page .arena-split-row__body {
        order: 3;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 0.15rem;
    }

    .arena-page .arena-split-row__footer {
        order: 4;
        width: 100%;
        margin-top: 0.65rem;
    }

    .arena-page .arena-split-row__media .arena-hero-image,
    .arena-page .arena-split-row__media .arena-feature-image {
        position: static;
        height: auto;
    }

    .arena-page .arena-hero-image img,
    .arena-page .arena-feature-image img {
        height: auto;
    }

    .arena-page .arena-track-carousel .carousel-item img {
        height: 100%;
        object-fit: cover;
    }

    .arena-page .arena-custom-works-section .arena-feature-image img {
        height: auto;
        max-height: none;
        object-fit: contain;
        object-position: center;
    }

    .arena-page .arena-split-row__media .arena-hero-image--contain img,
    .arena-page .arena-split-row__media .arena-feature-image--contain img {
        height: auto;
        object-fit: initial;
        padding: 0;
        background: transparent;
    }

    .arena-page .arena-split-row__footer .btn {
        width: auto;
        display: inline-flex;
        padding: 0.7rem 1.35rem !important;
    }

    .arena-page .arena-cta {
        align-items: center;
        flex-direction: column;
        padding: 1.5rem 1.125rem;
        gap: 0.85rem;
        text-align: center;
    }

    .arena-page .arena-cta h2 {
        font-size: 1.4rem;
        line-height: 1.3;
        font-weight: 700;
    }

    .arena-page .arena-cta p {
        font-size: 0.9rem;
        line-height: 1.55;
        max-width: none;
    }

    .arena-page .arena-cta .btn {
        width: auto;
        display: inline-flex;
        padding: 0.7rem 1.5rem !important;
    }

    .arena-page .arena-check-grid {
        grid-template-columns: 1fr;
    }

    .arena-page .arena-business-hero__actions {
        flex-direction: column;
        align-items: stretch;
        overflow-x: visible;
        overflow-y: visible;
        gap: 1rem;
        padding: 0;
    }

    .arena-page .arena-business-hero__actions .arena-highlight-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        flex: none;
        gap: 8px;
    }

    .arena-page .arena-business-hero__actions .arena-highlight-list span {
        flex-shrink: 1;
        width: 100%;
        justify-content: center;
        text-align: center;
        white-space: normal;
        font-size: 12.5px;
        padding: 7px 10px;
        min-height: 34px;
    }

    .arena-page .arena-business-hero__footer {
        align-self: stretch;
        transform: none;
    }

    .arena-page .arena-business-hero__actions .arena-business-hero__footer .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .arena-page .container-xxl.py-5 {
        padding-top: 1.75rem !important;
        padding-bottom: 1.75rem !important;
    }

    .arena-page .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .arena-page .display-6 {
        font-size: 1.5rem;
        line-height: 1.28;
        font-weight: 700;
    }

    .arena-page .border-start.border-5.ps-4:not(.arena-split-row__head) {
        padding-left: 0.85rem !important;
        margin-bottom: 0.85rem !important;
    }

    .arena-page .arena-split-row__head.border-start {
        padding-left: 0.85rem !important;
        margin-bottom: 0 !important;
    }

    .arena-page .arena-split-row {
        --bs-gutter-y: 0.4rem;
        row-gap: 0.4rem;
    }

    .arena-page .arena-split-row__media {
        margin-top: 0.1rem;
    }

    .arena-page .arena-split-row__body {
        gap: 0.7rem;
        margin-top: 0.1rem;
    }

    .arena-page .arena-split-row__body p {
        line-height: 1.58;
        font-size: 0.9rem;
        margin-bottom: 0;
        color: #5c6778;
    }

    .arena-page .arena-highlight-list {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        align-content: flex-start;
        gap: 7px;
        margin-top: 0.15rem;
        margin-bottom: 0;
    }

    .arena-page .arena-business-hero__actions .arena-highlight-list span {
        min-height: 32px;
        padding: 7px 13px;
        font-size: 13px;
    }

    .arena-page .arena-highlight-list span {
        width: auto;
        max-width: 100%;
        justify-content: flex-start;
        text-align: left;
        font-size: 12.5px;
        font-weight: 500;
        min-height: 30px;
        padding: 5px 11px;
    }

    .arena-page .arena-highlight-list__tag--mobile {
        display: inline-flex;
    }

    .arena-page .arena-split-row__footer {
        margin-top: 0.5rem;
        padding-top: 0;
    }

    .arena-page .arena-hero-image img,
    .arena-page .arena-feature-image img {
        height: 185px;
    }

    .arena-page .arena-custom-works-section .arena-feature-image img {
        height: auto;
        max-height: none;
        object-fit: contain;
        object-position: center;
    }

    .arena-page .arena-hero-image--contain img,
    .arena-page .arena-split-row__media .arena-hero-image--contain img,
    .arena-page .arena-split-row__media .arena-feature-image--contain img {
        object-fit: contain;
        background: #ffffff;
        padding: 0.85rem;
    }

    .arena-page .arena-split-row__media .arena-hero-image--contain img,
    .arena-page .arena-split-row__media .arena-feature-image--contain img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: initial;
        object-position: center;
        padding: 0;
        background: transparent;
    }

    .arena-page .arena-business-section .arena-split-row__media .arena-hero-image--contain img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: initial;
        object-position: center;
        padding: 0;
        background: transparent;
    }

    .arena-page .arena-business-card {
        padding: 16px;
    }

    .arena-page .arena-business-card h5 {
        font-size: 1rem;
        font-weight: 600;
    }

    .arena-page .arena-value-grid {
        gap: 8px;
    }

    .arena-page .arena-value-grid div {
        padding: 11px 12px;
    }

    .arena-page .arena-value-grid strong {
        font-weight: 600;
        font-size: 0.9rem;
    }

    .arena-page .arena-value-grid span {
        font-size: 0.85rem;
        line-height: 1.45;
    }

    .arena-page .arena-check-grid div {
        padding: 11px 12px;
    }

    .arena-page .arena-check-grid span {
        font-size: 0.88rem;
        line-height: 1.45;
        font-weight: 400;
    }

    /* Arena types — service-page style horizontal list tiles */
    .arena-page .arena-types-grid {
        row-gap: 0.65rem;
    }

    .arena-page .arena-type-card {
        display: grid;
        grid-template-columns: 38% 1fr;
        align-items: stretch;
        min-height: 165px;
        border-radius: 10px;
        box-shadow: 0 8px 22px rgba(24, 35, 51, .1);
    }

    .arena-page .arena-type-card:hover {
        transform: none;
        box-shadow: 0 10px 24px rgba(24, 35, 51, .13);
    }

    .arena-page .arena-type-card img {
        width: 100%;
        height: 100%;
        min-height: 165px;
        object-fit: cover;
    }

    .arena-page .arena-type-card .arena-card-body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 11px 12px;
        text-align: left;
    }

    .arena-page .arena-type-card .arena-card-body h5 {
        font-size: 0.84rem;
        line-height: 1.25;
        margin-bottom: 0.4rem;
        padding: 0.32rem 0.72rem 0.32rem 0.62rem;
        clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    }

    .arena-page .arena-type-card .arena-card-body p {
        font-size: 0.84rem;
        line-height: 1.45;
        margin-bottom: 0;
        font-weight: 400;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .arena-page .arena-tailored-section__title {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .arena-page .arena-tailored-lead {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .arena-page .arena-proof h5 {
        font-size: 1rem;
        font-weight: 600;
    }

    .arena-page .arena-proof--dark h5 {
        font-size: 1.12rem;
        font-weight: 700;
    }

    .arena-page .arena-step h5 {
        font-size: 1rem;
        font-weight: 600;
    }

    .arena-page .arena-cta {
        padding: 1.35rem 1rem;
        gap: 0.75rem;
        margin-left: 0;
        margin-right: 0;
    }

    .arena-page .arena-cta h2 {
        font-size: 1.3rem;
    }

    .arena-page .arena-cta p {
        font-size: 0.86rem;
    }

    .arena-page .arena-cta .btn {
        width: auto;
        display: inline-flex;
        padding: 0.65rem 1.35rem !important;
    }

    .arena-page .row.g-4 {
        --bs-gutter-y: 0.75rem;
    }

    .arena-page .arena-types-grid:not(.is-expanded) .arena-type-item--extra {
        display: none !important;
    }

    .arena-page .arena-types-more-wrap {
        margin-top: 0.15rem;
        margin-bottom: 0;
        padding: 0;
    }

    .arena-page .arena-types-more__toggle {
        width: auto;
        font-size: 0.84rem;
        min-height: 38px;
        padding: 0.5rem 1.1rem;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .arena-page .arena-section {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .arena-page .arena-hero-image img,
    .arena-page .arena-feature-image img {
        height: 170px;
    }

    .arena-page .arena-custom-works-section .arena-feature-image img {
        height: auto;
        max-height: none;
        object-fit: contain;
        object-position: center;
    }

    .arena-page .arena-business-section .arena-split-row__media .arena-hero-image--contain img,
    .arena-page .arena-value-section .arena-split-row__media .arena-feature-image--contain img {
        height: auto;
    }

    .arena-page .arena-card:not(.arena-type-card) img {
        height: 140px;
    }

    .arena-page .arena-card-body,
    .arena-page .arena-step {
        padding: 12px;
    }

    .arena-page .arena-cta {
        padding: 1.25rem 0.9rem;
    }
}

/* Home Page */
.home-page {
    overflow-x: clip;
}

.home-hero {
    position: relative;
    min-height: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    color: #ffffff;
}

.home-hero-carousel,
.home-hero-overlay {
    position: absolute;
    inset: 0;
}

.home-hero-carousel {
    z-index: 0;
}

.home-hero-carousel .carousel-inner {
    height: 100%;
}

.home-hero-carousel.carousel-fade .carousel-item {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin-right: 0;
}

.home-hero-carousel .carousel-item {
    height: 100%;
}

.home-hero-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.home-hero-carousel__indicators {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    margin: 0;
    bottom: 24px;
    gap: 0.35rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-hero-carousel-ui {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

.home-hero-carousel-ui .home-hero-carousel__indicators,
.home-hero-carousel-ui .home-hero-carousel__control {
    pointer-events: auto;
    cursor: pointer;
}

.home-hero-carousel__indicators [data-bs-target] {
    width: 28px;
    height: 4px;
    margin: 0;
    border: 0;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.45);
    opacity: 1;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.home-hero-carousel__indicators .active {
    background-color: #ffffff;
    transform: scaleX(1.15);
}

@media (max-width: 991.98px) {
    .home-hero-carousel__indicators [data-bs-target],
    .home-position-carousel__indicators [data-bs-target] {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        margin: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent !important;
        opacity: 1;
        transform: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .home-hero-carousel__indicators [data-bs-target]::before,
    .home-position-carousel__indicators [data-bs-target]::before {
        content: "";
        display: block;
        border-radius: 999px;
        background-color: rgba(255, 255, 255, 0.45);
        transition: background-color 0.25s ease, transform 0.25s ease;
    }

    .home-hero-carousel__indicators [data-bs-target]::before {
        width: 24px;
        height: 4px;
    }

    .home-position-carousel__indicators [data-bs-target]::before {
        width: 20px;
        height: 3px;
    }

    .home-hero-carousel__indicators .active::before,
    .home-position-carousel__indicators .active::before {
        background-color: #ffffff;
        transform: scaleX(1.15);
    }

    .home-hero-carousel__indicators .active,
    .home-position-carousel__indicators .active {
        transform: none;
    }
}

.home-hero-carousel__control {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12%;
    min-width: 52px;
    padding: 0;
    border: 0;
    background: transparent;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.home-hero-carousel__control:hover,
.home-hero-carousel__control:focus-visible {
    opacity: 1;
    outline: none;
}

.home-hero-carousel__control.carousel-control-prev {
    left: 0;
}

.home-hero-carousel__control.carousel-control-next {
    right: 0;
}

.home-hero-carousel__control .carousel-control-prev-icon,
.home-hero-carousel__control .carousel-control-next-icon {
    pointer-events: none;
    width: 2.75rem;
    height: 2.75rem;
    background-color: rgba(24, 35, 51, 0.72);
    border: 0;
    border-radius: 50%;
    background-size: 45%;
}

.home-hero-overlay {
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.22) 55%,
        rgba(0, 0, 0, 0.34) 100%
    );
}

.home-hero-strip,
.home-hero-strip__wheel {
    display: none !important;
}

.min-vh-hero {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 96px);
    padding: 90px 0;
}

.home-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, .1);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.home-hero h1 {
    max-width: 860px;
    margin-bottom: 22px;
    color: #ffffff;
    font-size: 4.2rem;
    line-height: 1.05;
}

.home-hero p {
    max-width: 760px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .88);
    font-size: 1.15rem;
    line-height: 1.7;
}

.home-hero-actions,
.home-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.home-hero-proof div {
    min-width: 150px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
}

.home-hero-proof strong,
.home-hero-proof span {
    display: block;
    color: #ffffff;
}

.home-hero-proof strong {
    font-size: 1.7rem;
    line-height: 1;
}

.home-hero-proof span {
    margin-top: 6px;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
}

.home-audience-card,
.home-proof-card {
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(24, 35, 51, .08);
    box-shadow: 0 10px 26px rgba(24, 35, 51, .08);
}

.home-audience-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 8px;
    font-size: 28px;
    line-height: 1;
    color: #ffffff;
    background: var(--primary);
}

.home-audience-card p,
.home-proof-card p {
    margin-bottom: 0;
    color: #5f6873;
}

.home-image-stack {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(24, 35, 51, .16);
}

.home-image-stack img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

/* Our Position — image height follows checklist column */
.home-ecosystem-section .home-ecosystem-row {
    align-items: stretch;
}

.home-ecosystem-section .home-ecosystem-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.home-ecosystem-section .home-ecosystem-media {
    display: flex;
    align-self: stretch;
    min-height: 0;
}

.home-ecosystem-section .home-position-stack {
    flex: 1;
    width: 100%;
    height: 100%;
    min-height: 0;
    display: flex;
    position: relative;
}

.home-position-carousel,
.home-position-carousel .carousel-inner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-position-carousel .carousel-inner {
    height: 100%;
}

.home-position-carousel.carousel-fade .carousel-item {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin-right: 0;
}

.home-position-carousel .carousel-item {
    height: 100%;
}

.home-position-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.home-position-carousel-ui {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.home-position-carousel-ui .home-position-carousel__indicators,
.home-position-carousel-ui .home-position-carousel__control {
    pointer-events: auto;
    cursor: pointer;
}

.home-position-carousel__indicators {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    z-index: 1;
    margin: 0;
    gap: 0.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-position-carousel__indicators [data-bs-target] {
    width: 22px;
    height: 3px;
    margin: 0;
    border: 0;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.45);
    opacity: 1;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.home-position-carousel__indicators .active {
    background-color: #ffffff;
    transform: scaleX(1.12);
}

.home-position-carousel__control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: rgba(12, 20, 36, 0.55);
    opacity: 0;
    transition: opacity 0.25s ease, background 0.25s ease;
}

.home-position-stack:hover .home-position-carousel__control {
    opacity: 1;
}

.home-position-carousel__control:hover,
.home-position-carousel__control:focus-visible {
    background: rgba(0, 70, 174, 0.75);
}

.home-position-carousel__control.carousel-control-prev {
    left: 10px;
}

.home-position-carousel__control.carousel-control-next {
    right: 10px;
}

.home-position-carousel__control .carousel-control-prev-icon,
.home-position-carousel__control .carousel-control-next-icon {
    width: 1rem;
    height: 1rem;
}

.home-position-carousel--single .home-position-carousel-ui {
    display: none;
}

.home-floating-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    max-width: 240px;
    padding: 18px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--primary);
}

.home-floating-badge strong,
.home-floating-badge span {
    display: block;
}

.home-floating-badge strong {
    font-size: 1.6rem;
    line-height: 1;
}

.home-floating-badge span {
    margin-top: 8px;
    color: rgba(255, 255, 255, .86);
}

.home-check-list {
    display: grid;
    gap: 8px;
}

.home-check-list div {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 12px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(24, 35, 51, .08);
    line-height: 1.45;
}

.home-check-list span,
.wd-muted-text,
#homeClientsText,
#homeTrustText,
.arena-page .arena-check-grid span {
    color: #5c6778;
}

.home-check-list span {
    line-height: 1.45;
}

.wd-muted-text,
#homeClientsText,
#homeTrustText {
    line-height: 1.55;
}

.home-check-list i {
    margin-top: 3px;
    flex-shrink: 0;
    color: #f96b13;
}

.home-service-card {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    color: inherit;
    background: #ffffff;
    border: 1px solid rgba(24, 35, 51, .08);
    box-shadow: 0 10px 26px rgba(24, 35, 51, .08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.home-service-card:hover {
    color: inherit;
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(24, 35, 51, .16);
}

.home-service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.home-service-card div,
.home-service-card-body {
    padding: 22px;
}

.home-service-card span {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    min-height: 38px;
    padding: 8px 18px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-service-card h5 {
    margin-bottom: 0.65rem;
    color: var(--dark);
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.35;
}

.home-service-card p {
    margin-bottom: 0;
    color: #5f6873;
}

/* Home page — 4 compact service cards */
.home-services-section .home-services-section__title {
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .home-services-section .home-services-section__title {
        white-space: nowrap;
    }
}

.home-services-section .home-service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-services-section .home-service-card:hover {
    border-color: rgba(0, 102, 255, 0.35);
    box-shadow: 0 10px 36px rgba(0, 102, 255, 0.15);
    transform: translateY(-6px);
}

.home-services-section .home-service-card img {
    height: 200px;
    transition: transform 0.35s ease;
}

.home-services-section .home-service-card:hover img {
    transform: scale(1.06);
}

.home-services-section .home-service-card div {
    padding: 16px 18px 18px;
}

.home-services-section .home-service-card span {
    margin-bottom: 8px;
    min-height: 26px;
    padding: 4px 11px;
    font-size: 10px;
    letter-spacing: 0.06em;
}

.home-services-section .home-service-card h5 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.home-services-section .home-service-card p {
    font-size: 0.88rem;
    line-height: 1.5;
}

.home-services-section__cta-col {
    display: flex;
    align-items: flex-end;
}

.home-services-section__cta {
    font-weight: 600;
    letter-spacing: 0.02em;
}

.home-page .home-cta-shine {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(
        120deg,
        #0046ae 0%,
        #0046ae 36%,
        #1a6fd4 46%,
        #4d95ff 50%,
        #1a6fd4 54%,
        #0046ae 64%,
        #0046ae 100%
    );
    background-size: 260% 100%;
    border-color: var(--primary);
    animation: home-cta-shine-bg 5s ease-in-out infinite;
}

.home-page .home-cta-shine--delay {
    animation-delay: 2.5s;
}

@keyframes home-cta-shine-bg {
    0%, 78% {
        background-position: 100% 0;
    }

    100% {
        background-position: 0% 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page .home-cta-shine {
        animation: none;
        background: var(--primary);
    }
}

@media (min-width: 992px) {
    .home-page .home-services-section .col-lg-5.text-lg-end .btn.btn-primary,
    .home-page a.btn.btn-primary.d-lg-inline-block[href="clients.html"],
    .home-page .home-cta-shine {
        transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease, background-position 0.3s ease;
    }

    .home-page .home-services-section .col-lg-5.text-lg-end .btn.btn-primary:hover,
    .home-page .home-services-section .col-lg-5.text-lg-end .btn.btn-primary:focus-visible,
    .home-page a.btn.btn-primary.d-lg-inline-block[href="clients.html"]:hover,
    .home-page a.btn.btn-primary.d-lg-inline-block[href="clients.html"]:focus-visible,
    .home-page .home-cta-shine:hover,
    .home-page .home-cta-shine:focus-visible {
        background-color: var(--primary);
        border-color: var(--primary);
        color: #ffffff;
        box-shadow: 0 8px 24px rgba(0, 70, 174, 0.4);
        transform: translateY(-2px);
    }

    .home-page .home-cta-shine:hover,
    .home-page .home-cta-shine:focus-visible {
        background: linear-gradient(
            120deg,
            #0058c8 0%,
            #0058c8 36%,
            #2a80e8 46%,
            #6aabff 50%,
            #2a80e8 54%,
            #0058c8 64%,
            #0058c8 100%
        );
        background-size: 260% 100%;
    }
}

/* Home — bold feature cards */
.home-feature-card {
    position: relative;
    display: block;
    min-height: 340px;
    border-radius: 16px;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    background: #121820;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 32px rgba(24, 35, 51, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-feature-card:hover {
    color: #fff;
    transform: translateY(-6px);
    border-color: rgba(0, 102, 255, 0.4);
    box-shadow: 0 14px 40px rgba(0, 102, 255, 0.2);
}

.home-feature-card__img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.home-feature-card:hover .home-feature-card__img {
    transform: scale(1.06);
}

.home-feature-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(8, 12, 20, 0.95) 0%,
            rgba(8, 12, 20, 0.88) 38%,
            rgba(8, 12, 20, 0.45) 62%,
            rgba(8, 12, 20, 0.12) 100%
        );
    pointer-events: none;
}

.home-feature-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 340px;
    padding: 1.75rem 1.75rem 1.65rem;
}

.home-feature-card__eyebrow {
    display: inline-block;
    margin-bottom: 0.85rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #8ec0ff;
}

.home-feature-card__title {
    margin: 0 0 0.75rem;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.65rem, 3.2vw, 2.15rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.home-feature-card__title span {
    color: #6eb0ff;
}

.home-feature-card__text {
    max-width: 420px;
    margin: 0 0 1.25rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.home-feature-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
    padding: 0.55rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.home-feature-card:hover .home-feature-card__cta {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
}

/* Image-led cards — artwork includes headline copy; show CTA only */
.home-feature-card--visual .home-feature-card__overlay {
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(8, 12, 20, 0.35) 100%
    );
}

.home-feature-card--visual .home-feature-card__content {
    justify-content: flex-end;
    align-items: flex-start;
    min-height: 340px;
    padding: 1.25rem 1.5rem 1.35rem;
}

.home-feature-card--visual .home-feature-card__cta {
    background: rgba(0, 70, 174, 0.88);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.home-feature-card--visual:hover .home-feature-card__cta {
    background: #006bff;
    border-color: #fff;
}

/* Home — RC Hub & Garage graphium title bar (championship theme) */
.home-graphium-bar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    padding: 1.35rem 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    color: #e8eef7;
    background:
        linear-gradient(180deg, rgba(0, 70, 174, 0.12) 0%, transparent 55%),
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.02) 0,
            rgba(255, 255, 255, 0.02) 2px,
            transparent 2px,
            transparent 8px
        ),
        #0b0f14;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 32px rgba(0, 70, 174, 0.14);
}

.home-graphium-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 50%, rgba(0, 70, 174, 0.35), transparent 42%),
        radial-gradient(circle at 88% 50%, rgba(0, 86, 214, 0.18), transparent 40%);
    pointer-events: none;
}

.home-graphium-bar__copy {
    position: relative;
    z-index: 1;
}

.home-graphium-bar__eyebrow {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.home-graphium-bar__title {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.15rem, 2.5vw, 1.55rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffffff 0%, #7eb4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-graphium-bar__btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(126, 180, 255, 0.35);
    background: rgba(0, 70, 174, 0.22);
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-graphium-bar__btn:hover {
    color: #fff;
    background: rgba(0, 70, 174, 0.38);
    border-color: rgba(126, 180, 255, 0.55);
    box-shadow: 0 0 16px rgba(0, 70, 174, 0.22);
}

@media (max-width: 575.98px) {
    .home-graphium-bar {
        padding: 1.15rem 1.15rem;
    }

    .home-graphium-bar__btn {
        width: 100%;
    }
}

/* Home — mobile: RC Hub & Garage title + CTA only (no preview cards) */
@media (max-width: 767.98px) {
    .home-page .home-hero {
        min-height: 0;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .home-page .home-hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.04) 0%,
            rgba(0, 0, 0, 0.2) 100%
        );
    }

    .home-page .home-hero-carousel__indicators {
        bottom: 14px;
    }

    .home-page .home-hero-carousel__control {
        opacity: 0.85;
        width: 14%;
    }

    .home-page #homeRcHubGrid,
    .home-page #homeGarageGrid {
        display: none !important;
    }

    .home-page .home-graphium-bar {
        margin-bottom: 0;
    }

    .home-page section:has(#homeRcHubGrid),
    .home-page section:has(#homeGarageGrid) {
        padding-top: 1.75rem !important;
        padding-bottom: 1.75rem !important;
    }

    /* Tighter section rhythm — mobile home only */
    .home-page > section.container-xxl {
        padding-top: 1.75rem !important;
        padding-bottom: 1.75rem !important;
    }

    .home-page .border-start.border-5.ps-4 {
        padding-left: 0.85rem !important;
    }

    .home-page .border-start.border-5.ps-4.mb-5,
    .home-page .border-start.border-5.ps-4.mb-4 {
        margin-bottom: 0.9rem !important;
    }

    .home-page .border-start.border-5 h6 {
        margin-bottom: 0.3rem !important;
        font-size: 0.8rem;
    }

    .home-page .display-6 {
        font-size: 1.5rem;
        line-height: 1.22;
    }

    .home-page .row.mb-5 {
        margin-bottom: 0.85rem !important;
    }

    .home-page p.mb-4 {
        margin-bottom: 0.75rem !important;
    }

    .home-page .row.g-5 {
        --bs-gutter-y: 1.1rem;
        --bs-gutter-x: 0.85rem;
    }

    .home-page .row.g-4 {
        --bs-gutter-y: 0.75rem;
        --bs-gutter-x: 0.75rem;
    }

    .home-page .home-audience-card,
    .home-page .home-proof-card {
        padding: 1rem;
    }

    .home-page .home-audience-card i {
        width: 40px;
        height: 40px;
        margin-bottom: 0.65rem;
        font-size: 1.2rem;
    }

    .home-page .home-audience-card h5,
    .home-page .home-proof-card h5 {
        margin-bottom: 0.35rem;
        font-size: 1rem;
    }

    .home-page .home-image-stack img {
        height: 220px;
    }

    .home-page .home-ecosystem-section .home-position-stack {
        height: auto;
        min-height: 220px;
        background: #eef1f5;
    }

    .home-page .home-ecosystem-section .home-position-carousel,
    .home-page .home-ecosystem-section .home-position-carousel .carousel-inner {
        position: relative;
        inset: auto;
        height: auto;
        min-height: 220px;
    }

    .home-page .home-ecosystem-section .home-position-carousel .carousel-item {
        position: relative;
        inset: auto;
        height: auto;
    }

    .home-page .home-ecosystem-section .home-position-carousel .carousel-item img {
        height: auto;
        max-height: 300px;
        object-fit: contain;
        object-position: center;
    }

    .home-page .home-ecosystem-section .home-position-carousel .carousel-item:not(.active) {
        display: none;
    }

    .home-page .home-ecosystem-section .home-position-carousel .carousel-item.active {
        display: block;
    }

    .home-page .home-ecosystem-section .home-position-carousel__control {
        opacity: 1;
    }

    .home-page .home-floating-badge {
        padding: 12px;
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .home-page .home-floating-badge strong {
        font-size: 1.25rem;
    }

    .home-page .home-check-list {
        gap: 0.4rem;
    }

    .home-page .home-check-list div {
        padding: 0.5rem 0.65rem;
        gap: 0.45rem;
    }

    .home-page .home-services-section .home-service-card img {
        height: 160px;
    }

    .home-page .home-services-section .home-service-card div {
        padding: 0.85rem 0.9rem;
    }

    .home-page .home-services-section .home-service-card span {
        min-height: 28px;
        padding: 4px 12px;
        margin-bottom: 0.45rem;
        font-size: 0.72rem;
    }

    .home-page .home-services-section .home-service-card h5 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .home-page .home-services-section__cta {
        padding-top: 0.65rem !important;
        padding-bottom: 0.65rem !important;
    }

    .home-page .home-feature-card,
    .home-page .home-feature-card__content {
        min-height: 240px;
    }

    .home-page .home-feature-card--visual .home-feature-card__content {
        padding: 0.85rem 1rem 1rem;
    }

    /* Visual cards — full artwork visible on mobile (no cover crop) */
    .home-page .home-feature-card.home-feature-card--visual {
        min-height: 0;
    }

    .home-page .home-feature-card--visual .home-feature-card__img {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        object-fit: initial;
        object-position: center;
        display: block;
    }

    .home-page .home-feature-card--visual .home-feature-card__content {
        position: absolute;
        inset: 0;
        min-height: 0;
    }

    .home-page .home-feature-card--visual:hover .home-feature-card__img {
        transform: none;
    }

    .home-page .home-cta {
        padding: 1.15rem 1rem;
        gap: 0.85rem;
    }

    .home-page .home-cta h2 {
        font-size: 1.35rem;
        line-height: 1.25;
    }

    .home-page .home-cta p {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .home-page .home-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .home-page .home-logo-grid img {
        height: 88px;
        padding: 10px;
    }

    .home-page .home-club-cta {
        padding: 1.5rem 1rem;
    }

    .home-page .home-club-cta__title {
        margin-bottom: 0.5rem;
        font-size: 1.2rem;
    }

    .home-page .home-club-cta__text {
        margin-bottom: 0.85rem;
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .home-page .home-graphium-bar {
        padding: 1rem;
        gap: 0.75rem;
    }

    .home-page .home-graphium-bar__title {
        font-size: 1rem;
    }

    .home-page .btn.py-3 {
        padding-top: 0.65rem !important;
        padding-bottom: 0.65rem !important;
    }
}

/* Home — RC Hub & Garage previews */
.home-content-card {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    color: inherit;
    background: #ffffff;
    border: 1px solid rgba(24, 35, 51, .08);
    box-shadow: 0 8px 20px rgba(24, 35, 51, .07);
    transition: transform .3s ease, box-shadow .3s ease;
}

.home-content-card:hover {
    color: inherit;
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(24, 35, 51, .12);
}

.home-content-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.home-content-card__body {
    padding: 14px 16px 16px;
}

.home-content-card__body h5 {
    margin-bottom: 0.35rem;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.35;
}

.home-content-card__body span {
    display: block;
    font-size: 0.78rem;
    color: #5f6873;
}

.services-page .service-card-tag {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    min-height: 26px;
    padding: 4px 11px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--primary);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.services-page .home-service-card-body {
    padding: 22px;
}

.services-page .service-page-card .home-service-card-body {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 42%);
}

#appointment-section,
.appointment-section {
    scroll-margin-top: 100px;
}

/* Appointment page — modern enquiry form */
.appointment-section__lead {
    color: #5f6873;
    font-size: 1rem;
    line-height: 1.65;
    max-width: 36rem;
}

.appointment-section__points {
    margin: 0;
    padding: 0;
    list-style: none;
}

.appointment-section__points li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 0.55rem;
    color: var(--dark);
    font-size: 0.92rem;
    line-height: 1.45;
}

.appointment-section__points i {
    color: var(--primary);
    margin-top: 0.15rem;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.appointment-form-card,
.contact-form-card {
    position: relative;
    padding: 1.65rem 1.5rem 1.75rem;
    border-radius: 16px;
    background: linear-gradient(165deg, #ffffff 0%, #f7f9fc 100%);
    border: 1px solid rgba(0, 70, 174, 0.1);
    box-shadow:
        0 18px 44px rgba(24, 35, 51, 0.07),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    isolation: isolate;
    transition: box-shadow 0.35s ease;
}

.appointment-form-card::after,
.contact-form-card::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 70, 174, 0.15) 15%,
        var(--primary) 35%,
        #00bfff 50%,
        var(--primary) 65%,
        rgba(0, 70, 174, 0.15) 85%,
        transparent 100%
    );
    background-size: 220% 100%;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: opacity 0.35s ease;
}

.appointment-form-card:hover,
.contact-form-card:hover {
    box-shadow:
        0 18px 44px rgba(24, 35, 51, 0.07),
        0 0 28px rgba(0, 70, 174, 0.18);
}

.appointment-form-card:hover::after,
.contact-form-card:hover::after {
    opacity: 1;
    animation: appointmentBorderRun 7s linear infinite;
}

@keyframes appointmentBorderRun {
    0% { background-position: 220% 0; }
    100% { background-position: -220% 0; }
}

.appointment-form-card__head,
.contact-form-card__head {
    margin-bottom: 1.35rem;
}

.appointment-form-card__eyebrow,
.contact-form-card__eyebrow {
    display: block;
    margin-bottom: 0.35rem;
    color: #f96b13;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.appointment-form-card__note,
.contact-form-card__note {
    margin: 0;
    color: #6b7280;
    font-size: 0.86rem;
    line-height: 1.45;
}

.appointment-form .form-floating > label,
.contact-form .form-floating > label {
    color: #6b7280;
    font-size: 0.88rem;
}

.appointment-form .form-floating > .appointment-form__field,
.contact-form .form-floating > .contact-form__field {
    min-height: calc(3.35rem + 2px);
    padding-top: 1.15rem;
    border: 1px solid rgba(0, 70, 174, 0.14);
    border-radius: 10px;
    background: #ffffff;
    color: var(--dark);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.appointment-form .form-floating > .appointment-form__field:focus,
.contact-form .form-floating > .contact-form__field:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 70, 174, 0.14);
}

.appointment-form .form-floating > .appointment-form__textarea,
.contact-form .form-floating > .contact-form__textarea {
    min-height: 118px;
    height: 118px;
    padding-top: 1.35rem;
    resize: vertical;
}

.contact-form .form-floating > .contact-form__textarea {
    min-height: 130px;
    height: 130px;
}

.appointment-form__submit,
.contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.85rem 1.25rem;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 24px rgba(0, 70, 174, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.appointment-form__submit:hover,
.appointment-form__submit:focus,
.contact-form__submit:hover,
.contact-form__submit:focus {
    background: #003580;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 70, 174, 0.45);
}

.appointment-form__submit:disabled,
.contact-form__submit:disabled {
    transform: none;
    opacity: 0.85;
    cursor: wait;
}

@media (min-width: 768px) {
    .appointment-form-card,
    .contact-form-card {
        padding: 2rem 1.85rem 2.1rem;
    }
}

@media (max-width: 575.98px) {
    .appointment-form-card,
    .contact-form-card {
        padding: 1.35rem 1.1rem 1.45rem;
        border-radius: 14px;
    }

    .appointment-form-card__head,
    .contact-form-card__head {
        margin-bottom: 1.1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .appointment-form-card:hover::after,
    .contact-form-card:hover::after {
        animation: none;
        opacity: 1;
        background-position: 50% 0;
    }
}

/* Contact page */
.contact-section__lead {
    color: #5f6873;
    font-size: 1rem;
    line-height: 1.65;
    max-width: 40rem;
}

.contact-section__areas {
    font-size: 0.92rem;
    line-height: 1.55;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
}

.service-section__areas-wrap {
    text-align: center;
}

.service-section__areas {
    font-size: 0.92rem;
    line-height: 1.55;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

@media (min-width: 992px) {
    .service-section__areas {
        display: inline-block;
        max-width: none;
        margin: 0;
        white-space: nowrap;
        font-size: clamp(0.82rem, 0.95vw, 0.92rem);
    }
}

.contact-info-card {
    padding: 1.5rem 1.4rem 1.6rem;
    border-radius: 16px;
    background: linear-gradient(160deg, #ffffff 0%, #f4f7fc 100%);
    border: 1px solid rgba(0, 70, 174, 0.12);
    box-shadow: 0 16px 40px rgba(24, 35, 51, 0.08);
}

.contact-info-card--top {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 1.5rem;
}

.contact-info-card__channels {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.contact-info-card__profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
}

.contact-info-card--top .contact-info-card__profile {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(0, 70, 174, 0.1);
}

.contact-info-card__avatar {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid rgba(0, 70, 174, 0.15);
    box-shadow: 0 6px 18px rgba(0, 70, 174, 0.12);
}

.contact-info-card__avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info-card__eyebrow {
    display: block;
    margin-bottom: 0.2rem;
    color: #f96b13;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-info-card__name {
    margin: 0 0 0.15rem;
    font-family: "Poppins", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
}

.contact-info-card__org {
    margin: 0;
    color: #6b7280;
    font-size: 0.88rem;
}

.contact-info-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    flex: 1;
}

.contact-info-card__list li {
    margin-bottom: 0;
    min-width: 0;
}

.contact-info-card__link,
.contact-info-card__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
    height: 100%;
    min-height: 72px;
    padding: 0.8rem 0.85rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 70, 174, 0.1);
    background: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    color: inherit;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.contact-info-card__link:hover,
.contact-info-card__link:focus-visible {
    background: rgba(0, 70, 174, 0.06);
    border-color: rgba(0, 70, 174, 0.28);
    box-shadow: 0 10px 24px rgba(0, 70, 174, 0.14);
    transform: translateY(-2px);
    color: inherit;
    outline: none;
}

.contact-info-card__link:hover .contact-info-card__icon,
.contact-info-card__link:focus-visible .contact-info-card__icon {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 70, 174, 0.35);
}

.contact-info-card__link:hover .contact-info-card__text,
.contact-info-card__link:focus-visible .contact-info-card__text {
    color: var(--primary);
}

.contact-info-card__item--static {
    cursor: default;
}

.contact-info-card__icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(0, 70, 174, 0.08);
    color: var(--primary);
    font-size: 0.85rem;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-card__text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #4b5563;
    word-break: break-word;
}

.contact-info-card__text strong {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8b95a5;
}

.contact-info-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.contact-info-card__cta:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 22px rgba(0, 70, 174, 0.28);
}

.contact-form__success {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: rgba(0, 70, 174, 0.06);
    border: 1px solid rgba(0, 70, 174, 0.14);
    color: var(--dark);
    font-size: 0.9rem;
    line-height: 1.45;
}

.contact-form__success i {
    color: var(--primary);
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.contact-map-card {
    padding: 1.25rem 1.25rem 1.35rem;
    border-radius: 16px;
    background: linear-gradient(165deg, #ffffff 0%, #f7f9fc 100%);
    border: 1px solid rgba(0, 70, 174, 0.1);
    box-shadow: 0 14px 36px rgba(24, 35, 51, 0.07);
}

.contact-form-card--fill,
.contact-map-card--fill {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-map-card--fill .contact-map-card__frame {
    flex: 1;
    display: flex;
    min-height: 360px;
}

.contact-map-card--fill .contact-map-card__frame iframe {
    flex: 1;
    width: 100%;
    min-height: 360px;
    height: 100%;
}

.contact-map-card__head {
    margin-bottom: 1rem;
    padding: 0 0.15rem;
}

.contact-map-card__eyebrow {
    display: block;
    margin-bottom: 0.25rem;
    color: #f96b13;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-map-card__title {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
}

.contact-map-card__frame {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 70, 174, 0.1);
}

.contact-map-card__frame iframe {
    display: block;
    width: 100%;
    border: 0;
}

@media (max-width: 991.98px) {
    .contact-info-card--top {
        flex-direction: column;
        gap: 1.25rem;
    }

    .contact-info-card--top .contact-info-card__profile {
        padding-right: 0;
        padding-bottom: 1.15rem;
        border-right: none;
        border-bottom: 1px solid rgba(0, 70, 174, 0.1);
    }

    .contact-info-card__list {
        grid-template-columns: 1fr;
    }

    .contact-map-card--fill .contact-map-card__frame,
    .contact-map-card--fill .contact-map-card__frame iframe {
        min-height: 300px;
    }
}

@media (max-width: 575.98px) {
    .contact-info-card {
        padding: 1.2rem 1rem 1.25rem;
    }

    .contact-info-card__link,
    .contact-info-card__item {
        min-height: 0;
        padding: 0.75rem;
    }

    .contact-section .display-6 {
        font-size: 1.45rem;
    }

    .contact-map-card--fill .contact-map-card__frame,
    .contact-map-card--fill .contact-map-card__frame iframe {
        min-height: 260px;
    }
}

#serviceType.service-type-highlight {
    color: var(--primary);
    font-weight: 600;
    background-color: rgba(0, 70, 174, 0.1) !important;
    box-shadow: 0 0 0 3px rgba(0, 70, 174, 0.28);
    transition: box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}

.service-enquiry-success {
    padding: 28px 26px;
    border-radius: 10px;
    background: linear-gradient(145deg, #ffffff 0%, #f4f7fc 100%);
    border: 1px solid rgba(0, 70, 174, 0.14);
    border-left: 4px solid var(--primary);
    box-shadow: 0 14px 32px rgba(0, 70, 174, 0.1);
}

.service-enquiry-success-eyebrow {
    margin-bottom: 0.5rem;
    color: #f96b13;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-enquiry-success-title {
    margin-bottom: 0.75rem;
    color: var(--dark);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.35;
}

.service-enquiry-success-lead {
    margin-bottom: 1.1rem;
    color: #5f6873;
    font-size: 0.95rem;
    line-height: 1.55;
}

.service-enquiry-success-steps {
    margin: 0 0 1.15rem;
    padding: 0;
    list-style: none;
}

.service-enquiry-success-steps li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 0.45rem;
    color: var(--dark);
    font-size: 0.9rem;
    line-height: 1.45;
}

.service-enquiry-success-steps i {
    color: var(--primary);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.service-enquiry-success-contact {
    padding: 14px 16px;
    border-radius: 8px;
    background: rgba(0, 70, 174, 0.06);
    border: 1px solid rgba(0, 70, 174, 0.1);
}

.service-enquiry-success-contact-label {
    margin-bottom: 0.55rem;
    color: var(--dark);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.service-enquiry-success-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
    color: var(--primary);
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
}

.service-enquiry-success-contact a:last-child {
    margin-bottom: 0;
}

.service-enquiry-success-contact a:hover {
    color: #003580;
}

.service-enquiry-success-contact i {
    width: 16px;
    text-align: center;
}

@media (max-width: 575.98px) {
    .service-enquiry-success {
        padding: 22px 18px;
    }

    .service-enquiry-success-title {
        font-size: 1.15rem;
    }
}

.home-proof-card strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    margin-bottom: 18px;
    padding: 0 10px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--primary);
    font-size: 1.35rem;
}

.home-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.home-logo-grid img {
    width: 100%;
    height: 132px;
    padding: 20px;
    object-fit: contain;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(24, 35, 51, .08);
    box-shadow: 0 8px 20px rgba(24, 35, 51, .06);
}

.home-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 36px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--primary);
}

.home-cta h2,
.home-cta p {
    color: #ffffff;
}

.home-cta p {
    max-width: 700px;
    margin-bottom: 0;
}

.home-cta .btn.btn-light {
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.home-cta .btn.btn-light:hover,
.home-cta .btn.btn-light:focus-visible {
    color: #ffffff;
    background-color: #FDA12B;
    border-color: #FDA12B;
}

.home-services-section .home-service-card p {
    font-size: 0.82rem;
    line-height: 1.45;
}

/* Service page — full-width expertise hero */
.service-expertise--hidden {
    display: none !important;
}

.service-expertise {
    overflow: hidden;
    padding-top: 3rem;
    padding-bottom: 0;
    margin-bottom: 0;
}

.services-page #service-custom-builds,
.services-page #service-performance {
    scroll-margin-top: 110px;
}

.service-expertise__head {
    padding-top: 3rem;
    padding-bottom: 1.75rem;
}

.service-expertise__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 480px;
}

.service-expertise__panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 480px;
    padding: 2rem 1.5rem 1.75rem;
    color: #ffffff;
    text-decoration: none;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.35s ease;
}

.service-expertise__panel:last-child {
    border-right: none;
}

.service-expertise__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-expertise__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 12, 18, 0.35) 0%, rgba(8, 12, 18, 0.72) 55%, rgba(8, 12, 18, 0.92) 100%);
    transition: background 0.35s ease;
}

.service-expertise__content {
    position: relative;
    z-index: 1;
}

.service-expertise__num {
    display: block;
    margin-bottom: 0.75rem;
    font-family: "Poppins", sans-serif;
    font-size: clamp(3rem, 5vw, 4.25rem);
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px rgba(0, 102, 255, 0.9);
    text-stroke: 2px rgba(0, 102, 255, 0.9);
    opacity: 0.95;
}

.service-expertise__title {
    margin: 0 0 0.85rem;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

.service-expertise__text {
    margin: 0 0 1.25rem;
    font-size: 0.84rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

.service-expertise__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
    transition: gap 0.25s ease, color 0.25s ease;
}

.service-expertise__panel:hover {
    color: #ffffff;
    transform: translateY(-4px);
}

.service-expertise__panel:hover .service-expertise__bg {
    transform: scale(1.06);
}

.service-expertise__panel:hover .service-expertise__overlay {
    background:
        linear-gradient(180deg, rgba(0, 70, 174, 0.2) 0%, rgba(8, 12, 18, 0.78) 50%, rgba(8, 12, 18, 0.94) 100%);
}

.service-expertise__panel:hover .service-expertise__link {
    gap: 0.65rem;
    color: #8ec0ff;
}

.home-club-cta {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 2.75rem 2rem;
    border-radius: 10px;
    color: #e8eef7;
    background:
        linear-gradient(180deg, rgba(0, 70, 174, 0.12) 0%, transparent 55%),
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.02) 0,
            rgba(255, 255, 255, 0.02) 2px,
            transparent 2px,
            transparent 8px
        ),
        #0b0f14;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 36px rgba(0, 70, 174, 0.14);
}

.home-club-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 70, 174, 0.32), transparent 45%),
        radial-gradient(circle at 80% 50%, rgba(0, 86, 214, 0.18), transparent 42%);
    pointer-events: none;
}

.home-club-cta__eyebrow,
.home-club-cta__title,
.home-club-cta__text,
.home-club-cta__btn {
    position: relative;
    z-index: 1;
}

.home-club-cta__eyebrow {
    display: inline-block;
    margin-bottom: 0.65rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.home-club-cta__title {
    margin: 0 0 0.85rem;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffffff 0%, #7eb4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.arena-rental-cta-section .home-club-cta__title {
    font-size: clamp(1.5rem, 3.4vw, 2.05rem);
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    color: #ffffff;
}

.arena-page .arena-rental-cta-wrap .arena-rental-cta-section {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    padding: 2.75rem 0;
    background: linear-gradient(135deg, #0046ae 0%, #003580 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 32px rgba(0, 70, 174, 0.22);
}

.arena-page .arena-rental-cta-wrap .arena-rental-cta-section::before {
    display: none;
}

.arena-page .arena-rental-cta-wrap .arena-rental-cta-section .container {
    position: relative;
    z-index: 1;
}

.arena-page .arena-rental-cta-wrap .arena-rental-cta__content.home-club-cta {
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.arena-page .arena-rental-cta-wrap .arena-rental-cta__content.home-club-cta::before {
    display: none;
}

.arena-page .arena-rental-cta-wrap .home-club-cta__eyebrow {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.72);
}

.arena-page .arena-rental-cta-wrap .home-club-cta__title {
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.arena-page .arena-rental-cta-wrap .home-club-cta__text {
    max-width: 960px;
    font-size: 1.05rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}

.arena-page .arena-rental-cta-wrap .home-club-cta__btn {
    color: var(--primary);
    background: #ffffff;
    border-color: #ffffff;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.arena-page .arena-rental-cta-wrap .home-club-cta__btn:hover,
.arena-page .arena-rental-cta-wrap .home-club-cta__btn:focus-visible {
    color: #ffffff;
    background-color: #f96b13;
    border-color: #f96b13;
    box-shadow: none;
    transform: none;
}

@media (min-width: 1200px) {
    .arena-page .arena-rental-cta-wrap .arena-rental-cta-section {
        padding: 3rem 0;
    }

    .arena-page .arena-rental-cta-wrap .home-club-cta__title {
        font-size: clamp(1.7rem, 2.6vw, 2.2rem);
    }

    .arena-page .arena-rental-cta-wrap .home-club-cta__text {
        max-width: 1080px;
        font-size: 1.1rem;
        line-height: 1.48;
    }
}

.home-club-cta__text {
    max-width: 620px;
    margin: 0 auto 1.5rem;
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

.home-club-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.65rem;
    border-radius: 999px;
    border: 1px solid rgba(126, 180, 255, 0.35);
    background: rgba(0, 70, 174, 0.28);
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-club-cta__btn:hover {
    color: #fff;
    background: rgba(0, 70, 174, 0.42);
    border-color: rgba(126, 180, 255, 0.55);
    box-shadow: 0 0 18px rgba(0, 70, 174, 0.28);
}

.home-event-cta {
    text-align: center;
    padding: 1.5rem 2.5rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #0046ae 0%, #003580 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 32px rgba(0, 70, 174, 0.22);
}

.home-event-cta__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 0.75rem;
    border-radius: 8px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    font-size: 1.2rem;
}

.home-event-cta__title {
    margin: 0 0 0.4rem;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
}

.home-event-cta__text {
    margin: 0 auto 1rem;
    font-size: 1.05rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
}

@media (min-width: 1200px) {
    .home-event-cta__text {
        white-space: nowrap;
    }
}

.home-event-cta__btn {
    padding: 0.7rem 1.85rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 6px;
    color: var(--primary);
    background: #ffffff;
    border-color: #ffffff;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.home-event-cta__btn:hover,
.home-event-cta__btn:focus-visible {
    color: #ffffff;
    background-color: #FDA12B;
    border-color: #FDA12B;
}

@media (max-width: 991.98px) {
    .min-vh-hero {
        min-height: auto;
    }

    .min-vh-hero {
        padding: 80px 0;
    }

    .home-hero h1 {
        font-size: 3.1rem;
    }

    .home-image-stack img {
        height: 360px;
    }

    .home-ecosystem-section .home-position-carousel .carousel-item img {
        height: 100%;
        min-height: 0;
        object-fit: cover;
    }

    .home-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-event-cta {
        padding: 1.35rem 1.25rem;
    }

    .service-expertise__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-expertise__panel {
        min-height: 400px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .service-expertise__panel:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.06);
    }

    .service-expertise__panel:nth-last-child(-n + 2) {
        border-bottom: none;
    }
}

@media (max-width: 767.98px) {
    .home-event-cta__text {
        white-space: normal;
        font-size: 0.98rem;
    }
}

@media (max-width: 575.98px) {
    .home-page > section.container-xxl {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .home-page .display-6 {
        font-size: 1.38rem;
    }

    .home-page .home-image-stack img {
        height: 200px;
    }

    .home-page .home-ecosystem-section .home-position-carousel .carousel-item img {
        max-height: 260px;
    }

    .home-page .home-services-section .home-service-card img {
        height: 150px;
    }

    .home-page .home-feature-card,
    .home-page .home-feature-card__content {
        min-height: 220px;
    }

    .home-page .home-feature-card.home-feature-card--visual,
    .home-page .home-feature-card--visual .home-feature-card__content {
        min-height: 0;
    }

    .home-page .home-feature-card__title {
        font-size: 1.15rem;
    }

    .home-page .home-cta-actions .btn {
        width: 100%;
    }

    .service-expertise__grid {
        grid-template-columns: 1fr;
    }

    .service-expertise__panel,
    .service-expertise__panel:nth-child(odd) {
        min-height: 360px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .service-expertise__panel:last-child {
        border-bottom: none;
    }
}

/* Bot protection — honeypot + reCAPTCHA badge */
.wd-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.wd-recaptcha-badge {
    margin: 0;
    padding: 0.5rem 1rem 1rem;
    font-size: 0.72rem;
    line-height: 1.45;
    color: #6c757d;
    text-align: center;
}

.wd-recaptcha-badge a {
    color: #5f6873;
}
