@import '_content/TeamworX.BlazorControls/TeamworX.BlazorControls.sfykqjct88.bundle.scp.css';

/* /Components/Landing/LandingPromoBanner.razor.rz.scp.css */
.landing-promo-spacer[b-88m4kdyx9c] {
    height: 0;
    overflow: hidden;
    transition: height 0.45s ease-out;
    pointer-events: none;
}

.landing-promo-spacer--active[b-88m4kdyx9c] {
    /* Height set via JS to match fixed banner */
}

.landing-promo[b-88m4kdyx9c] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    width: 100%;
    opacity: 0;
    transform: translateY(-100%);
    transition:
        opacity 0.35s ease-out,
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.landing-promo--visible[b-88m4kdyx9c] {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.landing-promo__inner[b-88m4kdyx9c] {
    display: grid;
    grid-template-columns: minmax(0, max-content) minmax(0, 1fr) minmax(0, max-content);
    align-items: center;
    column-gap: 1.25rem;
    row-gap: 0.65rem;
    padding: 0.7rem clamp(1rem, 3vw, 2rem);
    background: var(--gradient-brand);
    border-bottom: 1px solid color-mix(in srgb, #fff 22%, transparent);
    box-shadow:
        0 8px 28px rgba(var(--primary-color-rgba), 0.28),
        inset 0 1px 0 color-mix(in srgb, #fff 25%, transparent);
    position: relative;
    isolation: isolate;
}

.landing-promo__inner[b-88m4kdyx9c]::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        color-mix(in srgb, #fff 18%, transparent) 0%,
        transparent 42%,
        color-mix(in srgb, var(--tertiary-color) 25%, transparent) 100%);
    pointer-events: none;
    z-index: 0;
}

.landing-promo__tags[b-88m4kdyx9c],
.landing-promo__copy[b-88m4kdyx9c],
.landing-promo__actions[b-88m4kdyx9c] {
    position: relative;
    z-index: 1;
}

.landing-promo__tags[b-88m4kdyx9c] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    grid-column: 1;
    grid-row: 1;
}

.landing-promo__tags--empty[b-88m4kdyx9c] {
    display: none;
}

.landing-promo__tag[b-88m4kdyx9c] {
    display: inline-block;
    padding: 0.24rem 0.65rem;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    color: #fff;
    background: color-mix(in srgb, var(--primary-color-darkest) 32%, transparent);
    border: 1px solid color-mix(in srgb, #fff 32%, transparent);
}

.landing-promo__tag:last-child[b-88m4kdyx9c] {
    background: color-mix(in srgb, #fff 16%, transparent);
    border-color: color-mix(in srgb, #fff 28%, transparent);
}

.landing-promo__copy[b-88m4kdyx9c] {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    text-align: center;
    justify-self: center;
    max-width: 42rem;
}

.landing-promo__headline[b-88m4kdyx9c] {
    margin: 0;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}

.landing-promo__description[b-88m4kdyx9c] {
    margin: 0.2rem 0 0;
    font-size: clamp(0.78rem, 1.8vw, 0.88rem);
    line-height: 1.35;
    color: color-mix(in srgb, #fff 88%, transparent);
}

.landing-promo__actions[b-88m4kdyx9c] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    flex: 0 0 auto;
}

.landing-promo__cta[b-88m4kdyx9c] {
    min-height: 2.35rem;
    padding: 0.4rem 1rem !important;
    font-size: 0.82rem !important;
    white-space: nowrap;
    background: #fff !important;
    color: var(--primary-color-darkest) !important;
    border: none;
}

.landing-promo__dismiss[b-88m4kdyx9c] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: none;
    border-radius: 999px;
    font-size: 1.35rem;
    line-height: 1;
    color: #fff;
    background: color-mix(in srgb, var(--primary-color-darkest) 22%, transparent);
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}

.landing-promo__dismiss:hover[b-88m4kdyx9c] {
    background: color-mix(in srgb, var(--primary-color-darkest) 38%, transparent);
    transform: scale(1.05);
}

/* Sticky site header sits below the fixed promo bar */
html.has-landing-promo .header.sticky-header[b-88m4kdyx9c] {
    top: var(--landing-promo-offset, 0px);
    z-index: 1000;
}

@media (max-width: 720px) {
    .landing-promo__inner[b-88m4kdyx9c] {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        padding-top: 0.85rem;
        padding-bottom: 0.85rem;
        padding-right: 2.75rem;
    }

    .landing-promo__tags[b-88m4kdyx9c] {
        grid-column: 1;
        grid-row: 1;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.35rem 0.45rem;
    }

    .landing-promo__tag[b-88m4kdyx9c] {
        padding: 0.16rem 0.45rem;
        font-size: 0.52rem;
        letter-spacing: 0.05em;
    }

    .landing-promo__copy[b-88m4kdyx9c] {
        grid-column: 1;
        grid-row: 2;
        justify-self: stretch;
        text-align: left;
        max-width: none;
        padding-right: 0;
    }

    .landing-promo__inner:has(.landing-promo__tags--empty) .landing-promo__copy[b-88m4kdyx9c] {
        grid-row: 1;
    }

    .landing-promo__inner:has(.landing-promo__tags--empty) .landing-promo__actions[b-88m4kdyx9c] {
        grid-row: 2;
    }

    .landing-promo__actions[b-88m4kdyx9c] {
        grid-column: 1;
        grid-row: 3;
        width: 100%;
        justify-self: stretch;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 0.55rem 0.75rem;
    }

    .landing-promo__cta[b-88m4kdyx9c] {
        flex: 0 1 auto;
        min-width: 0;
    }

    .landing-promo__dismiss[b-88m4kdyx9c] {
        position: fixed;
        top: 0.55rem;
        right: clamp(0.75rem, 3vw, 2rem);
        z-index: 2;
    }
}
/* /Components/Layout/Footer.razor.rz.scp.css */
footer[b-8zxy2xos2m] {
    /*    background-color: #333;
*/ color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-around;
}

.footer-column[b-8zxy2xos2m] {
    flex: 1;
    padding: 0 30px;
    min-height: 180px;
}

    .footer-column h3[b-8zxy2xos2m] {
        margin-bottom: 10px;
        font-size: 0.8rem;
        color: var(--tertiary-color);
        font-weight: 700;
    }

    .footer-column ul[b-8zxy2xos2m] {
        list-style: none;
        padding: 0;
    }

        .footer-column ul li[b-8zxy2xos2m] {
            margin-bottom: 5px;
        }

    .footer-column div[b-8zxy2xos2m] {
        width: 200px;
        font-family: "Patua One", serif;
        color: var(--main-content-color);
        font-size:1.1rem;
    }

    .footer-column div:hover[b-8zxy2xos2m] {
        cursor:pointer;
    }

    .footer-column:has(div:hover) div:not(:hover)[b-8zxy2xos2m] {
        color: slategray;
        opacity: .5;
    }

.footer-content[b-8zxy2xos2m] {
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 30px;
}

.footer-section[b-8zxy2xos2m] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

    .footer-section.cnt[b-8zxy2xos2m] {
        align-items: center;
        justify-content: center;
    }

.logo[b-8zxy2xos2m] {
    background-image: url(/images/logo-white.png);
    height: 55px;
    width: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    max-height: 75px;
}

.logo-icon[b-8zxy2xos2m] {
    background-image: url(/images/logoiconcolour.png);
    height: 55px;
    width: 55px;
    background-size: contain;
    background-repeat: no-repeat;
    max-height: 55px;
    margin: 0px 20px 0px 20px;
}

.logo-container[b-8zxy2xos2m] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.socials-container[b-8zxy2xos2m] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.social[b-8zxy2xos2m] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: "Patua One", serif;
    color: var(--main-content-color);
    transition: transform 0.5s ease-in-out;
}

    .social:hover[b-8zxy2xos2m] {
        cursor: pointer;
        transform: scale(1.2);
    }

.socials-container:has(.social:hover) .social:not(:hover)[b-8zxy2xos2m] {
    color: slategray;
    opacity: .5;
}

    .socials-container:has(.social:hover) .social:not(:hover) svg[b-8zxy2xos2m] {
        fill: slategray;
    }

[b-8zxy2xos2m].social svg {
    height: 30px;
    width: 30px;
    fill: var(--main-content-color);
}

.copyright[b-8zxy2xos2m] {
    font-size:0.7rem;
}

[b-8zxy2xos2m].scale-in-hor-center {
    animation-delay: .3s;
}

.footer-column a[b-8zxy2xos2m] {
    display: block;
    font-family: "Patua One", serif;
    color: var(--main-content-color);
    font-size: 1.1rem;
    text-decoration: none;
}

.footer-column a:hover[b-8zxy2xos2m] {
    text-decoration: underline;
    color: var(--tertiary-color);
}

.glow-on-hover[b-8zxy2xos2m] {
    font-size: 20px;
    background-color: #1C1C1B;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    color: #fff;
    padding: 0 25px;
}

.glow-on-hover:hover[b-8zxy2xos2m] {
    filter: brightness(110%);
    transform: scale(0.9);
}

.glow-on-hover[b-8zxy2xos2m]:after {
    font-size: 14px;
    background: var(--primary-color-lighter);
}


    @keyframes move-b-8zxy2xos2m {
        100% {
            transform: translate3d(0, 0, 1px) rotate(360deg);
        }
    }
    /* Responsive Styles */
    @media screen and (max-width: 768px) {
        .footer-column[b-8zxy2xos2m] {
            min-height: unset;
        }

        footer.background[b-8zxy2xos2m] {
            height: 1250px;
        }

        .footer-section[b-8zxy2xos2m] {
            flex-direction: column;
            gap: 30px;
            align-items: flex-start;
        }

        .socials-container[b-8zxy2xos2m] {
            flex-direction: column;
            align-items: unset;
        }

        .copyright[b-8zxy2xos2m] {
            flex-direction: column-reverse;
        }

        button.glow-on-hover[b-8zxy2xos2m] {
            margin-top: 20px;
            width: 85%;
        }
    }



@media screen and (max-height: 450px) {

    .background[b-8zxy2xos2m] {
        height: 150vh;
    }

    .footer-column[b-8zxy2xos2m] {
        padding:unset;
    }

    .footer-column.scale-in-bottom[b-8zxy2xos2m] {
        padding: 0px 30px;
    }
}
/* /Components/Layout/Header.razor.rz.scp.css */

.header[b-t5k3nep47h] {
    position: sticky;
    width: 100%;
    background-color: transparent;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.logo[b-t5k3nep47h] {
    position: absolute;
    left: 30px;
    top: 10px;
    background-image: url('/images/logo-white.png');
    height: 300px;
    width: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    max-height: 75px;
    cursor: pointer;
}

/* Bitmap logo: skip reveal blur to avoid faint edge halos on some displays */
.header .logo.reveal-left[b-t5k3nep47h] {
    filter: none;
    -webkit-filter: none;
}

.header .logo.reveal-left.is-visible[b-t5k3nep47h] {
    will-change: auto;
}


.sticky-header[b-t5k3nep47h] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffff;
    min-height: 75px;
    max-height: 75px;
    z-index: 1000;
    transition: top 0.35s ease-out;
}

    .sticky-header .logo[b-t5k3nep47h] {
        background-image: url('/images/logo-whitebackground.jpg');
        top: 9px;
        height: 265px;
        width: 265px;

    }

.buttons-container[b-t5k3nep47h] {
    display: flex;
    position: absolute;
    right: 30px;
    top: 30px;
    gap: 20px;
}

    .buttons-container .primary[b-t5k3nep47h] {
        background: var(--primary-color-lighter);
    }

        .buttons-container .primary[b-t5k3nep47h]:after {
            background: var(--primary-color-lighter);
        }


.header .buttons-container .button.primary:hover[b-t5k3nep47h] {
    background: var(--primary-color-lighter);
    scale: 1.1;
}

.header .buttons-container .button.secondary[b-t5k3nep47h] {
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.45);
}

.header .buttons-container .button.secondary:hover[b-t5k3nep47h] {
    background: rgba(255, 255, 255, 0.12);
    scale: 1.1;
}

.sticky-header .buttons-container .button.secondary:hover[b-t5k3nep47h] {
    background: color-mix(in srgb, var(--primary-color) 10%, transparent);
}

.sticky-header .buttons-container[b-t5k3nep47h] {
    top:unset;
}

.sticky-header .glow-on-hover[b-t5k3nep47h]:before {
    background: linear-gradient(45deg, transparent, var(--tertiary-color), var(--tertiary-color-lighter), transparent) !important;
}

.sticky-header .buttons-container .button.primary[b-t5k3nep47h] {
    background: linear-gradient(90deg, var(--secondary-color) 10%, var(--primary-color) 50%, var(--tertiary-color) 90%);
}

.sticky-header .buttons-container .button.secondary[b-t5k3nep47h] {
    background-clip: text;
    color: transparent;
    background-image: linear-gradient(90deg, var(--secondary-color) 10%, var(--primary-color) 50%, var(--tertiary-color) 90%);
    border-color: var(--primary-color);
}

.glow-effect-rotator[b-t5k3nep47h] {
    height: 50px;
    width: 50px;
    background: conic-gradient(from 290deg, #FFFFFF1C 0%, var(--tertiary-color, #fff) 10%, #FFFFFF1C 20%);
    animation: RotateGlow-b-t5k3nep47h 3s linear infinite;
}

.slide-in-blurred-right[b-t5k3nep47h] {
    animation-delay: 1.5s;
}

@keyframes RotateGlow-b-t5k3nep47h {

    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/* Responsive Styles */
@media screen and (max-width: 992px) {
/*    .sticky-header {
        padding: 10px;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .buttons-container {
        order: 2;
        width: 100%;
        justify-content: flex-end;
    }
}

@media screen and (max-width: 768px) {*/

    .header[b-t5k3nep47h] {
        flex-direction: row;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding:unset;
    }

    .sticky-header[b-t5k3nep47h] {
        position: fixed;
    }

    .logo[b-t5k3nep47h] {
        margin-left: 10px;
        width: 70vw;
        position: unset;
        margin-top: 10px;
    }

    .buttons-container[b-t5k3nep47h] {
        display:none;
    }

}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-rtr6h2x8ar] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-rtr6h2x8ar] {
    flex: 1;
}

.lines[b-rtr6h2x8ar] {
    z-index:-1;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    margin: auto;
    width: 90vw;
}

.line[b-rtr6h2x8ar] {
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

    .line[b-rtr6h2x8ar]::after {
        content: '';
        display: block;
        position: absolute; 
        height: 15vh;
        width: 100%;
        top: -50%;
        left: 0;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--tertiary-color) 75%, var(--tertiary-color) 100%);
        animation: drop-b-rtr6h2x8ar 7s 0s infinite;
        animation-fill-mode: forwards;
        animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
    }
.line:nth-child(1)[b-rtr6h2x8ar]
{
    margin-left: -25%;
}
    .line:nth-child(1)[b-rtr6h2x8ar]::after
    {
        animation-delay: 2s;
    }

    .line:nth-child(3)[b-rtr6h2x8ar] {
        margin-left: 25%;
    }
        .line:nth-child(3)[b-rtr6h2x8ar]::after {
            animation-delay: 2.5s;
        }


@keyframes drop-b-rtr6h2x8ar {
    0% {
        top: -50%;
    }
    100% {
        top: 110%;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navigation-menu[b-proap1alfz] {
    margin-top: 25px;
    animation-fill-mode: backwards;
}

.sticky-header .navigation-menu[b-proap1alfz] {
    margin-top: unset;
}

.navigation-menu ul[b-proap1alfz] {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .navigation-menu ul li[b-proap1alfz] {
        display: inline-block;
        margin-left: 15px;
    }

[b-proap1alfz].navigation-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
}



    [b-proap1alfz].navigation-menu ul li a.active {
        background-color: var(--primary-color-lighter);
    }


[b-proap1alfz].navigation-menu ul li:hover a {
    background: #FFFFFF14;
}



.slide-in-blurred-top[b-proap1alfz] {
    animation-delay: 1.5s;
}

.menu-icon[b-proap1alfz] {
    display:none;
    margin-right:30px;

}

    [b-proap1alfz].menu-icon svg {
        height: 50px;
        stroke: #fff;
        fill: #fff;
    }
[b-proap1alfz].menu-icon.selected svg {
    height: 30px;

}


button.glow-on-hover[b-proap1alfz] {

    display:none;
}


/* Responsive Styles */
@media screen and (max-width: 992px) {
/*
}

@media screen and (max-width: 768px) {*/
    .navigation-menu[b-proap1alfz] {
        display: none;
    }


    .menu-icon[b-proap1alfz] {
        display: unset;
    }

    .slide-in-blurred-top[b-proap1alfz] {
         animation-delay: unset;
    }

    .navigation-menu.selected[b-proap1alfz] {
        display: block;
        background: linear-gradient(180deg, #fdfdff 0%, #f7f8fc 48%, #f3f4fa 100%);
        top: 60px;
        position: fixed;
        width: 100vw;
        padding: 0.75rem 0 2rem;
        bottom: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: inset 0 1px 0 color-mix(in srgb, var(--primary-color) 12%, transparent);
    }

    .navigation-menu ul[b-proap1alfz] {
        padding: 0 0.5rem;
        max-width: 24rem;
        margin-left: auto;
        margin-right: auto;
    }

    /* Desktop rule ::deep ul li:hover a targets mega toggle too; reset then style NavLinks only */
    [b-proap1alfz].navigation-menu ul li:hover a {
        background: transparent;
    }

    /* Three-tier colours: default, active/current, (Services subitems / soon handled in mega menu) */
    [b-proap1alfz].navigation-menu ul li a {
        color: var(--nav-mobile-text) !important;
        font-size: 1.125rem;
        font-weight: 600;
        padding: 0.75rem 1rem;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        max-width: 22rem;
        box-sizing: border-box;
        transition: background-color 0.2s ease, color 0.2s ease;
        text-align: center;
    }

    [b-proap1alfz].navigation-menu ul li a:not(.mega-menu-toggle):hover {
        background-color: color-mix(in srgb, var(--primary-color) 8%, transparent);
    }

    [b-proap1alfz].navigation-menu ul li a.active:not(.mega-menu-toggle) {
        background: var(--nav-mobile-active-bg);
        color: var(--nav-mobile-active-text) !important;
    }

    [b-proap1alfz].navigation-menu ul li:not(.mega-menu-trigger) {
        display: block;
        text-align: center;
        margin-left: unset;
        border-bottom: 1px solid color-mix(in srgb, var(--primary-color) 9%, transparent);
        padding-bottom: 0.35rem;
        margin-bottom: 0.35rem;
    }

    [b-proap1alfz].navigation-menu ul li.mega-menu-trigger {
        display: block;
        text-align: center;
        margin-left: unset;
        border-bottom: 1px solid color-mix(in srgb, var(--primary-color) 9%, transparent);
        padding-bottom: 0.35rem;
        margin-bottom: 0.35rem;
    }

    [b-proap1alfz].navigation-menu ul li:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .sticky-header .menu-icon[b-proap1alfz]  svg {
        stroke: var(--tertiary-color);
        fill: var(--tertiary-color);
    }
}
/* /Components/Layout/ServicesMegaMenu.razor.rz.scp.css */
/* ── Trigger (the <li> in the nav) ── */
.mega-menu-trigger[b-w5usempyv8] {
    position: static;
    display: inline-block;
    margin-left: 15px;
}

.mega-menu-toggle[b-w5usempyv8] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    background: none;
    border: none;
}

.mega-menu-toggle:hover[b-w5usempyv8] {
    background: rgba(255, 255, 255, 0.08);
}

.mega-menu-toggle.active[b-w5usempyv8] {
    background-color: var(--primary-color-lighter);
}

.mega-chevron[b-w5usempyv8] {
    display: inline-block;
    width: 12px;
    transition: transform 0.3s ease;
}

[b-w5usempyv8] .mega-chevron svg {
    height: 12px;
    width: 12px;
    fill: #fff;
}

.mega-menu-open .mega-chevron[b-w5usempyv8] {
    transform: rotate(180deg);
}

/* ── Override inherited white text from NavMenu ::deep rules ── */
.mega-menu-panel a[b-w5usempyv8],
.mega-menu-panel a:visited[b-w5usempyv8] {
    color: var(--nav-mobile-text, var(--main-content-color-dark)) !important;
    background: transparent !important;
}

.mega-menu-panel a:hover[b-w5usempyv8] {
    color: var(--primary-color-darkest) !important;
    background: color-mix(in srgb, var(--primary-color) 8%, transparent) !important;
}

.mega-menu-panel a.active[b-w5usempyv8],
.mega-menu-panel a.active:visited[b-w5usempyv8] {
    background: var(--nav-mobile-active-bg, var(--primary-color-lighter)) !important;
    color: var(--nav-mobile-active-text, var(--primary-color-darkest)) !important;
    font-weight: 600;
}

.mega-menu-panel a.active:hover[b-w5usempyv8] {
    background: var(--nav-mobile-active-bg, var(--primary-color-lighter)) !important;
    color: var(--nav-mobile-active-text, var(--primary-color-darkest)) !important;
}

.mega-menu-panel .mega-link--soon[b-w5usempyv8],
.mega-menu-panel .mega-link--soon:visited[b-w5usempyv8] {
    color: var(--nav-soon-muted) !important;
    background: transparent !important;
}

.mega-menu-panel .mega-link--soon:hover[b-w5usempyv8] {
    background: transparent !important;
    color: var(--nav-soon-muted) !important;
}

/* ── Panel ── */
.mega-menu-panel[b-w5usempyv8] {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100vw;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10), 0 1px 4px rgba(0, 0, 0, 0.06);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    overflow: hidden;
}

.mega-menu-open .mega-menu-panel[b-w5usempyv8] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* ── Inner grid ── */
.mega-menu-inner[b-w5usempyv8] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 2.5rem 2.25rem;
}

/* ── Columns ── */
.mega-col__heading[b-w5usempyv8] {
    font-family: "Patua One", serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-color-darkest);
    margin: 0 0 0.75rem 0;
    padding-bottom: 0.45rem;
    border-bottom: 2px solid color-mix(in srgb, var(--primary-color) 18%, transparent);
}

.mega-col__heading--sub[b-w5usempyv8] {
    margin-top: 1.25rem;
}

.mega-col__links[b-w5usempyv8] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-col__links a[b-w5usempyv8] {
    display: block;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    font-size: 0.88rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

/* Non-anchor rows match link spacing (Coming soon spans) */
.mega-col__links .mega-link[b-w5usempyv8] {
    display: block;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    font-size: 0.88rem;
    transition: background 0.2s ease, color 0.2s ease;
}

/* "Coming soon" — non-interactive */
.mega-link--soon[b-w5usempyv8] {
    pointer-events: none;
    cursor: default;
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
}

.mega-badge[b-w5usempyv8] {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1px 7px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--tertiary-color) 12%, #f0f0f0);
    color: var(--tertiary-color-darker, #555);
    line-height: 1.5;
    white-space: nowrap;
}

/* ── Sticky header overrides ── */
:global(.sticky-header) .mega-menu-toggle[b-w5usempyv8] {
    color: var(--primary-color);
}

:global(.sticky-header) .mega-menu-toggle:hover[b-w5usempyv8] {
    background: rgba(0, 0, 0, 0.04);
}

:global(.sticky-header) .mega-menu-toggle.active[b-w5usempyv8] {
    background-color: var(--primary-color-lighter);
    color: #fff;
}

:global(.sticky-header) .mega-menu-toggle.active[b-w5usempyv8]  .mega-chevron svg {
    fill: #fff;
}

:global(.sticky-header)[b-w5usempyv8]  .mega-chevron svg {
    fill: var(--primary-color);
}

/* ── Mobile (<=992px) ── */
@media screen and (max-width: 992px) {
    .mega-menu-trigger[b-w5usempyv8] {
        display: block;
        text-align: center;
        margin-left: 0;
    }

    /* Sticky header desktop rules win on specificity; drawer keeps the mobile palette */
    :global(.sticky-header) .mega-menu-trigger .mega-menu-toggle[b-w5usempyv8] {
        color: var(--nav-mobile-text);
    }

    :global(.sticky-header) .mega-menu-trigger .mega-menu-toggle:hover[b-w5usempyv8] {
        background: color-mix(in srgb, var(--primary-color) 7%, transparent);
    }

    :global(.sticky-header) .mega-menu-trigger.mega-menu-open .mega-menu-toggle[b-w5usempyv8],
    :global(.sticky-header) .mega-menu-trigger .mega-menu-toggle.active[b-w5usempyv8] {
        background-color: var(--nav-mobile-active-bg);
        color: var(--nav-mobile-active-text);
    }

    :global(.sticky-header) .mega-menu-trigger.mega-menu-open .mega-menu-toggle[b-w5usempyv8]  .mega-chevron svg,
    :global(.sticky-header) .mega-menu-trigger .mega-menu-toggle.active[b-w5usempyv8]  .mega-chevron svg {
        fill: var(--nav-mobile-active-text);
    }

    .mega-menu-toggle[b-w5usempyv8] {
        color: var(--nav-mobile-text);
        font-size: 1.15rem;
        font-weight: 600;
        justify-content: center;
        width: calc(100% - 1.5rem);
        max-width: 22rem;
        margin: 0 auto;
        padding: 0.75rem 1rem;
        min-height: 48px;
        border-radius: 10px;
    }

    .mega-menu-toggle:hover[b-w5usempyv8] {
        background: color-mix(in srgb, var(--primary-color) 7%, transparent);
    }

    .mega-menu-toggle.active[b-w5usempyv8],
    .mega-menu-open .mega-menu-toggle[b-w5usempyv8] {
        background: var(--nav-mobile-active-bg);
        color: var(--nav-mobile-active-text);
    }

    .mega-menu-open .mega-menu-toggle[b-w5usempyv8]  .mega-chevron svg,
    .mega-menu-toggle.active[b-w5usempyv8]  .mega-chevron svg {
        fill: var(--nav-mobile-active-text);
    }

    [b-w5usempyv8] .mega-chevron svg {
        fill: currentColor;
        height: 14px;
        width: 14px;
    }

    .mega-menu-panel[b-w5usempyv8] {
        position: static;
        width: calc(100% - 1.5rem);
        max-width: 22rem;
        margin: 0.35rem auto 0.35rem;
        box-shadow: 0 4px 24px rgba(2, 0, 87, 0.08);
        background: #fff;
        border: 1px solid color-mix(in srgb, var(--primary-color) 14%, #e8e8f5);
        border-radius: 12px;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        max-height: 0;
        transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1),
            box-shadow 0.35s ease;
        overflow: hidden;
    }

    .mega-menu-open .mega-menu-panel[b-w5usempyv8] {
        max-height: unset;
    }

    .mega-menu-inner[b-w5usempyv8] {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem 1.1rem 1.25rem;
    }

    .mega-col__heading[b-w5usempyv8] {
        font-size: 0.72rem;
        margin-bottom: 0.35rem;
        padding-bottom: 0.3rem;
        letter-spacing: 0.07em;
        border-bottom-color: color-mix(in srgb, var(--primary-color) 14%, transparent);
    }

    .mega-col__heading--sub[b-w5usempyv8] {
        margin-top: 0.75rem;
        padding-top: 0.5rem;
        border-top: 1px solid color-mix(in srgb, var(--primary-color) 10%, transparent);
    }

    .mega-col__links[b-w5usempyv8] {
        gap: 2px;
    }

    .mega-col__links a[b-w5usempyv8] {
        font-size: 0.95rem;
        padding: 0.55rem 0.65rem;
        text-align: left;
        border-radius: 8px;
        font-weight: 500;
        min-height: 44px;
        display: flex !important;
        align-items: center;
    }

    .mega-col__links .mega-link[b-w5usempyv8] {
        padding: 0.55rem 0.65rem;
        font-size: 0.95rem;
        border-radius: 8px;
        min-height: 44px;
    }

    .mega-menu-panel a[b-w5usempyv8],
    .mega-menu-panel a:visited[b-w5usempyv8] {
        color: var(--nav-mobile-text) !important;
    }

    .mega-menu-panel a:hover:not(.active)[b-w5usempyv8] {
        background: color-mix(in srgb, var(--primary-color) 8%, transparent) !important;
        color: var(--nav-mobile-active-text) !important;
    }

    .mega-menu-panel a.active[b-w5usempyv8],
    .mega-menu-panel a.active:visited[b-w5usempyv8] {
        background: var(--nav-mobile-active-bg) !important;
        color: var(--nav-mobile-active-text) !important;
    }

    .mega-menu-panel .mega-link--soon[b-w5usempyv8] {
        color: var(--nav-soon-muted) !important;
        opacity: 0.92;
    }
}
/* /Components/Pages/Checkout/PlatformCheckoutCompletePage.razor.rz.scp.css */
.platform-checkout-route[b-cb1or5xulp] {
    background: linear-gradient(180deg, color-mix(in srgb, var(--primary-color) 8%, white), color-mix(in srgb, var(--tertiary-color) 5%, white) 50%, var(--main-body-color) 100%);
}

.platform-checkout-route[b-cb1or5xulp]  .page-header.page-header--checkout {
    top: -160px;
    height: 40vh;
    min-height: 10.5rem;
    max-height: 25rem;
    margin-bottom: calc(-160px + 8vh);
}

.platform-checkout-route[b-cb1or5xulp]  .page-header.page-header--checkout .page-header__content {
    padding-top: 5.25rem;
}

.platform-checkout-route[b-cb1or5xulp]  .page-header.page-header--checkout .page-title {
    top: 0;
    line-height: 1.2;
    animation: none;
    opacity: 1;
}

.platform-checkout-route[b-cb1or5xulp]  .page-header.page-header--checkout .page-title h1 {
    font-size: clamp(1.35rem, 3.2vw, 2rem);
    margin-bottom: 0.35rem;
    animation: none;
    opacity: 1;
}

.platform-checkout-route[b-cb1or5xulp]  .page-header.page-header--checkout .subheader {
    animation: none;
    opacity: 1;
}

.platform-checkout-route[b-cb1or5xulp]  .page-header.page-header--checkout .subheader h2 {
    font-size: clamp(0.88rem, 2vw, 1.05rem);
    line-height: 1.45;
    font-weight: 500;
}

.platform-checkout-page[b-cb1or5xulp] {
    position: relative;
    padding: clamp(1rem, 2.5vw, 1.75rem) 1rem clamp(3rem, 5vw, 4.5rem);
    scroll-margin-top: 5.5rem;
}

.platform-checkout[b-cb1or5xulp] {
    max-width: 640px;
    margin: 0 auto;
}

.platform-checkout__card[b-cb1or5xulp] {
    padding: 2rem 1.75rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 32px rgba(var(--primary-color-rgba), 0.1);
    border: 2px solid color-mix(in srgb, var(--primary-color) 22%, rgba(0, 0, 0, 0.08));
}

.platform-checkout__card--centered[b-cb1or5xulp] {
    text-align: center;
}

.platform-checkout__card--success[b-cb1or5xulp] {
    border-top: 4px solid var(--positive-color);
}

.platform-checkout__success-lead[b-cb1or5xulp] {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--primary-color-darkest);
}

.platform-checkout__complete-next[b-cb1or5xulp] {
    margin: 0 0 1.75rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.65);
}

.platform-checkout__actions[b-cb1or5xulp] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

[b-cb1or5xulp].platform-checkout__actions .button.secondary {
    color: var(--primary-color);
    text-decoration: none;
}

[b-cb1or5xulp].platform-checkout__actions .button.secondary:hover {
    color: #fff;
}

@media screen and (max-width: 992px) {
    .platform-checkout-route[b-cb1or5xulp]  .page-header.page-header--checkout {
        height: auto;
        min-height: 24rem;
        max-height: none;
        margin-bottom: calc(-160px + 2.75rem);
    }

    .platform-checkout-route[b-cb1or5xulp]  .page-header.page-header--checkout .page-header__content {
        height: auto;
        min-height: 24rem;
        padding-top: 10.5rem;
        padding-bottom: 4.25rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-sizing: border-box;
    }

    .platform-checkout-route[b-cb1or5xulp]  .page-header.page-header--checkout .page-title {
        height: auto;
        padding-inline: 1.25rem;
    }

    .platform-checkout-route[b-cb1or5xulp]  .page-header.page-header--checkout .page-title h1 {
        font-size: clamp(1.55rem, 7vw, 2.1rem);
        line-height: 1.15;
        margin-bottom: 0.55rem;
    }

    .platform-checkout-route[b-cb1or5xulp]  .page-header.page-header--checkout .subheader {
        margin: 0;
    }

    .platform-checkout-route[b-cb1or5xulp]  .page-header.page-header--checkout .subheader h2 {
        font-size: clamp(0.95rem, 4.2vw, 1.15rem);
        line-height: 1.4;
    }
}
/* /Components/Pages/Checkout/PlatformCheckoutPage.razor.rz.scp.css */
.platform-checkout-route[b-imwnv363ac] {
    background: linear-gradient(180deg, color-mix(in srgb, var(--primary-color) 8%, white), color-mix(in srgb, var(--tertiary-color) 5%, white) 50%, var(--main-body-color) 100%);
}

.platform-checkout-route[b-imwnv363ac]  .page-header.page-header--checkout {
    top: -160px;
    height: 40vh;
    min-height: 10.5rem;
    max-height: 25rem;
    margin-bottom: calc(-160px + 8vh);
}

[b-imwnv363ac].platform-checkout__actions .button.secondary {
    color: var(--primary-color);
    text-decoration: none;
}


    .platform-checkout-route[b-imwnv363ac]  .page-header.page-header--checkout .page-header__content {
        padding-top: 5.25rem;
    }



    .platform-checkout-route[b-imwnv363ac]  .page-header.page-header--checkout .page-title {
        top: 0;
        line-height: 1.2;
        animation: none;
        opacity: 1;
    }



        .platform-checkout-route[b-imwnv363ac]  .page-header.page-header--checkout .page-title h1 {
            font-size: clamp(1.35rem, 3.2vw, 2rem);
            margin-bottom: 0.35rem;
            animation: none;
            opacity: 1;
        }



    .platform-checkout-route[b-imwnv363ac]  .page-header.page-header--checkout .subheader {
        animation: none;
        opacity: 1;
    }



        .platform-checkout-route[b-imwnv363ac]  .page-header.page-header--checkout .subheader h2 {
            font-size: clamp(0.88rem, 2vw, 1.05rem);
            line-height: 1.45;
            font-weight: 500;
        }



.platform-checkout-page[b-imwnv363ac] {
    position: relative;
    padding: clamp(1rem, 2.5vw, 1.75rem) 1rem clamp(3rem, 5vw, 4.5rem);
    scroll-margin-top: 5.5rem;
}



.platform-checkout__main[b-imwnv363ac] {
    scroll-margin-top: 5.5rem;
}



.platform-checkout[b-imwnv363ac] {
    max-width: 1100px;
    margin: 0 auto;
}



.platform-checkout--invalid[b-imwnv363ac],
.platform-checkout--complete[b-imwnv363ac] {
    max-width: 640px;
}



.platform-checkout__secure-badge[b-imwnv363ac] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 1.5rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--tertiary-color-darker);
    background: color-mix(in srgb, var(--tertiary-color) 14%, #fff);
    border: 1px solid color-mix(in srgb, var(--tertiary-color) 35%, transparent);
}



.platform-checkout__secure-icon[b-imwnv363ac] {
    font-size: 0.95rem;
    line-height: 1;
}



.platform-checkout__layout[b-imwnv363ac] {
    display: grid;
    gap: 1.5rem;
}



@media (min-width: 900px) {

    .platform-checkout__layout[b-imwnv363ac] {
        grid-template-columns: minmax(280px, 360px) 1fr;
        align-items: start;
    }
}



.platform-checkout__summary[b-imwnv363ac],
.platform-checkout__main[b-imwnv363ac],
.platform-checkout__card[b-imwnv363ac] {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 32px rgba(var(--primary-color-rgba), 0.1);
}



.platform-checkout__summary[b-imwnv363ac] {
    padding: 1.5rem 1.6rem;
    border: 2px solid color-mix(in srgb, var(--primary-color) 28%, rgba(0, 0, 0, 0.08));
    border-top: 4px solid var(--primary-color);
}



.platform-checkout__main[b-imwnv363ac] {
    padding: 1.5rem 1.6rem 1.75rem;
    border: 1px solid color-mix(in srgb, var(--primary-color) 18%, rgba(0, 0, 0, 0.08));
}



.platform-checkout__card[b-imwnv363ac] {
    padding: 2rem 1.75rem;
    border: 2px solid color-mix(in srgb, var(--primary-color) 22%, rgba(0, 0, 0, 0.08));
}



.platform-checkout__card--centered[b-imwnv363ac] {
    text-align: center;
}



.platform-checkout__card--success[b-imwnv363ac] {
    border-top: 4px solid var(--positive-color);
}



.platform-checkout__summary-title[b-imwnv363ac],
.platform-checkout__form-title[b-imwnv363ac] {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color-darkest);
}



.platform-checkout__summary-list[b-imwnv363ac] {
    margin: 0 0 1rem;
}



.platform-checkout__summary-row[b-imwnv363ac] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4rem 0;
    font-size: 0.92rem;
}



    .platform-checkout__summary-row dt[b-imwnv363ac] {
        margin: 0;
        color: rgba(0, 0, 0, 0.55);
        font-weight: 500;
    }



    .platform-checkout__summary-row dd[b-imwnv363ac] {
        margin: 0;
        text-align: right;
        font-weight: 600;
        color: var(--primary-color-darkest);
    }



.platform-checkout__summary-row--line dd[b-imwnv363ac] {
    font-weight: 500;
}



.platform-checkout__total[b-imwnv363ac] {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.5rem;
    margin: 0;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}



.platform-checkout__total-label[b-imwnv363ac] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color-darkest);
    margin-right: auto;
}



.platform-checkout__total-amount[b-imwnv363ac] {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--primary-color);
}



.platform-checkout__total-period[b-imwnv363ac] {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.5);
}



.platform-checkout__form .form-group[b-imwnv363ac] {
    margin-bottom: 1rem;
}



.platform-checkout__form label[b-imwnv363ac] {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    color: var(--primary-color-darkest);
}



.platform-checkout__input[b-imwnv363ac] {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, var(--primary-color) 22%, rgba(0, 0, 0, 0.12));
    background: #fff;
    color: var(--primary-color-darkest);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}



    .platform-checkout__input:focus[b-imwnv363ac] {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color) 22%, transparent);
    }



.platform-checkout__required[b-imwnv363ac] {
    color: var(--negative-color);
}



.platform-checkout__optional[b-imwnv363ac] {
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.9rem;
}



.platform-checkout__hint[b-imwnv363ac] {
    margin: 0.35rem 0 0;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.55);
}



.platform-checkout__error[b-imwnv363ac] {
    color: var(--negative-color);
    margin: 0.75rem 0;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    background: color-mix(in srgb, var(--negative-color) 10%, white);
    border: 1px solid color-mix(in srgb, var(--negative-color) 25%, transparent);
}

.platform-checkout__error:empty[b-imwnv363ac],
.platform-checkout__error--hidden[b-imwnv363ac],
.platform-checkout__error[hidden][b-imwnv363ac] {
    display: none;
    margin: 0;
    padding: 0;
    border: none;
}



.platform-checkout__actions[b-imwnv363ac] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.platform-checkout__submit:disabled[b-imwnv363ac] {
    opacity: 0.45;
    cursor: not-allowed;
    filter: grayscale(0.15);
}

.platform-checkout__submit:disabled:hover[b-imwnv363ac] {
    filter: grayscale(0.15);
    cursor: not-allowed;
}



.platform-checkout__actions--centered[b-imwnv363ac] {
    justify-content: center;
}



.platform-checkout__payment h2[b-imwnv363ac] {
    margin-bottom: 1rem;
}



.platform-checkout__terms[b-imwnv363ac] {
    margin-top: 1.25rem;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, var(--primary-color) 22%, rgba(0, 0, 0, 0.12));
    background: color-mix(in srgb, var(--primary-color) 5%, #fff);
}

.platform-checkout__terms-label[b-imwnv363ac] {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0;
    font-weight: 600;
    color: var(--primary-color-darkest);
    cursor: pointer;
    line-height: 1.45;
}

.platform-checkout__terms-checkbox[b-imwnv363ac] {
    margin-top: 0.2rem;
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.platform-checkout__terms-label a[b-imwnv363ac] {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.platform-checkout__terms-label a:hover[b-imwnv363ac] {
    color: var(--primary-color-darker);
}

.platform-checkout__terms-mandatory[b-imwnv363ac] {
    display: inline-block;
    margin-left: 0.25rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--negative-color);
    text-transform: lowercase;
}

.platform-checkout__pay-btn[b-imwnv363ac] {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.platform-checkout__pay-btn:disabled[b-imwnv363ac] {
    opacity: 0.45;
    cursor: not-allowed;
    filter: grayscale(0.15);
}

.platform-checkout__pay-btn:disabled:hover[b-imwnv363ac] {
    filter: grayscale(0.15);
    cursor: not-allowed;
}



.platform-checkout__notice[b-imwnv363ac] {
    margin: 1rem 0 0;
    font-size: 0.88rem;
    color: rgba(0, 0, 0, 0.55);
}



.platform-checkout__success-lead[b-imwnv363ac] {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--primary-color-darkest);
}



.platform-checkout__complete-next[b-imwnv363ac] {
    margin: 0 0 1.75rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.65);
}



.platform-checkout--invalid p[b-imwnv363ac] {
    margin: 0 0 1.5rem;
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.72);
}



@media screen and (max-width: 992px) {

    .platform-checkout-route[b-imwnv363ac]  .page-header.page-header--checkout {
        height: auto;
        min-height: 24rem;
        max-height: none;
        margin-bottom: calc(-160px + 2.75rem);
    }

    .platform-checkout-route[b-imwnv363ac]  .page-header.page-header--checkout .page-header__content {
        height: auto;
        min-height: 24rem;
        padding-top: 10.5rem;
        padding-bottom: 4.25rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-sizing: border-box;
    }

    .platform-checkout-route[b-imwnv363ac]  .page-header.page-header--checkout .page-title {
        height: auto;
        padding-inline: 1.25rem;
    }

    .platform-checkout-route[b-imwnv363ac]  .page-header.page-header--checkout .page-title h1 {
        font-size: clamp(1.55rem, 7vw, 2.1rem);
        line-height: 1.15;
        margin-bottom: 0.55rem;
    }

    .platform-checkout-route[b-imwnv363ac]  .page-header.page-header--checkout .subheader {
        margin: 0;
    }

    .platform-checkout-route[b-imwnv363ac]  .page-header.page-header--checkout .subheader h2 {
        font-size: clamp(0.95rem, 4.2vw, 1.15rem);
        line-height: 1.4;
    }
}
/* /Components/Pages/ContactUs/ContactUs.razor.rz.scp.css */
h2 .bld[b-sj2hxzvh0a] {
    color: var(--tertiary-color);
    font-size: 2.5rem;
    font-weight: 600;
}

.content-container[b-sj2hxzvh0a] {
    display: flex;
    justify-content: center;
    position: relative;
    top: calc(100vh* -0.40);
}

    .content-container.slide-in-bottom[b-sj2hxzvh0a] {
        animation-duration: 2s;
        animation-delay: .5s;
    }

.form-container[b-sj2hxzvh0a] {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 60vw;
    max-width: 100%;
}

.form-content[b-sj2hxzvh0a] {
    display:flex;
}
    .form-content section[b-sj2hxzvh0a]{
        width:50%;

    }


.form-container h2[b-sj2hxzvh0a] {
    margin-top: 0;
    font-size: 3rem;
    color: #333;
    text-align: center;
    margin: 30px 0px;
}

.form-group[b-sj2hxzvh0a] {
    margin-bottom: 15px;
}

    .form-group label[b-sj2hxzvh0a] {
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .form-group input[b-sj2hxzvh0a],
    .form-group textarea[b-sj2hxzvh0a] {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
    }

        .form-group input:focus[b-sj2hxzvh0a],
        .form-group textarea:focus[b-sj2hxzvh0a] {
            border-color: #007BFF;
            outline: none;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
        }

button[b-sj2hxzvh0a] {
    width: 50%;
    height: fit-content;
    padding: 10px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

    button:hover[b-sj2hxzvh0a] {
        background-color: #0056b3;
    }

.title[b-sj2hxzvh0a] {
    font-family: "Patua One", serif;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 2.5px;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 2rem;
}

.subtitle[b-sj2hxzvh0a] {
    font-family: "Patua One", serif;
    font-weight: 400;
    font-style: normal;
    font-size: .9rem;
    margin-top: 20px;
    color: var(--tertiary-color);
}

.spacer[b-sj2hxzvh0a] {
    width:30%;
    border: solid 3px var(--tertiary-color);
    border-radius:10px;
}

section.info-section[b-sj2hxzvh0a] {
    margin: 0px 30px;
    display: flex;
    width: 50%;
    flex-direction: column;
    justify-content: center;
}

.form-footer[b-sj2hxzvh0a] {
    margin: 0px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo[b-sj2hxzvh0a] {
    background-image: url('/images/logo-whitebackground.jpg');
    height: 250px;
    width: 250px;
    background-size: contain;
    background-repeat: no-repeat;
    max-height: 75px;
}

button.disabled[b-sj2hxzvh0a] {
    cursor: not-allowed !important;
    background-color: lightgray !important;
}

@media screen and (max-width: 992px) {

    h2 .bld[b-sj2hxzvh0a] {
        font-size: 1.6rem;
    }

    .form-container[b-sj2hxzvh0a] {
        width: 90vw;
    }

        .form-container .form-content[b-sj2hxzvh0a] {
            flex-direction: column-reverse;
            gap: 30px;
        }

    .form-content section[b-sj2hxzvh0a] {
        width: 100%;
    }

    section.info-section[b-sj2hxzvh0a] {
        margin: unset;
    }

    .logo[b-sj2hxzvh0a] {
        height: 150px;
        width: 150px;
        position: relative;
        left: -20px;
        top: 22px;
    }
}

/* /Components/Pages/Features/AssetPage.razor.rz.scp.css */
.assetpage[b-hxvpaz1m4s] {
    position: relative;
}

@media screen and (max-width: 992px) {

    [b-hxvpaz1m4s].page-title h1 {
        font-size: 2.2rem !important;
        color: var(--tertiary-color);
    }

    [b-hxvpaz1m4s].page-title .subheader {
        color: var(--tertiary-color);
    }

    [b-hxvpaz1m4s].assetpage .feature-card:hover .title {
        font-size: 1.1rem;
    }

    [b-hxvpaz1m4s].faq .section-header {
        z-index: 3;
        transform: skew(-3deg, -3deg);
        height: 500px;
        position: relative;
        top: -450px;
    }

    [b-hxvpaz1m4s].faq #faq-section {
        position: absolute;
        bottom: -240px;
        padding-top: 450px;
        z-index: 2;
        width: 0;
        height: 94vh;
    }

    [b-hxvpaz1m4s].faq .background {
        position: absolute;
        width: 120vw;
        height: 90vh;
        left: -40px;
        transform: skew(-3deg, -3deg);
    }


    [b-hxvpaz1m4s].faq .faq-section {
        height: 45vh;
        width: 100vw;
        position: absolute;
        top: 200px;
        display: flex;
        margin: 0;
        align-items: center;
    }


    [b-hxvpaz1m4s].assetpage .cards-section {
        margin-top: 150px;
    }
}


/* /Components/Pages/Features/BookingHighlightsSection.razor.rz.scp.css */
/* Glass highlights (SectionBrand child + panels) */
[b-ifibdk6b9l] .section--brand .booking-glass-hero {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.booking-glass-hero[b-ifibdk6b9l] {
    position: relative;
    width: min(1200px, 92vw);
    margin: 0 auto 2.5rem;
    padding: 0 0.5rem;
    z-index: 1;
}

.booking-glass-bento[b-ifibdk6b9l] {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.2rem;
}

@media (max-width: 900px) {
    .booking-glass-bento[b-ifibdk6b9l] {
        grid-template-columns: 1fr;
    }
}

.glass-panel[b-ifibdk6b9l] {
    background: rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 22px;
    box-shadow:
        0 4px 24px rgba(31, 38, 135, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    padding: 1.5rem 1.45rem 1.6rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.25s ease;
}

.glass-panel:hover[b-ifibdk6b9l] {
    transform: translateY(-3px);
    box-shadow:
        0 12px 40px rgba(31, 38, 135, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.75);
}

.glass-panel--wide[b-ifibdk6b9l] {
    grid-column: 1 / -1;
}

.glass-kicker[b-ifibdk6b9l] {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tertiary-color-darker);
    margin-bottom: 0.5rem;
}

.glass-heading[b-ifibdk6b9l] {
    font-family: "Patua One", serif;
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    color: var(--primary-color-darkest);
    margin: 0 0 0.6rem 0;
    line-height: 1.2;
}

.glass-panel p[b-ifibdk6b9l] {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--main-content-color-dark);
}

.booking-highlights-cta[b-ifibdk6b9l] {
    width: min(1200px, 92vw);
    margin: 0 auto 2rem;
    padding: 0 0.5rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 25px;
}

.booking-highlights-cta__lead[b-ifibdk6b9l] {
    margin: 0 auto 1rem;
    max-width: 42rem;
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.78);
}

.booking-highlights-cta__link[b-ifibdk6b9l] {
    text-decoration: none;
    box-sizing: border-box;
}

.booking-highlights-cta__link:visited[b-ifibdk6b9l] {
    color: #fff;
}

.booking-highlights-cta .button[b-ifibdk6b9l] {
    scale: 1.2;

}
.booking-highlights-cta .button:hover[b-ifibdk6b9l] {
    color: var(--primary-color);

}

/* Logo extends past the content box; clipping + blur caused faint edge lines on some GPUs */
.booking-highlights-section[b-ifibdk6b9l]  .section--brand {
    overflow: visible;
}

.booking-highlights-section[b-ifibdk6b9l]  .section-brand__content {
    overflow: visible;
}

/* Reveal on wrapper only — blur on bitmap layers causes faint box/dotted edges on some displays */
.pencilin-logo-wrap[b-ifibdk6b9l] {
    position: absolute;
    right: -100px;
    top: -300px;
    width: 300px;
    height: 300px;
    pointer-events: none;
    z-index: 2;
}

.pencilin-logo-wrap.reveal-right[b-ifibdk6b9l] {
    filter: none;
    -webkit-filter: none;
}

.pencilin-logo-wrap.reveal-right.is-visible[b-ifibdk6b9l] {
    will-change: auto;
}

.pencilin-logo[b-ifibdk6b9l] {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: rotate(15deg) translateZ(0);
    border: 0;
    outline: none;
    box-shadow: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media (max-width: 768px) {
    .pencilin-logo-wrap[b-ifibdk6b9l] {
        display: none;
    }
}

[b-ifibdk6b9l].booking-highlights-section .section-brand__head {
    width: min(1200px, 92vw);
    max-width: unset;
}
/* /Components/Pages/Features/BookingLocationPage.razor.rz.scp.css */
.booking-location-page[b-ew8zvjc9v2] {
    position: relative;
    top: calc(100vh * -0.4);
    width: min(980px, 92vw);
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
    padding-bottom: 3rem;
}

.booking-location-panel[b-ew8zvjc9v2] {
    padding: 1.75rem 1.5rem;
    border-radius: 22px;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.28));
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(2, 0, 87, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.booking-location-panel h2[b-ew8zvjc9v2] {
    margin: 0 0 0.75rem 0;
    font-family: "Patua One", serif;
    color: var(--primary-color-darkest);
}

.booking-location-panel p[b-ew8zvjc9v2] {
    color: var(--main-content-color-dark);
    line-height: 1.7;
    margin: 0 0 0.9rem 0;
}

.booking-location-list[b-ew8zvjc9v2] {
    margin: 0 0 1rem 0;
    padding-left: 1.2rem;
    line-height: 1.7;
    color: var(--main-content-color-dark);
}

.booking-location-link[b-ew8zvjc9v2] {
    font-weight: 600;
    color: var(--tertiary-color-darker);
    text-decoration: none;
}

.booking-location-link:hover[b-ew8zvjc9v2] {
    text-decoration: underline;
}
/* /Components/Pages/Features/BookingPage.razor.rz.scp.css */
.bookingpage[b-b7c2y4v99u] {
    position: relative;
    top: calc(100vh * -0.4);
    padding-bottom: 0;
}

.booking-hero__video[b-b7c2y4v99u],
.booking-hero__poster[b-b7c2y4v99u] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    z-index: 0;
}

[b-b7c2y4v99u].page-title .booking-page-h1 {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: min(100%, 54rem);
    margin-inline: auto;
    line-height: 1.15;
}

[b-b7c2y4v99u].page-title .booking-h1__pencilin {
    display: block;
    height: 3em;
    width: auto;
    margin: 0;
    filter: drop-shadow(0 3px 10px rgba(2, 0, 87, 0.22));
}

[b-b7c2y4v99u].page-title .booking-page-h1__text {
    display: block;
}

/* Same as homepage: do not use app.css floatUp (re-renders leave the hero stuck invisible) */
.bookingpage[b-b7c2y4v99u]  .video-wrapper {
    transform: none;
    opacity: 1;
    animation: bookingHeroVideoIn-b-b7c2y4v99u 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.bookingpage[b-b7c2y4v99u]  .video-wrapper video {
    min-height: min(48vh, 520px);
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

@keyframes bookingHeroVideoIn-b-b7c2y4v99u {
    from {
        opacity: 0.6;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .bookingpage[b-b7c2y4v99u]  .video-wrapper {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

[b-b7c2y4v99u] .bookingpage .features-container {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)) !important;
}

[b-b7c2y4v99u] .bookingpage .feature-item {
    width: 360px !important;
}

@media screen and (max-width: 768px) {
    [b-b7c2y4v99u].page-title .subheader h2 {
        font-size: 1rem !important;
    }

    [b-b7c2y4v99u].page-title .booking-page-h1 {
        gap: 0.4rem;
    }

    .video-wrapper video[b-b7c2y4v99u],
    .booking-video-placeholder[b-b7c2y4v99u] {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        height: auto;
        overflow: hidden;
        border-radius: clamp(1.25rem, 6.5vw, 75px);
    }

    #booking-hero-video[b-b7c2y4v99u] {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        min-height: 0;
        aspect-ratio: unset;
        object-fit: cover;
        object-position: center 42%;
        border-radius: 0;
    }

    .video-hero-container[b-b7c2y4v99u] {
        width: 95vw;
        padding-bottom: 150px;
        z-index: 10;
    }

    [b-b7c2y4v99u] .bookingpage .features-container {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    [b-b7c2y4v99u] .bookingpage .feature-item {
        width: 300px !important;
    }

}

@media (max-width: 900px) {
    [b-b7c2y4v99u].bookingpage #feature-section {
        margin-top: 100px;
    }

    .faq[b-b7c2y4v99u] {
        margin-top:  100px;
        margin-bottom:75px;
    }

    [b-b7c2y4v99u].bookingpage .cards-section {
        margin-top: 200px;
    }

    [b-b7c2y4v99u].faq .section-header {
        z-index: 3;
        transform: skew(-3deg, -3deg);
        height: 500px;
        position: relative;
        top: -450px;
    }

    [b-b7c2y4v99u].faq #faq-section {
        position: absolute;
        bottom: -240px;
        padding-top: 450px;
        z-index: 2;
        width: 0;
        height: 94vh;
    }

    [b-b7c2y4v99u].faq .background {
        position: absolute;
        width: 120vw;
        height: 130vh;
        left: -40px;
        transform: skew(-3deg, -3deg);
    }


    [b-b7c2y4v99u].faq .faq-section {
        height: 45vh;
        width: 100vw;
        position: absolute;
        top: 325px;
        display: flex;
        margin: 0;
        align-items: center;
    }
}
/* /Components/Pages/Features/Components/FeatureCarousel.razor.rz.scp.css */
.carousel-container[b-7pmfu7odes] {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-wrapper[b-7pmfu7odes] {
    display: flex;
    transition: transform 0.5s ease;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.feature-carousel-item[b-7pmfu7odes] {
    background: var(--tertiary-color-darkest);
    min-width: 23.5rem;
    margin: 20px;
    text-align: center;
    height: 50vh;
    min-height:410px;
    border-radius: 18px;
    color: #fff;
    box-shadow: 2px 4px 12px var(--bs-gray-600);
    cursor: pointer;
    transition: transform 1s ease-in-out;
}
    .feature-carousel-item:hover[b-7pmfu7odes] {
        transform: scale(1.05);
    }

    .feature-carousel-item h3[b-7pmfu7odes] {
        font-size: 28px;
        font-weight: 600;
        letter-spacing: .007em;
        line-height: 1.1428571429;
        font-family: "Patua One", serif;
        font-weight: 600;
        font-style: normal;
    }

.feature-carousel-item img[b-7pmfu7odes] {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.carousel-button[b-7pmfu7odes] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}

    .carousel-button.left[b-7pmfu7odes] {
        left: 10px;
    }

    .carousel-button.right[b-7pmfu7odes] {
        right: 10px;
    }

.info-area[b-7pmfu7odes] {
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.type-tag[b-7pmfu7odes] {
    color: #f5f5f7;
    display: block;
    margin-bottom: .4em;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .05em;
    line-height: 1.3333733333;
    padding-bottom: 8px;
    font-family: "Bebas Neue", sans-serif;
}

#audit-card[b-7pmfu7odes] {
    margin-left: 250px;
}
#audit-card img[b-7pmfu7odes] {
    height: 400px;
    width: 400px;
    position: absolute;
    right: -125px;
    bottom: -127px;
    transform: rotate(45deg);
    transition: height 1s ease-in-out, width 1s ease-in-out, transform 1s ease-in-out;
}

#document-card img[b-7pmfu7odes] {
    height: 300px;
    width: 300px;
    position: absolute;
    left: 25px;
    bottom: -85px;
    transition: height .8s ease-in-out, width .8s ease-in-out, bottom .8s ease-in-out;
}

#reporting-card img[b-7pmfu7odes] {
    height: 300px;
    width: 300px;
    position: absolute;
    left: 45px;
    bottom: -95px;
    transition: height .8s ease-in-out, width .8s ease-in-out, bottom .8s ease-in-out;
}

.carousel-wrapper.slide-in-blurred-right[b-7pmfu7odes] {
    animation-duration: 2s;
}

#asset-card img[b-7pmfu7odes] {
    height: 300px;
    width: 350px;
    position: absolute;
    right: -100px;
    bottom: -88px;
    transform: rotate(40deg);
    transition: transform .8s ease-in-out, right .8s ease-in-out, bottom .8s ease-in-out, height .8s ease-in-out, width .8s ease-in-out;
}

#dashboard-card img[b-7pmfu7odes] {
    height: 250px;
    width: 320px;
    position: absolute;
    left: -55px;
    bottom: -60px;
    transform: scaleX(-1);
    transition: transform .8s ease-in-out, left .8s ease-in-out, bottom .8s ease-in-out, height .8s ease-in-out, width .8s ease-in-out;
}

#asset-card.feature-carousel-item:hover img[b-7pmfu7odes] {
    opacity: 0.7;
    transform: rotate(25deg) !important;
    right: 5px;
    bottom: -32px;
    height: 250px;
    width: 300px;
}

#dashboard-card.feature-carousel-item:hover img[b-7pmfu7odes] {
    opacity: 0.7;
    transform: scaleX(-1) rotate(-15deg);
    left: 15px;
    bottom: -40px;
    height: 250px;
    width: 320px;
}

#audit-card.feature-carousel-item:hover img[b-7pmfu7odes] {
    opacity: 0.7;
    height: 420px !important;
    width: 420px !important;
    transform: rotate(35deg) !important;
}

#document-card.feature-carousel-item:hover img[b-7pmfu7odes] {
    opacity: 0.7;
    height: 230px;
    width: 280px;
    bottom: -25px;
}

#reporting-card.feature-carousel-item:hover img[b-7pmfu7odes] {
    opacity: 0.7;
    height: 300px;
    width: 300px;
    bottom: -70px;
}


@media screen and (max-width: 992px) {
}

@media screen and (max-width: 768px) {


    #audit-card[b-7pmfu7odes] {
        margin-left: 60px;
    }

    .feature-carousel-item[b-7pmfu7odes] {
        min-width: 280px;
    }


        .feature-carousel-item h3[b-7pmfu7odes] {
            font-size: 1.4rem;
        }
    #document-card h3[b-7pmfu7odes] {
        font-size: 1.2rem !important;
    }
}


@media screen and (max-height: 450px) {
    .carousel-container[b-7pmfu7odes] {
        overflow:unset;
    }

    .feature-carousel-item[b-7pmfu7odes] {
        height: 90vh;
    }
}




/* /Components/Pages/Features/Components/FeatureLoop.razor.rz.scp.css */



@media screen and (max-width: 768px) {
    #documentmanagement[b-upgecxl83e] {
        font-size: 1.6rem !important;
    }
}
/* /Components/Pages/Features/DocumentPage.razor.rz.scp.css */
.documentpage[b-l6ruvk0qze] {
    position: relative;
    top: calc(100vh * -0.4);
}

[b-l6ruvk0qze].documentpage .features-container {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)) !important;
}

[b-l6ruvk0qze].documentpage .feature-item {
    width: 350px !important;
}

@media screen and (max-width: 992px) {
    [b-l6ruvk0qze].faq .section-header {
        z-index: 3;
        transform: skew(-3deg, -3deg);
        height: 500px;
        position: relative;
        top: -450px;
    }

    [b-l6ruvk0qze].faq #faq-section {
        position: absolute;
        bottom: -240px;
        padding-top: 450px;
        z-index: 2;
        width: 0;
        height: 94vh;
    }

    [b-l6ruvk0qze].faq .background {
        position: absolute;
        width: 120vw;
        height: 110vh;
        left: -40px;
        transform: skew(-3deg, -3deg);
    }


    [b-l6ruvk0qze].faq .faq-section {
        height: 45vh;
        width: 100vw;
        position: absolute;
        top: 250px;
        display: flex;
        margin: 0;
        align-items: center;
    }
}

@media screen and (max-width: 768px) {

    [b-l6ruvk0qze].page-title .subheader h2 {
        font-size: 1rem !important;
    }

    [b-l6ruvk0qze].documentpage .features-container {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    [b-l6ruvk0qze].documentpage .feature-item {
        width: 300px !important;
    }

    [b-l6ruvk0qze].documentpage .feature-card:hover .title {
        font-size: 1.1rem;
    }

    .video-wrapper video[b-l6ruvk0qze] {
        border-radius: 20px;
    }

    .video-hero-container[b-l6ruvk0qze] {
        width: 95vw;
        padding-bottom: 150px;
    }
}
/* /Components/Pages/Features/FormPage.razor.rz.scp.css */
.formpage[b-dcsd69csb5] {
    position: relative;
    top: calc(100vh * -0.45);
}

[b-dcsd69csb5].formpage .features-container {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)) !important;
}

[b-dcsd69csb5].formpage .feature-item {
    width: 350px !important;
}

@media screen and (max-width: 992px) {
    [b-dcsd69csb5].faq .section-header {
        z-index: 3;
        transform: skew(-3deg, -3deg);
        height: 500px;
        position: relative;
        top: -450px;
    }

    [b-dcsd69csb5].faq #faq-section {
        position: absolute;
        bottom: -240px;
        padding-top: 450px;
        z-index: 2;
        width: 0;
        height: 94vh;
    }

    [b-dcsd69csb5].faq .background {
        position: absolute;
        width: 120vw;
        height: 90vh;
        left: -40px;
        transform: skew(-3deg, -3deg);
    }


    [b-dcsd69csb5].faq .faq-section {
        height: 45vh;
        width: 100vw;
        position: absolute;
        top: 250px;
        display: flex;
        margin: 0;
        align-items: center;
    }
}


@media screen and (max-width: 768px) {
    .formpage[b-dcsd69csb5] {
        top: calc(100vh * -0.1);
    }

    [b-dcsd69csb5].formpage .cards-section {
        margin-top: 200px;
    }

    [b-dcsd69csb5].page-title .subheader h2 {
        font-size: 1rem !important;
    }

    [b-dcsd69csb5].formpage .features-container {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    [b-dcsd69csb5].formpage .feature-item {
        width: 300px !important;
    }

    [b-dcsd69csb5].formpage .feature-card:hover .title {
        font-size: 1.1rem;
    }
}
/* /Components/Pages/Features/_FeatureCards.razor.rz.scp.css */
.cards-section[b-b4y9gmp5ez] {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 200px;
}

.cards-container--bento[b-b4y9gmp5ez] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
    width: min(1200px, 92vw);
    margin-top: 60px;
    align-items: stretch;
}

.cards-container .feature-card[b-b4y9gmp5ez] {
    position: relative;
    border-radius: 22px;
    padding: 0;
    overflow: hidden;
    color: black;
    animation-delay: .5s;
    box-shadow:
        0 2px 1px rgba(255, 255, 255, 0.65) inset,
        0 10px 32px rgba(2, 0, 87, 0.06);
    scroll-margin-top: 120px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

/* Theme-tinted elevation (uses RGB tuples from theme.css) */
.cards-container .feature-card.primary[b-b4y9gmp5ez],
.cards-container .feature-card.primarylighter[b-b4y9gmp5ez],
.cards-container .feature-card.primarydarker[b-b4y9gmp5ez] {
    box-shadow:
        0 2px 1px rgba(255, 255, 255, 0.65) inset,
        0 6px 18px rgba(var(--primary-color-rgba), 0.2),
        0 10px 32px rgba(2, 0, 87, 0.05);
}

.cards-container .feature-card.secondary[b-b4y9gmp5ez],
.cards-container .feature-card.secondarylighter[b-b4y9gmp5ez],
.cards-container .feature-card.secondarydarker[b-b4y9gmp5ez] {
    box-shadow:
        0 2px 1px rgba(255, 255, 255, 0.65) inset,
        0 6px 18px rgba(var(--secondary-color-rgba), 0.2),
        0 10px 32px rgba(2, 0, 87, 0.05);
}

.cards-container .feature-card.tertiary[b-b4y9gmp5ez],
.cards-container .feature-card.tertiarylighter[b-b4y9gmp5ez],
.cards-container .feature-card.tertiarydarker[b-b4y9gmp5ez] {
    box-shadow:
        0 2px 1px rgba(255, 255, 255, 0.65) inset,
        0 6px 18px rgba(var(--tertiary-color-rgba), 0.2),
        0 10px 32px rgba(2, 0, 87, 0.05);
}

.feature-card--wide[b-b4y9gmp5ez] {
    grid-column: 1 / -1;
}

/* No-image variant: keep card visually balanced with stronger content rhythm. */
.feature-card--no-image[b-b4y9gmp5ez] {
    min-height: 260px;
}

.feature-card--no-image .feature-card__body[b-b4y9gmp5ez] {
    padding: 1.4rem 1.35rem 1.45rem;
}

.feature-card--no-image .feature-card__eyebrow[b-b4y9gmp5ez] {
    color: color-mix(in srgb, var(--main-content-color-dark) 50%, transparent);
}

.feature-card--no-image .feature-card__split--wide[b-b4y9gmp5ez] {
    grid-template-columns: 1fr;
    min-height: 0;
}

.feature-card--no-image .feature-card__split--wide-reverse[b-b4y9gmp5ez] {
    direction: ltr;
}

.feature-card--no-image.feature-card--layout-1[b-b4y9gmp5ez] {
    grid-template-rows: 1fr;
}

.feature-card--no-image .title[b-b4y9gmp5ez] {
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
}

.feature-card--no-image .description[b-b4y9gmp5ez] {
    font-size: 0.94rem;
    line-height: 1.7;
}

/* ── Shared media + image treatment (bright, vivid — no dark scrim) ── */
.feature-card__media[b-b4y9gmp5ez] {
    position: relative;
    overflow: hidden;
    /* Flat white so light UI imagery blends into card gradients */
    background: #ffffff;
}

.feature-card__img[b-b4y9gmp5ez] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.14) rotate(-0.8deg);
    transform-origin: center center;
    transition: transform 0.75s ease, filter 0.5s ease, opacity 0.4s ease;
    opacity: 1;
    filter: saturate(128%) brightness(1.06) contrast(1.04);
}

.feature-card--layout-0 .feature-card__media--tall[b-b4y9gmp5ez] {
    min-height: 200px;
    flex: 0 0 auto;
}

/* Statement + bar image (single column height stack) */
.feature-card--layout-1[b-b4y9gmp5ez] {
    display: grid;
    grid-template-rows: auto minmax(140px, 1fr);
}

.feature-card--layout-1 .feature-card__media--bar[b-b4y9gmp5ez] {
    min-height: 160px;
    max-height: 220px;
}

    .feature-card--layout-1 .feature-card__media--tall[b-b4y9gmp5ez] {
        min-height: 200px;
        flex: 0 0 auto;
    }

.feature-card--layout-1 .feature-card__img[b-b4y9gmp5ez] {
    transform: scale(1.16) rotate(-1.5deg);
    object-position: center 20%;
}

/* Wide row: text + image side by side (layout 2 = image left, layout 3 = image right) */
.feature-card--layout-2[b-b4y9gmp5ez],
.feature-card--layout-3[b-b4y9gmp5ez] {
    min-height: 280px;
}

.feature-card__split--wide[b-b4y9gmp5ez] {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: stretch;
    min-height: 280px;
    flex: 1 1 auto;
    width: 100%;
}

.feature-card__split--wide-reverse[b-b4y9gmp5ez] {
    /* RTL maps DOM order (media, body) to visual body | media; first column is on the physical right */
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    direction: rtl;
}

.feature-card__split--wide-reverse > *[b-b4y9gmp5ez] {
    direction: ltr;
}

.feature-card--layout-2 .feature-card__media--wide[b-b4y9gmp5ez],
.feature-card--layout-3 .feature-card__media--wide[b-b4y9gmp5ez] {
    min-height: 220px;
}

.feature-card--layout-2 .feature-card__img[b-b4y9gmp5ez],
.feature-card--layout-3 .feature-card__img[b-b4y9gmp5ez] {
    transform: scale(1.16) rotate(0.6deg);
}

/* ── Body + type scales per template ── */
.feature-card__body[b-b4y9gmp5ez] {
    padding: 1.15rem 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1 1 auto;
}

.feature-card__body--stack[b-b4y9gmp5ez] {
    padding-top: 1.1rem;
}

.feature-card__eyebrow[b-b4y9gmp5ez] {
    margin: 0;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(51, 51, 51, 0.55);
}

.feature-card__body--split[b-b4y9gmp5ez] {
    justify-content: center;
    gap: 0.6rem;
}

.feature-card__body--wide[b-b4y9gmp5ez] {
    padding: 1.35rem 1.5rem 1.45rem;
    justify-content: center;
}

.feature-card__body--statement[b-b4y9gmp5ez] {
    padding: 1.6rem 1.5rem 1.1rem;
    display: grid;
    gap: 0.85rem;
}

.feature-card .title[b-b4y9gmp5ez] {
    font-family: "Patua One", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.18;
    color: var(--bs-body-color);
}

.feature-card--layout-0 .title[b-b4y9gmp5ez] {
    font-size: clamp(1.15rem, 1.6vw, 1.45rem);
}

.feature-card--layout-1 .title[b-b4y9gmp5ez] {
    font-size: clamp(1.1rem, 1.45vw, 1.35rem);
}

.feature-card--layout-2 .title[b-b4y9gmp5ez],
.feature-card--layout-3 .title[b-b4y9gmp5ez] {
    font-size: clamp(1.1rem, 1.5vw, 1.38rem);
}

.title--large[b-b4y9gmp5ez] {
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    letter-spacing: -0.02em;
}

.feature-card .description[b-b4y9gmp5ez] {
    margin: 0;
    line-height: 1.65;
    font-size: 0.92rem;
}

.description--compact[b-b4y9gmp5ez] {
    font-size: 0.86rem;
    line-height: 1.55;
}

.description--lead[b-b4y9gmp5ez] {
    font-size: 0.98rem;
    line-height: 1.75;
    max-width: 75ch;
}

.feature-card .icon[b-b4y9gmp5ez] {
    position: relative;
    align-self: flex-start;
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 14px rgba(2, 0, 87, 0.07);
}

.feature-card .icon.icon--sm[b-b4y9gmp5ez] {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
}

[b-b4y9gmp5ez].feature-card .icon svg {
    width: 26px;
    height: 26px;
    opacity: 1;
    fill: currentColor;
}

/*
 * Theme fills: strongest tint sits on the text side (layout 0 = text bottom, 1 = text top,
 * 2 = text right, 3 = text left). White/light lives on the image side.
 */
.feature-card.primary .title[b-b4y9gmp5ez],
.feature-card.primarylighter .title[b-b4y9gmp5ez],
.feature-card.primarydarker .title[b-b4y9gmp5ez] {
    color: var(--primary-color-darkest);
}

.feature-card.primary .description[b-b4y9gmp5ez],
.feature-card.primarylighter .description[b-b4y9gmp5ez],
.feature-card.primarydarker .description[b-b4y9gmp5ez] {
    color: rgba(2, 0, 87, 0.88);
}

.feature-card.secondary .title[b-b4y9gmp5ez],
.feature-card.secondarylighter .title[b-b4y9gmp5ez],
.feature-card.secondarydarker .title[b-b4y9gmp5ez] {
    color: var(--secondary-color-darkest);
}

.feature-card.secondary .description[b-b4y9gmp5ez],
.feature-card.secondarylighter .description[b-b4y9gmp5ez],
.feature-card.secondarydarker .description[b-b4y9gmp5ez] {
    color: rgba(0, 40, 87, 0.9);
}

.feature-card.tertiary .title[b-b4y9gmp5ez],
.feature-card.tertiarylighter .title[b-b4y9gmp5ez],
.feature-card.tertiarydarker .title[b-b4y9gmp5ez] {
    color: var(--tertiary-color-darkest);
}

.feature-card.tertiary .description[b-b4y9gmp5ez],
.feature-card.tertiarylighter .description[b-b4y9gmp5ez],
.feature-card.tertiarydarker .description[b-b4y9gmp5ez] {
    color: rgba(52, 6, 98, 0.9);
}

/*
 * Soft fills: mostly white near imagery, theme tint only in the text band.
 * color-mix keeps stops light; mid-stops shift to white earlier for a smoother hand-off from screenshots.
 */
.feature-card--layout-0.primary[b-b4y9gmp5ez],
.feature-card--layout-0.primarylighter[b-b4y9gmp5ez],
.feature-card--layout-0.primarydarker[b-b4y9gmp5ez] {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #fefeff 46%,
        color-mix(in srgb, var(--primary-color-lighter) 11%, white) 78%,
        color-mix(in srgb, var(--primary-color-lighter) 60%, white) 100%
    );
}

.feature-card--layout-1.primary[b-b4y9gmp5ez],
.feature-card--layout-1.primarylighter[b-b4y9gmp5ez],
.feature-card--layout-1.primarydarker[b-b4y9gmp5ez] {
    background: linear-gradient(
        180deg,
        color-mix(in srgb, var(--primary-color-lighter) 60%, white) 0%,
        color-mix(in srgb, var(--primary-color-lighter) 11%, white) 22%,
        #fefeff 54%,
        #ffffff 100%
    );
}

.feature-card--layout-2.primary[b-b4y9gmp5ez],
.feature-card--layout-2.primarylighter[b-b4y9gmp5ez],
.feature-card--layout-2.primarydarker[b-b4y9gmp5ez] {
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #fefeff 38%,
        color-mix(in srgb, var(--primary-color-lighter) 11%, white) 74%,
        color-mix(in srgb, var(--primary-color-lighter) 60%, white) 100%
    );
}

.feature-card--layout-3.primary[b-b4y9gmp5ez],
.feature-card--layout-3.primarylighter[b-b4y9gmp5ez],
.feature-card--layout-3.primarydarker[b-b4y9gmp5ez] {
    background: linear-gradient(
        90deg,
        color-mix(in srgb, var(--primary-color-lighter) 60%, white) 0%,
        color-mix(in srgb, var(--primary-color-lighter) 11%, white) 26%,
        #fefeff 58%,
        #ffffff 100%
    );
}

.feature-card--layout-0.secondary[b-b4y9gmp5ez],
.feature-card--layout-0.secondarylighter[b-b4y9gmp5ez],
.feature-card--layout-0.secondarydarker[b-b4y9gmp5ez] {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #fefeff 46%,
        color-mix(in srgb, var(--secondary-color-lighter) 11%, white) 78%,
        color-mix(in srgb, var(--secondary-color-lighter) 60%, white) 100%
    );
}

.feature-card--layout-1.secondary[b-b4y9gmp5ez],
.feature-card--layout-1.secondarylighter[b-b4y9gmp5ez],
.feature-card--layout-1.secondarydarker[b-b4y9gmp5ez] {
    background: linear-gradient(
        180deg,
        color-mix(in srgb, var(--secondary-color-lighter) 60%, white) 0%,
        color-mix(in srgb, var(--secondary-color-lighter) 11%, white) 22%,
        #fefeff 54%,
        #ffffff 100%
    );
}

.feature-card--layout-2.secondary[b-b4y9gmp5ez],
.feature-card--layout-2.secondarylighter[b-b4y9gmp5ez],
.feature-card--layout-2.secondarydarker[b-b4y9gmp5ez] {
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #fefeff 38%,
        color-mix(in srgb, var(--secondary-color-lighter) 11%, white) 74%,
        color-mix(in srgb, var(--secondary-color-lighter) 60%, white) 100%
    );
}

.feature-card--layout-3.secondary[b-b4y9gmp5ez],
.feature-card--layout-3.secondarylighter[b-b4y9gmp5ez],
.feature-card--layout-3.secondarydarker[b-b4y9gmp5ez] {
    background: linear-gradient(
        90deg,
        color-mix(in srgb, var(--secondary-color-lighter) 60%, white) 0%,
        color-mix(in srgb, var(--secondary-color-lighter) 11%, white) 26%,
        #fefeff 58%,
        #ffffff 100%
    );
}

.feature-card--layout-0.tertiary[b-b4y9gmp5ez],
.feature-card--layout-0.tertiarylighter[b-b4y9gmp5ez],
.feature-card--layout-0.tertiarydarker[b-b4y9gmp5ez] {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #fefeff 46%,
        color-mix(in srgb, var(--tertiary-color-lighter) 11%, white) 78%,
        color-mix(in srgb, var(--tertiary-color-lighter) 60%, white) 100%
    );
}

.feature-card--layout-1.tertiary[b-b4y9gmp5ez],
.feature-card--layout-1.tertiarylighter[b-b4y9gmp5ez],
.feature-card--layout-1.tertiarydarker[b-b4y9gmp5ez] {
    background: linear-gradient(
        180deg,
        color-mix(in srgb, var(--tertiary-color-lighter) 60%, white) 0%,
        color-mix(in srgb, var(--tertiary-color-lighter) 11%, white) 22%,
        #fefeff 54%,
        #ffffff 100%
    );
}

.feature-card--layout-2.tertiary[b-b4y9gmp5ez],
.feature-card--layout-2.tertiarylighter[b-b4y9gmp5ez],
.feature-card--layout-2.tertiarydarker[b-b4y9gmp5ez] {
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #fefeff 38%,
        color-mix(in srgb, var(--tertiary-color-lighter) 11%, white) 74%,
        color-mix(in srgb, var(--tertiary-color-lighter) 60%, white) 100%
    );
}

.feature-card--layout-3.tertiary[b-b4y9gmp5ez],
.feature-card--layout-3.tertiarylighter[b-b4y9gmp5ez],
.feature-card--layout-3.tertiarydarker[b-b4y9gmp5ez] {
    background: linear-gradient(
        90deg,
        color-mix(in srgb, var(--tertiary-color-lighter) 60%, white) 0%,
        color-mix(in srgb, var(--tertiary-color-lighter) 11%, white) 26%,
        #fefeff 58%,
        #ffffff 100%
    );
}

/* Icon color follows theme (readable on white chip) */
[b-b4y9gmp5ez] .feature-card.primary .icon { color: var(--primary-color-darker); }
[b-b4y9gmp5ez] .feature-card.primarylighter .icon { color: var(--primary-color-darkest); }
[b-b4y9gmp5ez] .feature-card.primarydarker .icon { color: var(--primary-color); }

[b-b4y9gmp5ez] .feature-card.secondary .icon { color: var(--secondary-color-darker); }
[b-b4y9gmp5ez] .feature-card.secondarylighter .icon { color: var(--secondary-color-darkest); }
[b-b4y9gmp5ez] .feature-card.secondarydarker .icon { color: var(--secondary-color); }

[b-b4y9gmp5ez] .feature-card.tertiary .icon { color: var(--tertiary-color-darker); }
[b-b4y9gmp5ez] .feature-card.tertiarylighter .icon { color: var(--tertiary-color-darkest); }
[b-b4y9gmp5ez] .feature-card.tertiarydarker .icon { color: var(--tertiary-color); }

.feature-card:hover[b-b4y9gmp5ez] {
    cursor: default;
    transform: translateY(-4px);
}

.feature-card.primary:hover[b-b4y9gmp5ez],
.feature-card.primarylighter:hover[b-b4y9gmp5ez],
.feature-card.primarydarker:hover[b-b4y9gmp5ez] {
    box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.5) inset,
        0 8px 24px rgba(var(--primary-color-rgba), 0.28),
        0 18px 46px rgba(2, 0, 87, 0.08);
}

.feature-card.secondary:hover[b-b4y9gmp5ez],
.feature-card.secondarylighter:hover[b-b4y9gmp5ez],
.feature-card.secondarydarker:hover[b-b4y9gmp5ez] {
    box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.5) inset,
        0 8px 24px rgba(var(--secondary-color-rgba), 0.28),
        0 18px 46px rgba(2, 0, 87, 0.08);
}

.feature-card.tertiary:hover[b-b4y9gmp5ez],
.feature-card.tertiarylighter:hover[b-b4y9gmp5ez],
.feature-card.tertiarydarker:hover[b-b4y9gmp5ez] {
    box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.5) inset,
        0 8px 24px rgba(var(--tertiary-color-rgba), 0.28),
        0 18px 46px rgba(2, 0, 87, 0.08);
}

.feature-card:hover .feature-card__img[b-b4y9gmp5ez] {
    opacity: 1;
    filter: saturate(145%) brightness(1.08) contrast(1.05);
}

/* Configurable image hover motions */
/* Stronger zoom on hover so pan/scan never reveals the media backdrop */
.feature-card.hover-zoom:hover .feature-card__img[b-b4y9gmp5ez] {
    transform: scale(1.22) rotate(0deg);
}

.feature-card.hover-scan-up:hover .feature-card__img[b-b4y9gmp5ez] {
    transform: translateY(-6%) scale(1.26) rotate(0deg);
}

.feature-card.hover-scan-down:hover .feature-card__img[b-b4y9gmp5ez] {
    transform: translateY(6%) scale(1.26) rotate(0deg);
}

.feature-card.hover-scan-left:hover .feature-card__img[b-b4y9gmp5ez] {
    transform: translateX(-5%) scale(1.24) rotate(0deg);
}

.feature-card.hover-scan-right:hover .feature-card__img[b-b4y9gmp5ez] {
    transform: translateX(5%) scale(1.24) rotate(0deg);
}

.feature-card.hover-scan-diag-up-right:hover .feature-card__img[b-b4y9gmp5ez] {
    transform: translate(4%, -5%) scale(1.26) rotate(0deg);
}

.feature-card.hover-scan-diag-down-right:hover .feature-card__img[b-b4y9gmp5ez] {
    transform: translate(4%, 5%) scale(1.26) rotate(0deg);
}

.feature-card[class*="hover-scan"] .feature-card__img[b-b4y9gmp5ez] {
    transition-duration: 1.2s;
}

@media (max-width: 900px) {
    .feature-card__split--wide[b-b4y9gmp5ez] {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    /* Image-left wide: image above copy */
    .feature-card__split--wide:not(.feature-card__split--wide-reverse)[b-b4y9gmp5ez] {
        direction: ltr;
    }

    /* Image-right wide on small screens: copy first, image beneath */
    .feature-card__split--wide-reverse[b-b4y9gmp5ez] {
        flex-direction: column-reverse;
        direction: ltr;
    }

    .feature-card--layout-2 .feature-card__media--wide[b-b4y9gmp5ez],
    .feature-card--layout-3 .feature-card__media--wide[b-b4y9gmp5ez] {
        min-height: 200px;
    }

    /* Stacked wide cards: same soft vertical blends as layout 0 / 1 */
    .feature-card--layout-2.primary[b-b4y9gmp5ez],
    .feature-card--layout-2.primarylighter[b-b4y9gmp5ez],
    .feature-card--layout-2.primarydarker[b-b4y9gmp5ez] {
        background: linear-gradient(
            180deg,
            #ffffff 0%,
            #fefeff 46%,
            color-mix(in srgb, var(--primary-color-lighter) 11%, white) 78%,
            color-mix(in srgb, var(--primary-color-lighter) 18%, white) 100%
        );
    }

    .feature-card--layout-3.primary[b-b4y9gmp5ez],
    .feature-card--layout-3.primarylighter[b-b4y9gmp5ez],
    .feature-card--layout-3.primarydarker[b-b4y9gmp5ez] {
        background: linear-gradient(
            180deg,
            color-mix(in srgb, var(--primary-color-lighter) 18%, white) 0%,
            color-mix(in srgb, var(--primary-color-lighter) 11%, white) 22%,
            #fefeff 54%,
            #ffffff 100%
        );
    }

    .feature-card--layout-2.secondary[b-b4y9gmp5ez],
    .feature-card--layout-2.secondarylighter[b-b4y9gmp5ez],
    .feature-card--layout-2.secondarydarker[b-b4y9gmp5ez] {
        background: linear-gradient(
            180deg,
            #ffffff 0%,
            #fefeff 46%,
            color-mix(in srgb, var(--secondary-color-lighter) 11%, white) 78%,
            color-mix(in srgb, var(--secondary-color-lighter) 18%, white) 100%
        );
    }

    .feature-card--layout-3.secondary[b-b4y9gmp5ez],
    .feature-card--layout-3.secondarylighter[b-b4y9gmp5ez],
    .feature-card--layout-3.secondarydarker[b-b4y9gmp5ez] {
        background: linear-gradient(
            180deg,
            color-mix(in srgb, var(--secondary-color-lighter) 18%, white) 0%,
            color-mix(in srgb, var(--secondary-color-lighter) 11%, white) 22%,
            #fefeff 54%,
            #ffffff 100%
        );
    }

    .feature-card--layout-2.tertiary[b-b4y9gmp5ez],
    .feature-card--layout-2.tertiarylighter[b-b4y9gmp5ez],
    .feature-card--layout-2.tertiarydarker[b-b4y9gmp5ez] {
        background: linear-gradient(
            180deg,
            #ffffff 0%,
            #fefeff 46%,
            color-mix(in srgb, var(--tertiary-color-lighter) 11%, white) 78%,
            color-mix(in srgb, var(--tertiary-color-lighter) 18%, white) 100%
        );
    }

    .feature-card--layout-3.tertiary[b-b4y9gmp5ez],
    .feature-card--layout-3.tertiarylighter[b-b4y9gmp5ez],
    .feature-card--layout-3.tertiarydarker[b-b4y9gmp5ez] {
        background: linear-gradient(
            180deg,
            color-mix(in srgb, var(--tertiary-color-lighter) 18%, white) 0%,
            color-mix(in srgb, var(--tertiary-color-lighter) 11%, white) 22%,
            #fefeff 54%,
            #ffffff 100%
        );
    }
}

@media screen and (max-width: 768px) {
    .cards-container--bento[b-b4y9gmp5ez] {
        grid-template-columns: 1fr;
    }

    .feature-card--wide[b-b4y9gmp5ez] {
        grid-column: 1;
    }
}

@media screen and (max-height: 450px) {
    .cards-container--bento[b-b4y9gmp5ez] {
        margin-top: 80px;
    }
}
/* /Components/Pages/Features/_KeyFeatures.razor.rz.scp.css */
.features[b-5yp14kpvnn] {
    align-items: flex-start;
}

.content-container[b-5yp14kpvnn] {
    display: flex;
    flex-direction: column;
    width:100%;
}

.content-container.center[b-5yp14kpvnn] {
    align-items: center;
    justify-content: center;
}

.content-container h2[b-5yp14kpvnn] {
    color: var(--tertiary-color-darker);
}

.content-container.center h4[b-5yp14kpvnn] {
    color: var(--bs-body-color);
    font-size: 1.2rem;
    text-align: center;
    width: 60vw;

}

.icon[b-5yp14kpvnn] {
    display: flex;
    min-height: 50px;
    min-width: 50px;
    max-height: 50px;
    max-width: 50px;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 10px rgba(2, 0, 87, 0.06);
    justify-content: center;
    align-items: center;
    color: var(--main-body-color-dark);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

[b-5yp14kpvnn].icon svg {
    height: 35px;
    width: 35px;
    fill: currentColor;
    opacity: 1;
}

.features-container[b-5yp14kpvnn] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    row-gap: 60px;
    width: 85vw;
    flex-direction: column;
    margin-top: 60px;
    align-items: center;
    justify-items: center;
}

.feature-item[b-5yp14kpvnn] {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 300px;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.feature-link[b-5yp14kpvnn] {
    text-decoration: none;
}

    .feature-item .title[b-5yp14kpvnn] {
        color: var(--bs-body-color);
        font-family: "Patua One", serif;
        font-weight: 400;
        font-style: normal;
    }

    .feature-item .description[b-5yp14kpvnn] {
        color: var(--bs-gray-600);
        font-size: .8rem;
    }

    .feature-item:hover[b-5yp14kpvnn] {
        transition: transform 0.5s ease-in-out;
        cursor: pointer;
        transform: scale(1.1);
    }

.features-container:has(.feature-item:hover) .feature-item:not(:hover)[b-5yp14kpvnn] {
    color: slategray;
    opacity: .5;
}

/* Icon colour is readable on a white tile; hover follows theme. */
[b-5yp14kpvnn] .feature-item.primary .icon { color: var(--primary-color-darkest); }
[b-5yp14kpvnn] .feature-item.primarylighter .icon { color: var(--primary-color-darkest); }
[b-5yp14kpvnn] .feature-item.primarydarker .icon { color: var(--primary-color-darkest); }

[b-5yp14kpvnn] .feature-item.secondary .icon { color: var(--secondary-color-darkest); }
[b-5yp14kpvnn] .feature-item.secondarylighter .icon { color: var(--secondary-color-darkest); }
[b-5yp14kpvnn] .feature-item.secondarydarker .icon { color: var(--secondary-color-darkest); }

[b-5yp14kpvnn] .feature-item.tertiary .icon { color: var(--tertiary-color-darkest); }
[b-5yp14kpvnn] .feature-item.tertiarylighter .icon { color: var(--tertiary-color-darkest); }
[b-5yp14kpvnn] .feature-item.tertiarydarker .icon { color: var(--tertiary-color-darkest); }

.feature-item.primary:hover .icon[b-5yp14kpvnn] {
    background: rgba(255, 255, 255, 0.98);
    color: var(--primary-color);
    box-shadow: 0 6px 18px rgba(96, 93, 255, 0.25);
}

.feature-item.secondary:hover .icon[b-5yp14kpvnn] {
    background: rgba(255, 255, 255, 0.98);
    color: var(--secondary-color);
    box-shadow: 0 6px 18px rgba(90, 168, 255, 0.28);
}

.feature-item.tertiary:hover .icon[b-5yp14kpvnn] {
    background: rgba(255, 255, 255, 0.98);
    color: var(--tertiary-color);
    box-shadow: 0 6px 18px rgba(173, 99, 246, 0.25);
}

.feature-item.primarylighter:hover .icon[b-5yp14kpvnn] {
    background: rgba(255, 255, 255, 0.98);
    color: var(--primary-color);
    box-shadow: 0 6px 18px rgba(191, 190, 255, 0.5);
}

.feature-item.secondarylighter:hover .icon[b-5yp14kpvnn] {
    background: rgba(255, 255, 255, 0.98);
    color: var(--secondary-color);
    box-shadow: 0 6px 18px rgba(190, 220, 255, 0.6);
}

.feature-item.tertiarylighter:hover .icon[b-5yp14kpvnn] {
    background: rgba(255, 255, 255, 0.98);
    color: var(--tertiary-color);
    box-shadow: 0 6px 18px rgba(222, 193, 251, 0.55);
}

.feature-item.primarydarker:hover .icon[b-5yp14kpvnn] {
    background: rgba(255, 255, 255, 0.98);
    color: var(--primary-color);
    box-shadow: 0 6px 18px rgba(3, 0, 174, 0.2);
}

.feature-item.secondarydarker:hover .icon[b-5yp14kpvnn] {
    background: rgba(255, 255, 255, 0.98);
    color: var(--secondary-color);
    box-shadow: 0 6px 18px rgba(0, 81, 174, 0.2);
}

.feature-item.tertiarydarker:hover .icon[b-5yp14kpvnn] {
    background: rgba(255, 255, 255, 0.98);
    color: var(--tertiary-color);
    box-shadow: 0 6px 18px rgba(121, 13, 228, 0.18);
}


.feature-item.primary:hover .title[b-5yp14kpvnn] {
    color: var(--primary-color);
}

.feature-item.secondary:hover .title[b-5yp14kpvnn] {
    color: var(--secondary-color);
}

.feature-item.tertiary:hover .title[b-5yp14kpvnn] {
    color: var(--tertiary-color);
}

.feature-item.primarylighter:hover .title[b-5yp14kpvnn] {
    color: var(--primary-color-lighter);
}

.feature-item.secondarylighter:hover .title[b-5yp14kpvnn] {
    color: var(--secondary-color-lighter);
}

.feature-item.tertiarylighter:hover .title[b-5yp14kpvnn] {
    color: var(--tertiary-color-lighter);
}

.feature-item.primarydarker:hover .title[b-5yp14kpvnn] {
    color: var(--primary-color-darker);
}

.feature-item.secondarydarker:hover .title[b-5yp14kpvnn] {
    color: var(--secondary-color-darker);
}

.feature-item.tertiarydarker:hover .title[b-5yp14kpvnn] {
    color: var(--tertiary-color-darker);
}

@media screen and (max-width: 992px) {
    .features-container[b-5yp14kpvnn] {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
        width: 70vw;
    }
}

@media screen and (max-width: 768px) {

    .features[b-5yp14kpvnn] {
        margin-top: 2rem;
    }

    .content-container.center h4[b-5yp14kpvnn][b-5yp14kpvnn] {
        font-size: .9rem;
        width: 90vw;
    }

    .features-container[b-5yp14kpvnn] {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 30px;
        width: 70vw;
    }
}


@media screen and (max-height: 450px) {

}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Pull video higher into the header area */
.homepage[b-m2wpcb3ekf] {
    margin-bottom: clamp(2rem, 8vh, 5rem);
    padding-bottom: 0;
    z-index: 2;
    margin-top: calc(75vh * -0.58);
}

.homepage[b-m2wpcb3ekf]  .home-hero__video-stage {
    position: relative;
    overflow: visible;
}

.homepage[b-m2wpcb3ekf]  .home-hero__video-stage.reveal {
    transition-duration: 520ms;
    transition-delay: 180ms;
}

/* Avoid app.css floatUp here — Blazor re-renders reset that animation and leave opacity at 0 */
.homepage[b-m2wpcb3ekf]  .home-hero__video-wrapper {
    transform: none;
    opacity: 1;
    animation: homeHeroVideoIn-b-m2wpcb3ekf 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.homepage[b-m2wpcb3ekf]  .home-hero__video-wrapper video {
    object-position: center 42%;
    min-height: min(52vh, 560px);
    aspect-ratio: 16 / 9;
}

.home-hero-video:hover[b-m2wpcb3ekf] {
   cursor: pointer;
}

@keyframes homeHeroVideoIn-b-m2wpcb3ekf {
    from {
        opacity: 0.6;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .homepage[b-m2wpcb3ekf]  .home-hero__video-wrapper {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

.content[b-m2wpcb3ekf] {
    display: flex;
    flex-direction: row;
}


.column[b-m2wpcb3ekf] {
    flex: 1;
    padding: 0 20px;
}

[b-m2wpcb3ekf].button-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

    [b-m2wpcb3ekf].button-container .action-button {
        position: relative;
        top: 75px;
        font-size: 20px;
        background-color: #1C1C1B;
        width: fit-content;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        color: #fff;
        padding: 0 25px;
    }

        [b-m2wpcb3ekf].button-container .action-button:hover {
            filter: brightness(110%);
            transform: scale(0.9);
        }

        [b-m2wpcb3ekf].button-container .action-button:after {
            font-size: 14px;
            background: var(--primary-color-lighter);
        }

        [b-m2wpcb3ekf].button-container .action-button .icon {
            display: inline-block;
            width: 1.6rem;
            fill: #fff;
            stroke: var(--tertiary-color-darker)
        }

.full-screen-section h4[b-m2wpcb3ekf] {
    color: var(--tertiary-color-darker);
}

.section-header[b-m2wpcb3ekf] {
    position: relative;
    width: 100%;
}

.modules[b-m2wpcb3ekf] {
    margin-top: 100px;
    margin-bottom:unset;
}

.modules .section-header[b-m2wpcb3ekf] {
    padding-left: 200px;
}

.content-container[b-m2wpcb3ekf] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#whatwedo[b-m2wpcb3ekf] {
    position: relative;
    top: calc(100vh - 115vh);
    transition: top 1.5s ease-in-out;
}


    #whatwedo.align-right[b-m2wpcb3ekf] {
        position: relative;
        top: unset;
    }

.what-we-do .content-container[b-m2wpcb3ekf] {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: align-items 2s ease-in-out;
}

.mockup-container[b-m2wpcb3ekf] {
    position: relative;
    padding-right: 0px;
    transition: width 1.5s ease-in-out, padding-right 1.5s ease-in-out, transform 1.5s ease-in-out;
}

.laptop-mockup[b-m2wpcb3ekf] {
    background-image: url(/images/laptop-mockup.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 0;
    padding-bottom: 64.25%;
}

.mobile-mockup[b-m2wpcb3ekf] {
    background-image: url(/images/mockup-mobile.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 24%;
    height: 0;
    padding-bottom: 70%;
    position: absolute;
    right: 0;
    display: none;
}

.tablet-mockup[b-m2wpcb3ekf] {
    background-image: url(/images/mockup-tablet.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 460px;
    height: 460px;
    position: absolute;
    right: 0;
    margin-top: 270px;
    display: none;
}

.mockup-background[b-m2wpcb3ekf] {
    border-radius: 50%;
    opacity: 0.7;
    width: 650px;
    height: 650px;
    position: absolute;
    z-index: -1;
    background: var(--tertiary-color-lighter);
}

.what-we-do .mockup-background[b-m2wpcb3ekf] {
    right: -260px;
    margin-bottom: 130px;
    display: none;
}

.modules .mockup-background[b-m2wpcb3ekf] {
    top: -50px;
    left: -230px;
    width: 450px;
    height: 80vh;
    min-height:650px;
}

.mockup-background.primary[b-m2wpcb3ekf] {
    background: var(--primary-color-lighter);
}

.mockup-container.slide-in-bottom[b-m2wpcb3ekf] {
    animation-duration: 2s;
}

.mobile-mockup.slide-in-right[b-m2wpcb3ekf] {
    animation-duration: 2s;
}

.tablet-mockup.slide-in-br[b-m2wpcb3ekf] {
    animation-duration: 2s;
}

.mockup-background.scale-in-right[b-m2wpcb3ekf] {
    animation-duration: 1s;
}

.mockup-background.scale-in-left[b-m2wpcb3ekf] {
    animation-duration: 1s;
}

.what-we-do .content-container.align-right[b-m2wpcb3ekf] {
    align-items: end;
}

    .what-we-do .content-container.align-right .mockup-container[b-m2wpcb3ekf] {
        width: 42%;
        padding-right: 150px;
        margin-right: 120px;
        transform: skew(20deg, -20deg);
        top: -300px;
    }

    .what-we-do .content-container.align-right .mobile-mockup[b-m2wpcb3ekf],
    .what-we-do .content-container.align-right .tablet-mockup[b-m2wpcb3ekf],
    .what-we-do .content-container.align-right .mockup-background[b-m2wpcb3ekf] {
        display: block;
    }

.content-container .content-description[b-m2wpcb3ekf] {
    display: none;
    width: 40%;
    margin-right: 53%;
}

.content-container.align-right .content-description[b-m2wpcb3ekf] {
    display: unset;
}

[b-m2wpcb3ekf].home-faq #faq-section {
    position: relative;
    bottom: -5px;
}

[b-m2wpcb3ekf].home-faq .section-header {
    bottom: -20px;
    top: unset;
}

[b-m2wpcb3ekf].home-faq .logo-darkicon {
    bottom: unset;
    top: 100px;
}

[b-m2wpcb3ekf].home-faq #faq-section {
    padding-top: unset;
    height: 450px;
}

.home-faq[b-m2wpcb3ekf] {
    height: 685px;
}

[b-m2wpcb3ekf] .section--brand,
[b-m2wpcb3ekf] .section--light {
    margin: 0 auto;
    width: 100%;
}

@media screen and (max-height: 900px) {
    .homepage[b-m2wpcb3ekf] {
        margin-top: calc(68vh * -0.44);
    }

    .homepage[b-m2wpcb3ekf]  .home-hero__video-wrapper video {
        min-height: min(44vh, 480px);
    }
}

@media screen and (max-height: 780px) {
    .homepage[b-m2wpcb3ekf] {
        margin-top: calc(62vh * -0.38);
    }

    .homepage[b-m2wpcb3ekf]  .home-hero__video-wrapper video {
        min-height: min(40vh, 420px);
    }
}

@media screen and (max-width: 768px) {

    .homepage[b-m2wpcb3ekf] {
        margin: 10px;
        margin-top: -250px;
    }

    .homepage .video-hero-container[b-m2wpcb3ekf] {
        width: 100%;
        max-width: none;
        padding: 0 0 clamp(2.5rem, 8vh, 4rem);
        margin: 0;
    }

    .homepage[b-m2wpcb3ekf]  .home-hero__video-wrapper {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        height: auto;
        overflow: hidden;
        border-radius: clamp(1.25rem, 6.5vw, 75px);
    }

    .homepage[b-m2wpcb3ekf]  .home-hero__video-wrapper video {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        min-height: 0;
        aspect-ratio: unset;
        object-fit: cover;
        object-position: center 42%;
        border-radius: 0;
    }

    .content[b-m2wpcb3ekf] {
        flex-direction: column;
    }

    .column[b-m2wpcb3ekf] {
        padding: 10px 0;
    }

    .page-header .page-title[b-m2wpcb3ekf] {
        font-size: 1.6rem !important;
    }

    .what-we-do .content-container .mockup-container[b-m2wpcb3ekf] {
        width: 125%;
    }

    #whatwedo[b-m2wpcb3ekf] {
        position: relative;
        top: unset;
        transition: top 1.5s ease-in-out;
    }

        #whatwedo .content-description[b-m2wpcb3ekf] {
            width: 100%;
            padding: 10%;
            margin-right: unset;
            margin-top: 150px;
        }

        #whatwedo .button-container[b-m2wpcb3ekf] {
            margin-top: 10%;
        }

            #whatwedo .button-container .action-button[b-m2wpcb3ekf] {
                top: unset;
            }

        #whatwedo h2[b-m2wpcb3ekf] {
            font-size: 2.3rem !important;
        }

        #whatwedo .mockup-background[b-m2wpcb3ekf] {
            right: -400px;
            margin-bottom: 50px;
            height: 850px !important;
            width: 850px !important;
        }

    .what-we-do .content-container.align-right .mockup-container[b-m2wpcb3ekf] {
        position: relative;
        top: -720px;
        left: -25%;
        width: 42%;
    }

        .what-we-do .content-container.align-right .mockup-container .laptop-mockup[b-m2wpcb3ekf] {
            width: 225px;
            height: 225px;
            padding-bottom: unset;
        }

    .what-we-do .content-container.align-right .tablet-mockup[b-m2wpcb3ekf] {
        display: none;
    }

    .what-we-do .content-container.align-right .mobile-mockup[b-m2wpcb3ekf] {
        width: 150px;
        padding-bottom: 255%;
    }

    .modules .section-header[b-m2wpcb3ekf] {
        padding-left: 30px;
    }
}


@media (max-width: 1030px) and (min-width: 768px) {
    #whatwedo[b-m2wpcb3ekf] {
       top: -500px;
    }

    .what-we-do .content-container.align-right .mockup-container .laptop-mockup[b-m2wpcb3ekf] {
        width: 350px;
        height: 300px;
        padding-bottom: unset;
    }

    .what-we-do .content-container.align-right .mockup-container[b-m2wpcb3ekf] {
        position: relative;
        top: -750px;
        left: -38%;
        width: 42%;
    }

    .what-we-do .content-container.align-right .mobile-mockup[b-m2wpcb3ekf] {
        width: 40%;
        padding-bottom: 125%;
    }
}

@media screen and (max-height: 450px) {
    #whatwedo[b-m2wpcb3ekf] {
        top: calc(100vh - 120vh);
    }

    .what-we-do .content-container.align-right .mockup-container[b-m2wpcb3ekf] {
        position: relative;
        top: -150%;
        left: 0%;
        width: 42%;
    }

    .what-we-do .content-container.align-right .mobile-mockup[b-m2wpcb3ekf] {
        width: 250px;
        top: -180px;
    }

    .modules .mockup-background[b-m2wpcb3ekf] {
        height: 150vh;
    }

    .what-we-do .content-container.align-right .mobile-mockup[b-m2wpcb3ekf] {
        padding-bottom: unset;
        height: 350px;
    }
}
/* /Components/Pages/HomepageSections/HomeClosingCtaSection.razor.rz.scp.css */
.home-closing-cta-section[b-5jd9iirptc] {
    padding-bottom: clamp(3rem, 6vw, 4.5rem) !important;
}

.home-closing-cta-section[b-5jd9iirptc]  .section-light__head {
    text-align: center;
    max-width: none;
}

.home-closing-cta-section[b-5jd9iirptc]  .section-light__title {
    text-align: center;
}

.home-closing-cta__lead[b-5jd9iirptc] {
    margin: 0 auto 1.5rem;
    max-width: 36rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--main-content-color-dark);
}

.home-closing-cta__actions[b-5jd9iirptc] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.5rem;
}

.home-closing-cta__btn[b-5jd9iirptc] {
    min-width: 10rem;
}

.home-closing-cta__link[b-5jd9iirptc] {
    font-weight: 600;
    font-size: 1rem;
    color: var(--tertiary-color-darker);
    text-decoration: none;
}

.home-closing-cta__link:hover[b-5jd9iirptc] {
    color: var(--primary-color-darkest);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}
/* /Components/Pages/HomepageSections/HomeIndustriesSection.razor.rz.scp.css */
.home-industries__grid[b-ydt528amiv] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
    .home-industries__grid[b-ydt528amiv] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .home-industries__grid[b-ydt528amiv] {
        grid-template-columns: 1fr;
    }
}

.home-industries__card[b-ydt528amiv] {
    background: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 18px;
    padding: 1.2rem 1.25rem;
    box-shadow: 0 4px 20px rgba(31, 38, 135, 0.06);
}

.home-industries__card h3[b-ydt528amiv] {
    font-family: "Patua One", serif;
    font-size: 1.05rem;
    margin: 0 0 0.45rem;
    color: var(--primary-color-darkest);
}

.home-industries__card p[b-ydt528amiv] {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--main-content-color-dark);
}

.home-industries__link[b-ydt528amiv] {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--tertiary-color-darker);
    text-decoration: none;
}

.home-industries__link:hover[b-ydt528amiv] {
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.home-industries__local[b-ydt528amiv] {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--main-content-color-dark);
    max-width: 40rem;
    margin: 0 auto;
}

.home-industries__local a[b-ydt528amiv] {
    color: var(--tertiary-color-darker);
    font-weight: 600;
}

.home-industries__local a:hover[b-ydt528amiv] {
    color: var(--primary-color-darkest);
}

/* Vivid brand background: frosted cards and light copy */
.home-industries--vivid .home-industries__card[b-ydt528amiv] {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow:
        0 8px 28px rgba(2, 0, 87, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.home-industries--vivid .home-industries__card:hover[b-ydt528amiv] {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.32);
}

.home-industries--vivid .home-industries__card h3[b-ydt528amiv] {
    color: #fff;
}

.home-industries--vivid .home-industries__card p[b-ydt528amiv] {
    color: rgba(255, 255, 255, 0.86);
}

.home-industries--vivid .home-industries__link[b-ydt528amiv] {
    color: var(--tertiary-color-lighter);
}

.home-industries--vivid .home-industries__link:hover[b-ydt528amiv] {
    color: #fff;
}

.home-industries--vivid .home-industries__local[b-ydt528amiv] {
    color: rgba(255, 255, 255, 0.88);
}

.home-industries--vivid .home-industries__local a[b-ydt528amiv] {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 0.15em;
    text-decoration-color: rgba(255, 255, 255, 0.45);
}

.home-industries--vivid .home-industries__local a:hover[b-ydt528amiv] {
    color: var(--tertiary-color-lighter);
    text-decoration-color: currentColor;
}
/* /Components/Pages/HomepageSections/HomeModulesSection.razor.rz.scp.css */
.home-modules__intro[b-gcr50mqsyo] {
    max-width: 52rem;
    margin: 0 0 1.75rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--main-content-color-dark);
}

.home-modules__intro a[b-gcr50mqsyo] {
    color: var(--tertiary-color-darker);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.home-modules__carousel[b-gcr50mqsyo] {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0.5rem 0 0.25rem;
}

.home-modules__carousel[b-gcr50mqsyo]  .carousel-container {
    padding: 0 0.5rem;
}

.home-modules__carousel[b-gcr50mqsyo]  .feature-carousel-item {
    box-shadow: 0 8px 28px rgba(2, 0, 87, 0.12);
}
/* /Components/Pages/HomepageSections/HomeProblemSection.razor.rz.scp.css */
.home-problem__grid[b-islvyycrsq] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

@media (max-width: 900px) {
    .home-problem__grid[b-islvyycrsq] {
        grid-template-columns: 1fr;
    }
}

.home-problem__card[b-islvyycrsq] {
    background: rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 22px;
    padding: 1.35rem 1.4rem;
    box-shadow: 0 4px 24px rgba(31, 38, 135, 0.08);
}

.home-problem__card h3[b-islvyycrsq] {
    font-family: "Patua One", serif;
    font-size: 1.15rem;
    margin: 0 0 0.5rem;
    color: var(--primary-color-darkest);
}

.home-problem__card p[b-islvyycrsq] {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--main-content-color-dark);
}

.home-problem__bridge[b-islvyycrsq] {
    max-width: 52rem;
    margin: 0 auto;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--main-content-color-dark);
}

.home-problem__bridge a[b-islvyycrsq] {
    color: var(--tertiary-color-darker);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.home-problem__bridge a:hover[b-islvyycrsq] {
    color: var(--primary-color-darkest);
}
/* /Components/Pages/HomepageSections/HomeWhySection.razor.rz.scp.css */
.home-why__bento[b-6k6u2ubrhb] {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.2rem;
}

@media (max-width: 900px) {
    .home-why__bento[b-6k6u2ubrhb] {
        grid-template-columns: 1fr;
    }
}

.home-why__panel[b-6k6u2ubrhb] {
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--tertiary-color) 16%, white 84%);
    border-radius: 22px;
    padding: 1.5rem 1.45rem 1.6rem;
    box-shadow: 0 4px 24px rgba(31, 38, 135, 0.08);
}

.home-why__panel--wide[b-6k6u2ubrhb] {
    grid-column: 1 / -1;
}

.home-why__kicker[b-6k6u2ubrhb] {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tertiary-color-darker);
    margin-bottom: 0.5rem;
}

.home-why__panel h3[b-6k6u2ubrhb] {
    font-family: "Patua One", serif;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    margin: 0 0 0.5rem;
    color: var(--primary-color-darkest);
}

.home-why__panel p[b-6k6u2ubrhb] {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--main-content-color-dark);
}
/* /Components/Pages/Legal/PrivacyStatement.razor.rz.scp.css */
/*.logo {
    position: absolute;
    left: 30px;
    top: 10px;
    background-image: url('/images/logo-white.png');
    height: 300px;
    width: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    transform: scale(0);
    max-height: 75px;
    animation: 1.5s ZoomIn linear;
    animation-fill-mode: forwards;
    animation-delay: 1.8s;
}
section {
    display: flex;
    justify-content: center;
}*/

/*    section h2 {
        font-family: "Patua One", serif;
        font-style: normal;
        letter-spacing: 3px;
        font-size: 2rem;
        margin-top: 30px;
        font-weight: unset;
    }
*/
/*.privacystatement {
    width: 60vw;
}
*/

h2 .bld[b-og6d7gbim1] {
    color: var(--tertiary-color);
    font-size: 2.5rem;
    font-weight: 600;
}

.content-container[b-og6d7gbim1] {
    display: flex;
    justify-content: center;
    position: relative;
    top: calc(100vh* -0.40);
}

    .content-container.slide-in-bottom[b-og6d7gbim1] {
        animation-duration: 2s;
        animation-delay: .5s;
    }

.form-container[b-og6d7gbim1] {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 50px;
    width: 60vw;
    max-width: 100%;
}

.form-content[b-og6d7gbim1] {
    display: flex;
}

    .form-content section[b-og6d7gbim1] {
        width: 50%;
    }


.form-container h2[b-og6d7gbim1] {
    font-family: "Patua One", serif;
    font-style: normal;
    letter-spacing: 3px;
    font-size: 2rem;
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: unset;
}

.logo[b-og6d7gbim1] {
    background-image: url('/images/logo-whitebackground.jpg');
    height: 250px;
    width: 250px;
    background-size: contain;
    background-repeat: no-repeat;
    max-height: 75px;
    margin-top: 15px;
    position: relative;
    left: -15px;
}


@media screen and (max-width: 992px) {
    [b-og6d7gbim1].page-title h1 {
        color: var(--tertiary-color);
    }

    [b-og6d7gbim1].page-title .subheader {
        color: var(--tertiary-color);
    }
}

@media screen and (max-width: 768px) {

   

    h2 .bld[b-og6d7gbim1] {
        font-size: 1.6rem;
    }

    .form-container[b-og6d7gbim1] {
        width: 90vw;
        padding: 20px;
    }



    .form-content section[b-og6d7gbim1] {
        width: 100%;
    }

    .logo[b-og6d7gbim1] {
        height: 150px;
        width: 150px;
        position: relative;
        left: -8px;
        top: 22px;
    }

    .form-container h2[b-og6d7gbim1] {
        font-size: 1.4rem;
    }
}

/* /Components/Pages/Legal/TermsandConditions.razor.rz.scp.css */
/*.logo {
    position: absolute;
    left: 30px;
    top: 10px;
    background-image: url('/images/logo-white.png');
    height: 300px;
    width: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    transform: scale(0);
    max-height: 75px;
    animation: 1.5s ZoomIn linear;
    animation-fill-mode: forwards;
    animation-delay: 1.8s;
}
section {
    display: flex;
    justify-content: center;
}*/

/*    section h2 {
        font-family: "Patua One", serif;
        font-style: normal;
        letter-spacing: 3px;
        font-size: 2rem;
        margin-top: 30px;
        font-weight: unset;
    }
*/
/*.privacystatement {
    width: 60vw;
}
*/

h2 .bld[b-r5l57u7qlk] {
    color: var(--tertiary-color);
    font-size: 2.5rem;
    font-weight: 600;
}

.content-container[b-r5l57u7qlk] {
    display: flex;
    justify-content: center;
    position: relative;
    top: calc(100vh* -0.40);
}

    .content-container.slide-in-bottom[b-r5l57u7qlk] {
        animation-duration: 2s;
        animation-delay: .5s;
    }

.form-container[b-r5l57u7qlk] {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 50px;
    width: 60vw;
    max-width: 100%;
}

.form-content[b-r5l57u7qlk] {
    display: flex;
}

    .form-content section[b-r5l57u7qlk] {
        width: 50%;
    }


.form-container h2[b-r5l57u7qlk] {
    font-family: "Patua One", serif;
    font-style: normal;
    letter-spacing: 3px;
    font-size: 2rem;
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: unset;
}

.logo[b-r5l57u7qlk] {
    background-image: url('/images/logo-whitebackground.jpg');
    height: 250px;
    width: 250px;
    background-size: contain;
    background-repeat: no-repeat;
    max-height: 75px;
    margin-top: 15px;
    position: relative;
    left: -15px;
}


@media screen and (max-width: 992px) {
    [b-r5l57u7qlk].page-title h1 {
        color: var(--tertiary-color);
    }

    [b-r5l57u7qlk].page-title .subheader {
        color: var(--tertiary-color);
    }
}

@media screen and (max-width: 768px) {

    h2 .bld[b-r5l57u7qlk] {
        font-size: 1.6rem;
    }

    .form-container[b-r5l57u7qlk] {
        width: 90vw;
        padding: 20px;
    }



    .form-content section[b-r5l57u7qlk] {
        width: 100%;
    }

    .logo[b-r5l57u7qlk] {
        height: 150px;
        width: 150px;
        position: relative;
        left: -8px;
        top: 22px;
    }

    .form-container h2[b-r5l57u7qlk] {
        font-size: 1.4rem;
    }
}
/* /Components/Pages/Pricing/BookingPricingPage.razor.rz.scp.css */
.booking-pricing-page__footer-cta[b-aqbvw1xzft] {
    text-align: center;
    padding: 0 1rem 3rem;
    max-width: 36rem;
    margin: 0 auto;
}

.booking-pricing-page__footer-cta p[b-aqbvw1xzft] {
    margin: 0 0 1rem;
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.72);
}
/* /Components/Pages/Pricing/PricingPage.razor.rz.scp.css */
/* Pull pricing content up over the hero gradient without leaving document-flow gap.
   Use margin-top (not position + top) so the layout collapses and no phantom whitespace appears. */
.pricing-hub-page[b-ihvs3xh3g4] {
    --pricing-hub-overlap: clamp(18rem, 18vh, 14rem);
    position: relative;
    z-index: 2;
    margin-top: calc(-1 * var(--pricing-hub-overlap));
    padding: 0 1rem 4rem;
}

[b-ihvs3xh3g4].page-header--pricing {
    margin-bottom: calc(30vh - 160px - 3rem);
}

.pricing-hub-page__footer-cta[b-ihvs3xh3g4] {
    margin: 2.5rem auto 0;
    max-width: 720px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-hub-page__footer-cta p[b-ihvs3xh3g4] {
    margin: 0 0 1rem;
    color: rgba(15, 23, 42, 0.75);
}

@media (max-width: 720px) {
    .pricing-hub-page[b-ihvs3xh3g4] {
        --pricing-hub-overlap: clamp(5rem, 13vh, 9rem);
    }

    [b-ihvs3xh3g4].page-header--pricing {
        margin-bottom: calc(24vh - 160px - 2rem);
    }
}
/* /Components/Pages/Videos/VideoCtaBanner.razor.rz.scp.css */
.video-cta-banner[b-6lspq13mv5] {
    position: relative;
    padding: 5rem 2rem;
    margin: 0;
    overflow: hidden;
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--secondary-color) 35%, var(--tertiary-color) 100%);
}

.video-cta-banner__orb[b-6lspq13mv5] {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
}

.video-cta-banner__orb--1[b-6lspq13mv5] {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -120px;
    left: -100px;
    animation: vcta-float-b-6lspq13mv5 8s ease-in-out infinite alternate;
}

.video-cta-banner__orb--2[b-6lspq13mv5] {
    width: 300px;
    height: 300px;
    background: var(--tertiary-color);
    bottom: -80px;
    right: -60px;
    animation: vcta-float-b-6lspq13mv5 10s ease-in-out infinite alternate-reverse;
}

.video-cta-banner__orb--3[b-6lspq13mv5] {
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    animation: vcta-float-b-6lspq13mv5 12s ease-in-out infinite alternate;
    opacity: 0.2;
}

@keyframes vcta-float-b-6lspq13mv5 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -20px) scale(1.15); }
}

.video-cta-banner__grid[b-6lspq13mv5] {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
    background-size:
        48px 48px,
        48px 48px,
        192px 192px,
        192px 192px;
    pointer-events: none;
}

.video-cta-banner__inner[b-6lspq13mv5] {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.video-cta-banner__play[b-6lspq13mv5] {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-cta-banner__pulse[b-6lspq13mv5] {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    animation: vcta-pulse-b-6lspq13mv5 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes vcta-pulse-b-6lspq13mv5 {
    0%   { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

.video-cta-banner__play-circle[b-6lspq13mv5] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow:
        0 8px 32px rgba(96, 93, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-cta-banner:hover .video-cta-banner__play-circle[b-6lspq13mv5] {
    transform: scale(1.08);
    box-shadow:
        0 12px 48px rgba(96, 93, 255, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.video-cta-banner__play-circle svg[b-6lspq13mv5] {
    width: 28px;
    height: 28px;
    margin-left: 3px;
}

.video-cta-banner__title[b-6lspq13mv5] {
    font-family: "Patua One", serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 400;
    color: #fff;
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.video-cta-banner__subtitle[b-6lspq13mv5] {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 auto 2.25rem;
    max-width: 540px;
}

.video-cta-banner__action .button[b-6lspq13mv5] {
    font-size: 1rem;
    padding: 0 2.5rem;
}

.video-cta-banner:hover[b-6lspq13mv5] {
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .video-cta-banner[b-6lspq13mv5] {
        padding: 3.5rem 1.5rem;
    }

    .video-cta-banner__orb--1[b-6lspq13mv5] { width: 250px; height: 250px; }
    .video-cta-banner__orb--2[b-6lspq13mv5] { width: 180px; height: 180px; }
    .video-cta-banner__orb--3[b-6lspq13mv5] { display: none; }

    .video-cta-banner__subtitle[b-6lspq13mv5] {
        font-size: 0.95rem;
    }

    .video-cta-banner__play[b-6lspq13mv5] {
        width: 64px;
        height: 64px;
        margin-bottom: 1.5rem;
    }

    .video-cta-banner__play-circle[b-6lspq13mv5] {
        width: 58px;
        height: 58px;
    }

    .video-cta-banner__play-circle svg[b-6lspq13mv5] {
        width: 22px;
        height: 22px;
    }
}
/* /Components/Pages/Videos/VideoShowcase.razor.rz.scp.css */
/* ── Page wrapper ── */
.video-showcase[b-wa14822l4t] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
    position: relative;
    top: -300px;
}

/* ── Category tabs ── */
.video-tabs[b-wa14822l4t] {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.video-tab[b-wa14822l4t] {
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--main-content-color-dark, #333);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.video-tab:hover[b-wa14822l4t] {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.video-tab--active[b-wa14822l4t] {
    background: var(--gradient-brand);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 24px rgba(96, 93, 255, 0.25);
}

.video-tab--active:hover[b-wa14822l4t] {
    transform: none;
}

/* ── Theater layout ── */
.video-theater[b-wa14822l4t] {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
    align-items: start;
}

/* ── Player area ── */
.video-player-area[b-wa14822l4t] {
    min-width: 0;
}

.video-player-wrapper[b-wa14822l4t] {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0a0a0a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.video-player-wrapper video[b-wa14822l4t] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.video-player-wrapper--empty[b-wa14822l4t] {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

/* ── Video details (below player) ── */
.video-details[b-wa14822l4t] {
    padding: 1.25rem 0.25rem 0;
}

.video-details__category[b-wa14822l4t] {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tertiary-color-darker);
    margin-bottom: 0.35rem;
}

.video-details__title[b-wa14822l4t] {
    font-family: "Patua One", serif;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 400;
    color: var(--primary-color-darkest);
    margin: 0 0 0.5rem 0;
    line-height: 1.25;
}

.video-details__description[b-wa14822l4t] {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--main-content-color-dark, #555);
    margin: 0;
}

/* ── Playlist sidebar ── */
.video-playlist[b-wa14822l4t] {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 200px);
}

.video-playlist__heading[b-wa14822l4t] {
    font-family: "Patua One", serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color-darkest);
    padding: 1rem 1.15rem 0.75rem;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-playlist__count[b-wa14822l4t] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.6rem;
    height: 1.6rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 999px;
    background: color-mix(in srgb, var(--primary-color) 10%, transparent);
    color: var(--primary-color-darker);
}

.video-playlist__list[b-wa14822l4t] {
    overflow-y: auto;
    flex: 1;
    padding: 0.5rem;
}

.video-playlist__item[b-wa14822l4t] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: none;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
}

.video-playlist__item:hover[b-wa14822l4t] {
    background: rgba(0, 0, 0, 0.03);
}

.video-playlist__item--active[b-wa14822l4t] {
    background: color-mix(in srgb, var(--primary-color) 8%, transparent);
}

.video-playlist__item--active:hover[b-wa14822l4t] {
    background: color-mix(in srgb, var(--primary-color) 12%, transparent);
}

.video-playlist__play-icon[b-wa14822l4t] {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--primary-color) 10%, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.video-playlist__item--active .video-playlist__play-icon[b-wa14822l4t] {
    background: var(--primary-color);
    color: #fff;
}

.video-playlist__play-icon svg[b-wa14822l4t] {
    width: 14px;
    height: 14px;
    color: var(--primary-color);
}

.video-playlist__item--active .video-playlist__play-icon svg[b-wa14822l4t] {
    color: #fff;
}

.video-playlist__info[b-wa14822l4t] {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.video-playlist__title[b-wa14822l4t] {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--main-content-color-dark, #333);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-playlist__item--active .video-playlist__title[b-wa14822l4t] {
    color: var(--primary-color-darkest);
}

.video-playlist__cat[b-wa14822l4t] {
    font-size: 0.68rem;
    color: #999;
    margin-top: 1px;
}

/* ── Responsive ── */
@media screen and (max-width: 992px) {
    .video-theater[b-wa14822l4t] {
        grid-template-columns: 1fr;
    }

    .video-playlist[b-wa14822l4t] {
        max-height: none;
        border-radius: 12px;
    }

    .video-playlist__list[b-wa14822l4t] {
        max-height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .video-showcase[b-wa14822l4t] {
        padding: 1rem 1rem 3rem;
    }

    .video-tabs[b-wa14822l4t] {
        gap: 0.35rem;
        margin-bottom: 1.25rem;
    }

    .video-tab[b-wa14822l4t] {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .video-player-wrapper[b-wa14822l4t] {
        border-radius: 10px;
    }

    .video-details__title[b-wa14822l4t] {
        font-size: 1.1rem;
    }

    .video-playlist[b-wa14822l4t] {
        border-radius: 10px;
    }
}
/* /Components/Pages/Waitlist/WaitlistDialog.razor.rz.scp.css */
[b-668qdj41lw].waitlist .dialog-header .title .icon {
    height: unset;
}


[b-668qdj41lw].waitlist .dialog {
    max-width: 400px;
}

.waitlist-dialog[b-668qdj41lw] {
    background: #ffffff;
    width: 90%;
    text-align: center;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

/* Header: Icon and Title */
.dialog-header[b-668qdj41lw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.waitlist-icon[b-668qdj41lw] {
    margin-bottom: 0.5rem;
    color: #007BFF; /* Adjust icon color as needed */
}

.dialog-header h2[b-668qdj41lw] {
    margin: 0;
    font-size: 1.5rem;
    color: #333333;
}

/* Description styling */
.dialog-description[b-668qdj41lw] {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 1.5rem;
}

/* Form styling: inputs and button */
.waitlist-form[b-668qdj41lw] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .waitlist-form input[b-668qdj41lw] {
        padding: 0.8rem;
        border: 1px solid #cccccc;
        border-radius: 4px;
        font-size: 1rem;
        width: 100%;
        box-sizing: border-box;
    }

.cta-button[b-668qdj41lw] {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
    padding: 5px;
    background-color: #007BFF;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .cta-button:hover[b-668qdj41lw] {
        background-color: #0056b3;
    }

.bold[b-668qdj41lw] {
    font-size: 26px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 600;
    font-style: normal;

}

input:focus-visible[b-668qdj41lw] {
    outline: 1px solid var(--primary-color) !important;
}
/* /Components/Pages/WhatWeDo/WhatWeDo.razor.rz.scp.css */
.subheader h2[b-vwpeu25trh] {
    font-size: 1.4rem;
}

.content-container[b-vwpeu25trh] {
    width: 100%;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: align-items 2s ease-in-out;
    margin: 0px 100px;
    gap: 50px;
    position: relative;
    top: -150px;
}

    .content-container h4[b-vwpeu25trh] {
        color: var(--tertiary-color-darker);
    }

.content-description[b-vwpeu25trh] {
    width:65%;
}

.mockup-container[b-vwpeu25trh] {
    width: 40%;
    display: flex;
    align-items: center;
    position: relative;
}

.laptop-mockup[b-vwpeu25trh] {
    background-image: url(/images/laptop-mockup.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 500px;
    height: 260px;
    position: absolute;
}

.mobile-mockup[b-vwpeu25trh] {
    background-image: url(/images/mockup-mobile.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 600px;
    height: 500px;
    position: absolute;
    right: -150px;
}

.tablet-mockup[b-vwpeu25trh] {
    background-image: url(/images/mockup-tablet.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 700px;
    height: 900px;
    position: absolute;
    left: -260px;
    top: 30px;
    transform: rotate(30deg);
}

.mockup-background[b-vwpeu25trh] {
    border-radius: 50%;
    opacity: 0.7;
    position: relative;
    z-index: -1;
    background: var(--tertiary-color-lighter);
}

#section1 .mockup-background[b-vwpeu25trh] {
    right:-260px;
    width: 500px;
    height:500px;
}

#section1 h2[b-vwpeu25trh] {
    font-size:2.3rem;
}

#section2.content-container[b-vwpeu25trh] {
    flex-direction: row-reverse;
    margin: 0px;
}

#section2 h2[b-vwpeu25trh] {
    font-size: 2.3rem;
}

#section2 .mockup-background[b-vwpeu25trh] {
    left: -260px;
    width: 450px;
    height: 600px;
    background: var(--primary-color-lighter);
}

#section2 .content-description[b-vwpeu25trh] {
    margin-right: 100px;
}

#section2 .mockup-container[b-vwpeu25trh] {
    width:30%;
}

#section3 h2[b-vwpeu25trh] {
    font-size: 2.5rem;
}

#section3 .mockup-background[b-vwpeu25trh] {
    right: -200px;
    width: 550px;
    height: 500px;
    background: var(--secondary-color-darker);
}


.mobile-mockup.slide-in-right[b-vwpeu25trh],
.laptop-mockup.slide-in-right[b-vwpeu25trh],
.tablet-mockup.slide-in-left2[b-vwpeu25trh] {
    animation-duration: 2s;
}

.mockup-background.scale-in-right[b-vwpeu25trh] {
    animation-duration: 1s;
}


.mockup-background.scale-in-left[b-vwpeu25trh] {
    animation-duration: 1s;
}

.slide-in-left2[b-vwpeu25trh] {
    -webkit-animation: slide-in-left2 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-left2-b-vwpeu25trh 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-left2-b-vwpeu25trh {
    0% {
        -webkit-transform: translateX(-1000px);
        transform: translateX(-1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0) rotate(30deg) !important;
        transform: translateX(0) rotate(30deg) !important;
        opacity: 1;
    }
}



@media screen and (max-width: 992px) {
}

@media screen and (max-width: 768px) {

    [b-vwpeu25trh].page-title .subheader h2 {
        font-size: 1rem !important;
    }

    .content-container[b-vwpeu25trh] {
        flex-direction: column;
        margin: unset;
        height:unset;
        margin-bottom:100px;
    }

        .content-container h4[b-vwpeu25trh] {
            font-size: .7rem;
        }

    .content-description[b-vwpeu25trh],
    #section2 .content-description[b-vwpeu25trh]{
        width: 80%;
        margin-right:unset;
    }

    #section1 h2[b-vwpeu25trh] {
        font-size: 1.6rem;
    }

    #section1 .mockup-container[b-vwpeu25trh] {
        width: 80%;
        height: 200px;
        top: unset;
        margin-bottom: 50px;
    }

    #section2.content-container[b-vwpeu25trh] {
        flex-direction: column;
    }
    #section2 h2[b-vwpeu25trh] {
        font-size: 1.6rem;
    }

    #section2 .mockup-container[b-vwpeu25trh] {
        width: 120%;
        height: 37vh;
        top: -40px;
        margin-bottom: 20px;
    }

    #section2 .tablet-mockup[b-vwpeu25trh] {
        width: 500px;
        height: 700px;
        left: -150px;
        top: -50px;
    }

    #section2 .mockup-background[b-vwpeu25trh] {
        left:unset;
        width: 850px;
        height: 350px;
    }

    #section3 h2[b-vwpeu25trh] {
        font-size: 1.6rem;
    }

    #section3 .mockup-container[b-vwpeu25trh] {
        width: 110%;
        top: -100px;
    }

    #section3 .mobile-mockup[b-vwpeu25trh] {
        right: -220px;
    }

    #section3.content-container[b-vwpeu25trh] {
        margin-bottom: unset;
    }
}


@media screen and (max-height: 450px) {

    .content-container[b-vwpeu25trh] {
        height: 100vh;
    }

    #section1 .mockup-background[b-vwpeu25trh] {
        right: -100px;
    }
    .tablet-mockup[b-vwpeu25trh] {
        width: 500px;
        height: 700px;
        top: 90px;
    }

    #section2 .mockup-background[b-vwpeu25trh] {
        left: -140px;
    }

}


/* /Components/Pages/WhatWeDo/_OurValues.razor.rz.scp.css */
.values[b-9j0mbf1fju] {
    height: 90vh;
}

.section-header[b-9j0mbf1fju] {
    z-index: 3;
    transform: skew(-3deg, -3deg);
    height: 75px;
    position: relative;
    top: -40px;
}

    .section-header h2[b-9j0mbf1fju] {
        animation-delay: 1s;
        position: absolute;
        bottom: 0px;
        color: var(--primary-color);
        margin-left: 50px;
        margin-bottom: 15px;
    }

    .section-header h4[b-9j0mbf1fju] {
        font-family: inherit;
        font-weight: 300;
        animation-delay: 1.5s;
        z-index: 1;
        bottom: -50px;
        position: absolute;
        animation-delay: .3s;
        margin-left: 50px;
        color: var(--primary-color);
        font-size: 1.4rem;
        width: 60vw;
    }

.background[b-9j0mbf1fju]::before {
    content: unset;
}

.background[b-9j0mbf1fju] {
    position: absolute;
    width: 120vw;
    height: 80vh;
    left: -40px;
    transform: skew(-3deg, -3deg);
}

#values-section[b-9j0mbf1fju] {
    position: relative;
    bottom: 45px;
    z-index: 2;
    height:65vh;
}

.values-section[b-9j0mbf1fju] {
    height: 45vh;
    width: 100vw;
    position: absolute;
    top: 150px;
    display: flex;
    margin: 0px 50px;
    align-items: center;
    animation-delay:1s;
    animation-duration: 1s;
}

h4 .bold[b-9j0mbf1fju] {
    font-weight: 600;
    letter-spacing: 2px;
    font-family: "Patua One", serif;
}


.values-section[b-9j0mbf1fju] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    row-gap: 20px;
    margin: 20px 40px;
}

.values-item[b-9j0mbf1fju] {
    display: flex;
    flex-direction: column;
    width: 25vw;
    height: -webkit-fill-available;
    transition: transform 0.5s ease-in-out;
    align-items: flex-start;
}

    .values-item .title[b-9j0mbf1fju] {
        color: var(--bs-body-color);
        font-family: "Patua One", serif;
        font-weight: 400;
        font-style: normal;
        font-size:1.8rem;
    }
        .values-item .title .bld[b-9j0mbf1fju] {
            font-weight: 600;
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-left:65px;
            position: absolute;
        }


        .values-item .description[b-9j0mbf1fju] {
            color: var(--bs-gray-600);
            font-size: .8rem;
        }

    .values-item .icon[b-9j0mbf1fju] {
        display: flex;
        min-height: 50px;
        min-width: 50px;
        max-height: 50px;
        max-width: 50px;
        border-radius: 10px;
        justify-content: center;
        align-items: center;
        position:absolute;
    }

[b-9j0mbf1fju].icon svg {
    fill: var(--primary-color);
    stroke: var(--primary-color);
    height: 50px;
    width: 50px;
}

.jello-vertical[b-9j0mbf1fju] {
    animation-duration: 1.5s;
}

.text-main[b-9j0mbf1fju] {
    position: relative;
    top: 7px;
    margin-left: 90px;
}
.description[b-9j0mbf1fju]{
    margin-top:15px;
}


@media screen and (max-width: 992px) {

    #values-section[b-9j0mbf1fju] {
        height: 170vh;
    }
    
    #values-section .background[b-9j0mbf1fju] {
        height: 190vh;
    }
    .section-header h4[b-9j0mbf1fju] {
        width: 90vw;
        bottom: -70px;
    }

    .background[b-9j0mbf1fju] {
        height: 140vh;
    }

    .values-section[b-9j0mbf1fju] {
        grid-template-columns: repeat(1, 1fr);
        justify-items: center;
        margin: unset;
    }

    .values-item[b-9j0mbf1fju] {
        width: 80vw;
        height:unset;
    }


}

@media screen and (max-height: 450px) {
    .section-header h4[b-9j0mbf1fju] {
        width: 90vw;
        bottom: -60px;
    }
    .values-item[b-9j0mbf1fju] {
        width: 70vw;
    }

    #values-section[b-9j0mbf1fju] {
        height: 800px;
    }

    .background[b-9j0mbf1fju] {
        height: 950px;
    }
}



/* /Components/Pricing/BookingPricingSection.razor.rz.scp.css */
.booking-pricing[b-kxxvcg4ax3] {
    position: relative;
    padding: clamp(2.5rem, 5vw, 4rem) 1rem;
    background: linear-gradient(
        180deg,
        color-mix(in srgb, var(--primary-color) 6%, white),
        transparent 42%
    );
}

.booking-pricing__inner[b-kxxvcg4ax3] {
    max-width: 1180px;
    margin: 0 auto;
}

.booking-pricing__kicker[b-kxxvcg4ax3] {
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tertiary-color-darker);
}

.booking-pricing__title[b-kxxvcg4ax3] {
    margin: 0 0 0.65rem;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    letter-spacing: -0.02em;
    color: var(--primary-color-darkest);
}

.booking-pricing__lead[b-kxxvcg4ax3] {
    margin: 0 0 2rem;
    max-width: 58ch;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.72);
}

.booking-pricing__controls[b-kxxvcg4ax3] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.booking-pricing__controls-toolbar[b-kxxvcg4ax3] {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem 2rem;
}

.booking-pricing__slider-row[b-kxxvcg4ax3] {
    flex: 1;
    min-width: 0;
}

.booking-pricing__slider-header[b-kxxvcg4ax3] {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    margin-bottom: 0.65rem;
}

.booking-pricing__slider-label[b-kxxvcg4ax3] {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primary-color-darkest);
}

.booking-pricing__slider-value[b-kxxvcg4ax3] {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-color);
}

.booking-pricing__slider-track[b-kxxvcg4ax3] {
    position: relative;
    padding: 0.35rem 0 1.75rem;
}

.booking-pricing__slider-ticks[b-kxxvcg4ax3] {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 2px;
    z-index: 0;
}

.booking-pricing__slider-tick[b-kxxvcg4ax3] {
    width: 2px;
    height: 10px;
    border-radius: 1px;
    background: rgba(0, 0, 0, 0.22);
}

.booking-pricing__slider[b-kxxvcg4ax3] {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 6px;
    margin: 0;
    border-radius: 999px;
    accent-color: var(--primary-color);
    cursor: pointer;
    background: transparent;
}

.booking-pricing__slider-labels[b-kxxvcg4ax3] {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.booking-pricing__slider-step[b-kxxvcg4ax3] {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.42);
    transform: translateX(-50%);
    min-width: 1.25rem;
    text-align: center;
}

.booking-pricing__slider-step:first-child[b-kxxvcg4ax3] {
    transform: none;
    text-align: left;
}

.booking-pricing__slider-step:last-child[b-kxxvcg4ax3] {
    transform: none;
    text-align: right;
}

.booking-pricing__slider-step--active[b-kxxvcg4ax3] {
    color: var(--primary-color);
    font-weight: 700;
}

.booking-pricing__enterprise-seats[b-kxxvcg4ax3] {
    width: 100%;
    max-width: 320px;
}

.booking-pricing__enterprise-seats-label[b-kxxvcg4ax3] {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color-darkest);
}

.booking-pricing__required[b-kxxvcg4ax3] {
    font-weight: 500;
    color: var(--tertiary-color-darker);
    font-size: 0.82rem;
}

.booking-pricing__enterprise-seats-input[b-kxxvcg4ax3] {
    width: 100%;
    padding: 0.55rem 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.18);
    font-size: 1rem;
}

.booking-pricing__enterprise-seats-input--invalid[b-kxxvcg4ax3] {
    border-color: var(--negative-color);
}

.booking-pricing__enterprise-seats-error[b-kxxvcg4ax3] {
    margin: 0.35rem 0 0;
    font-size: 0.82rem;
    color: var(--negative-color);
}

.booking-pricing__billing[b-kxxvcg4ax3] {
    flex-shrink: 0;
    align-self: flex-end;
}

.booking-pricing__billing-toggle-wrap[b-kxxvcg4ax3] {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 4.5rem;
}

.booking-pricing__yearly-note[b-kxxvcg4ax3] {
    position: absolute;
    right: 1.5rem;
    bottom: calc(100% - 4rem);
    margin: 0;
    pointer-events: none;
    opacity: 0.9;
    transition: opacity 0.25s ease, filter 0.25s ease;
}

.booking-pricing__yearly-promo[b-kxxvcg4ax3] {
    display: block;
    width: min(15rem, 48vw);
    height: auto;
    color: var(--tertiary-color-darker);
    transition: color 0.25s ease, filter 0.25s ease;
}

.booking-pricing__yearly-promo-art[b-kxxvcg4ax3] {
    color: inherit;
}

.booking-pricing__yearly-note--active[b-kxxvcg4ax3] {
    opacity: 1;
}

.booking-pricing__yearly-note--active .booking-pricing__yearly-promo[b-kxxvcg4ax3] {
    color: var(--tertiary-color);
    animation: pricing-promo-pulse-b-kxxvcg4ax3 2s ease-in-out infinite;
}

@keyframes pricing-promo-pulse-b-kxxvcg4ax3 {
    0%, 100% {
        filter: drop-shadow(0 0 3px rgba(var(--tertiary-color-rgba), 0.35));
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(var(--tertiary-color-rgba), 0.7))
            drop-shadow(0 0 18px rgba(var(--tertiary-color-rgba), 0.35));
    }
}

.booking-pricing__billing-toggle[b-kxxvcg4ax3] {
    display: inline-flex;
    padding: 0.2rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.booking-pricing__billing-btn[b-kxxvcg4ax3] {
    border: none;
    background: transparent;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.55);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.booking-pricing__billing-btn--active[b-kxxvcg4ax3] {
    background: #fff;
    color: var(--primary-color-darkest);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.booking-pricing__promo-banner[b-kxxvcg4ax3] {
    margin: 0 0 1.25rem;
    padding: 0.85rem 1.1rem;
    border-radius: 12px;
    text-align: center;
    background: color-mix(in srgb, var(--tertiary-color) 14%, #fff);
    border: 1px solid color-mix(in srgb, var(--tertiary-color) 35%, transparent);
}

.booking-pricing__promo-headline[b-kxxvcg4ax3] {
    margin: 0 0 0.65rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color-darkest);
}

.booking-pricing__promo-banner-body[b-kxxvcg4ax3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
}

.booking-pricing__promo-meta[b-kxxvcg4ax3] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.3rem 0.5rem;
    margin: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

.booking-pricing__promo-meta-item:not(:last-child)[b-kxxvcg4ax3]::after {
    content: "·";
    margin-left: 0.5rem;
    font-weight: 500;
    color: color-mix(in srgb, var(--primary-color) 50%, transparent);
}

.booking-pricing__grid[b-kxxvcg4ax3] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.booking-pricing__plan-shell[b-kxxvcg4ax3] {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
}

.booking-pricing__plan-shell > .pricing-plan-card[b-kxxvcg4ax3] {
    flex: 1 1 auto;
    width: 100%;
}

.booking-pricing__summary[b-kxxvcg4ax3] {
    margin-top: 2rem;
    padding: 1.5rem 1.6rem;
    border-radius: 20px;
    border: 2px solid color-mix(in srgb, var(--primary-color) 25%, rgba(0, 0, 0, 0.08));
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 32px rgba(var(--primary-color-rgba), 0.08);
}

.booking-pricing__summary-title[b-kxxvcg4ax3] {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color-darkest);
}

.booking-pricing__summary-details[b-kxxvcg4ax3] {
    margin: 0 0 1rem;
    display: grid;
    gap: 0.45rem;
}

.booking-pricing__summary-row[b-kxxvcg4ax3] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
}

.booking-pricing__summary-row dt[b-kxxvcg4ax3] {
    margin: 0;
    color: rgba(0, 0, 0, 0.55);
    font-weight: 500;
}

.booking-pricing__summary-row dd[b-kxxvcg4ax3] {
    margin: 0;
    font-weight: 600;
    color: var(--primary-color-darkest);
    text-align: right;
}

.booking-pricing__summary-row--line dd[b-kxxvcg4ax3] {
    font-weight: 500;
}

.booking-pricing__summary-row--compare dd[b-kxxvcg4ax3] {
    text-decoration: line-through;
    color: rgba(0, 0, 0, 0.45);
    font-weight: 500;
}

.booking-pricing__summary-row--saved dd[b-kxxvcg4ax3] {
    color: var(--positive-color);
    font-weight: 700;
}

.booking-pricing__summary-placeholder[b-kxxvcg4ax3] {
    margin: 0 0 1rem;
    font-size: 0.92rem;
    color: rgba(0, 0, 0, 0.55);
}

.booking-pricing__summary-total[b-kxxvcg4ax3] {
    margin: 0 0 1.25rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.5rem;
}

.booking-pricing__summary-total-label[b-kxxvcg4ax3] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color-darkest);
    margin-right: auto;
}

.booking-pricing__summary-total-amount[b-kxxvcg4ax3] {
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 700;
    color: var(--primary-color-darkest);
}

.booking-pricing__summary-total-period[b-kxxvcg4ax3] {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.5);
}

.booking-pricing__summary-actions[b-kxxvcg4ax3] {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.25rem;
    scroll-margin-bottom: 4.5rem;
}

.booking-pricing__pay-btn[b-kxxvcg4ax3] {
    width: auto;
    min-width: 12rem;
    max-width: 280px;
    margin-left: auto;
}

.booking-pricing__pay-btn:disabled[b-kxxvcg4ax3] {
    opacity: 0.45;
    cursor: not-allowed;
}

.booking-pricing__addons[b-kxxvcg4ax3] {
    margin-top: 2.25rem;
    padding: 1.35rem 1.5rem;
    border-radius: 18px;
    border: 1px solid color-mix(in srgb, var(--tertiary-color) 25%, rgba(0, 0, 0, 0.08));
    background: color-mix(in srgb, var(--tertiary-color-lighter) 35%, white);
}

.booking-pricing__addons-title[b-kxxvcg4ax3] {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color-darkest);
}

.booking-pricing__addons-lead[b-kxxvcg4ax3] {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.62);
}

.booking-pricing__addons-list[b-kxxvcg4ax3] {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

@media (min-width: 640px) {
    .booking-pricing__addons-list[b-kxxvcg4ax3] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.booking-pricing__addons-item[b-kxxvcg4ax3] {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
}

.booking-pricing__addons-name[b-kxxvcg4ax3] {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color-darkest);
}

.booking-pricing__addons-detail[b-kxxvcg4ax3] {
    font-size: 0.84rem;
    line-height: 1.45;
    color: rgba(0, 0, 0, 0.68);
}

@media (max-width: 900px) {
    .booking-pricing__controls-toolbar[b-kxxvcg4ax3] {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-pricing__billing[b-kxxvcg4ax3] {
        align-self: stretch;
    }

    .booking-pricing__billing-toggle-wrap[b-kxxvcg4ax3] {
        align-items: flex-start;
        padding-top: 3.5rem;
        float:right;
    }

    .booking-pricing__yearly-note[b-kxxvcg4ax3] {
        left: unset;
        right: 30px;
    }

    .booking-pricing__yearly-promo[b-kxxvcg4ax3] {
        width: min(13rem, 72vw);
    }

    .booking-pricing__grid[b-kxxvcg4ax3] {
        grid-template-columns: 1fr;
    }

    .booking-pricing__summary-actions[b-kxxvcg4ax3] {
        justify-content: stretch;
    }

    .booking-pricing__pay-btn[b-kxxvcg4ax3] {
        width: 100%;
        max-width: none;
        margin-left: 0;
    }
}
/* /Components/Pricing/ModuleBundleSelector.razor.rz.scp.css */
.module-bundle-selector[b-9040t1todz] {
    margin: 0 auto 2.5rem;
    max-width: 1100px;
}

.module-bundle-selector__header[b-9040t1todz] {
    text-align: center;
    margin-bottom: 1.5rem;
}

.module-bundle-selector__kicker[b-9040t1todz] {
    margin: 0 0 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.module-bundle-selector__title[b-9040t1todz] {
    margin: 0 0 0.65rem;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.module-bundle-selector__lead[b-9040t1todz] {
    margin: 0 auto;
    max-width: 720px;
    color: rgba(15, 23, 42, 0.72);
    line-height: 1.55;
}

.module-bundle-selector__grid[b-9040t1todz] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.module-bundle-card[b-9040t1todz] {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-height: 180px;
    padding: 1.1rem 1.1rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.92);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    overflow: hidden;
}

.module-bundle-card--active[b-9040t1todz] {
    border-color: color-mix(in srgb, var(--primary-color) 45%, transparent);
    box-shadow: 0 10px 30px rgba(var(--primary-color-rgba), 0.08);
}

.module-bundle-card--included[b-9040t1todz],
.module-bundle-card--coming-soon[b-9040t1todz] {
    opacity: 0.72;
    background: rgba(248, 250, 252, 0.95);
}

.module-bundle-card--included[b-9040t1todz] {
    border-style: dashed;
}

.module-bundle-card__checkbox[b-9040t1todz] {
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 0.35rem;
    border: 2px solid rgba(148, 163, 184, 0.8);
    display: grid;
    place-items: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.module-bundle-card--checked .module-bundle-card__checkbox[b-9040t1todz],
.module-bundle-card--active .module-bundle-card__checkbox[b-9040t1todz] {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
}

.module-bundle-card__body[b-9040t1todz] {
    flex: 1;
}

.module-bundle-card__name[b-9040t1todz] {
    margin: 0 0 0.5rem;
    font-size: 1.02rem;
    padding-right: 0.25rem;
}

.module-bundle-card__tag[b-9040t1todz] {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1.2;
    z-index: 1;
}

.module-bundle-card__tag--included[b-9040t1todz] {
    background: rgba(34, 197, 94, 0.14);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.22);
}

.module-bundle-card__tag--soon[b-9040t1todz] {
    background: rgba(15, 23, 42, 0.06);
    color: rgba(71, 85, 105, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.module-bundle-card__note[b-9040t1todz] {
    margin: 0;
    color: rgba(71, 85, 105, 0.92);
    font-size: 0.88rem;
    line-height: 1.45;
}

.module-bundle-card__link[b-9040t1todz] {
    align-self: flex-start;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.module-bundle-card__link:hover[b-9040t1todz] {
    text-decoration: underline;
}

.module-bundle-card--coming-soon .module-bundle-card__link[b-9040t1todz] {
    display: none;
}
/* /Components/Pricing/PricingPlanCard.razor.rz.scp.css */
.pricing-plan-card[b-evwf0fxwi8] {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    min-height: 100%;
    padding: 1.35rem 1.4rem 1.5rem;
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 32px rgba(2, 0, 87, 0.06);
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-plan-card--selectable[b-evwf0fxwi8] {
    cursor: pointer;
}

.pricing-plan-card--disabled[b-evwf0fxwi8] {
    opacity: 0.52;
    pointer-events: none;
    transform: none;
    box-shadow: none;
    cursor: default;
}

.pricing-plan-card--selected[b-evwf0fxwi8] {
    border: 2px solid var(--primary-color);
    box-shadow:
        0 0 0 3px color-mix(in srgb, var(--primary-color) 22%, transparent),
        0 12px 36px rgba(var(--primary-color-rgba), 0.22);
}

.pricing-plan-card--disabled.pricing-plan-card--selected[b-evwf0fxwi8] {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: none;
}

.pricing-plan-card__promo-badges[b-evwf0fxwi8] {
    position: absolute;
    top: -0.55rem;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 0 0.5rem;
}

.pricing-plan-card:has(.pricing-plan-card__badge) .pricing-plan-card__promo-badges[b-evwf0fxwi8] {
    top: 1.15rem;
}

.pricing-plan-card__badge[b-evwf0fxwi8] {
    position: absolute;
    top: -0.65rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: var(--gradient-brand);
    white-space: nowrap;
}

.pricing-plan-card__tier[b-evwf0fxwi8] {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
}

.pricing-plan-card__subtitle[b-evwf0fxwi8] {
    margin: 0.2rem 0 0;
    font-size: 0.92rem;
    color: rgba(0, 0, 0, 0.62);
}

.pricing-plan-card__price[b-evwf0fxwi8] {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem;
}

.pricing-plan-card__compare-price[b-evwf0fxwi8] {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem;
    margin: 0;
}

.pricing-plan-card__compare-price .pricing-scribble-strike__text[b-evwf0fxwi8] {
    font-size: 1.05rem;
    font-weight: 400;
}

.pricing-plan-card__period--compare[b-evwf0fxwi8] {
    font-size: 0.9rem;
}

.pricing-plan-card__promo-headline[b-evwf0fxwi8] {
    margin: 0.35rem 0 0;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--primary-color);
}

.pricing-plan-card__savings--promo[b-evwf0fxwi8] {
    margin-top: 0.2rem;
}

.pricing-plan-card__amount[b-evwf0fxwi8] {
    font-size: clamp(1.75rem, 3vw, 2.15rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--primary-color-darkest);
}

.pricing-plan-card__period[b-evwf0fxwi8] {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.55);
}

.pricing-plan-card__price--muted .pricing-plan-card__amount[b-evwf0fxwi8] {
    color: rgba(0, 0, 0, 0.45);
}

.pricing-plan-card__savings[b-evwf0fxwi8] {
    margin: 0.35rem 0 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--positive-color);
}

.pricing-plan-card__savings--yearly[b-evwf0fxwi8] {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.25rem 0.35rem;
}

.pricing-plan-card__savings-was[b-evwf0fxwi8] {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.2rem;
    color: rgba(0, 0, 0, 0.52);
    font-weight: 500;
}

.pricing-plan-card__savings-was .pricing-scribble-strike__text[b-evwf0fxwi8] {
    font-size: 0.88rem;
    font-weight: 400;
}

.pricing-plan-card__ineligible[b-evwf0fxwi8] {
    margin: 0.45rem 0 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(0, 0, 0, 0.55);
}

.pricing-plan-card__features-heading[b-evwf0fxwi8] {
    margin: 0 0 0.55rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.45);
}

.pricing-plan-card__features-heading--sub[b-evwf0fxwi8] {
    margin-top: 1rem;
}

.pricing-plan-card__includes-prefix[b-evwf0fxwi8] {
    margin: 0 0 0.65rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-color-darkest);
}

.pricing-plan-card__expand[b-evwf0fxwi8] {
    margin: 0.65rem 0 0;
    padding: 0;
    border: none;
    background: none;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.pricing-plan-card__expand:hover[b-evwf0fxwi8] {
    color: var(--tertiary-color-darker);
}

.pricing-plan-card__list--more[b-evwf0fxwi8] {
    margin-top: 0.5rem;
}

.pricing-plan-card__list[b-evwf0fxwi8] {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-plan-card__item[b-evwf0fxwi8] {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.88rem;
    line-height: 1.45;
}

.pricing-plan-card__item--included[b-evwf0fxwi8] {
    color: var(--primary-color-darkest);
}

.pricing-plan-card__item--excluded[b-evwf0fxwi8] {
    color: rgba(0, 0, 0, 0.42);
}

.pricing-plan-card__icon[b-evwf0fxwi8] {
    flex-shrink: 0;
    width: 1.15rem;
    height: 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
}

.pricing-plan-card__item--included .pricing-plan-card__icon[b-evwf0fxwi8] {
    color: var(--positive-color);
    background: color-mix(in srgb, var(--positive-color) 18%, white);
}

.pricing-plan-card__item--excluded .pricing-plan-card__icon[b-evwf0fxwi8] {
    color: rgba(0, 0, 0, 0.35);
    background: rgba(0, 0, 0, 0.06);
}

.pricing-plan-card__footer[b-evwf0fxwi8] {
    margin-top: auto;
    padding-top: 0.5rem;
}

.pricing-plan-card__cta[b-evwf0fxwi8] {
    width: 100%;
}

.pricing-plan-card__cta--selected[b-evwf0fxwi8] {
    background: var(--primary-color-darkest);
}

.pricing-plan-card__cta-note[b-evwf0fxwi8] {
    margin: 0.55rem 0 0;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(0, 0, 0, 0.5);
}

.pricing-plan-card__feature-text[b-evwf0fxwi8] {
    flex: 1;
    min-width: 0;
}

.pricing-plan-card__feature-qualifier[b-evwf0fxwi8] {
    font-size: 0.78em;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
}

.pricing-plan-card--selectable:hover .pricing-plan-card__cta:not(:disabled)[b-evwf0fxwi8] {
    filter: brightness(1.06);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(var(--primary-color-rgba), 0.35);
}

.pricing-plan-card--selectable:focus-visible[b-evwf0fxwi8] {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}


.booking-pricing__plan-shell:has(.pricing-plan-card__badge):has(.pricing-promotion-badges) .pricing-plan-card--selected[b-evwf0fxwi8] {
    padding-top: 75px;
}

/* /Components/Pricing/PricingPromotionBadge.razor.rz.scp.css */
.pricing-promotion-badges[b-k55rvlde50] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    margin: 0 0 0.35rem;
}

.pricing-promotion-badges__offer[b-k55rvlde50] {
    padding: 0.28rem 0.75rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: var(--gradient-brand);
    white-space: nowrap;
}

.pricing-promotion-badges__limited[b-k55rvlde50] {
    padding: 0.26rem 0.7rem;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: color-mix(in srgb, var(--tertiary-color) 18%, #fff);
    border: 1px solid color-mix(in srgb, var(--tertiary-color) 45%, var(--primary-color));
    white-space: nowrap;
}
/* /Components/Pricing/PricingScribbleStrike.razor.rz.scp.css */
.pricing-scribble-strike[b-0v4ndcstc1] {
    position: relative;
    display: inline-block;
    line-height: 1;
}

.pricing-scribble-strike__text[b-0v4ndcstc1] {
    position: relative;
    z-index: 0;
    font: inherit;
    font-weight: inherit;
    color: rgba(0, 0, 0, 0.58);
    letter-spacing: inherit;
}

.pricing-scribble-strike__svg[b-0v4ndcstc1] {
    position: absolute;
    left: -0.12em;
    right: -0.12em;
    top: 42%;
    width: calc(100% + 0.24em);
    height: 0.72em;
    min-height: 14px;
    max-height: 22px;
    transform: translateY(-50%) rotate(-1.5deg);
    z-index: 1;
    overflow: visible;
    pointer-events: none;
}

.pricing-scribble-strike__path[b-0v4ndcstc1] {
    fill: none;
    stroke: var(--tertiary-color);
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.pricing-scribble-strike__path--1[b-0v4ndcstc1] {
    stroke-width: 1.6;
    opacity: 0.65;
}

.pricing-scribble-strike__path--2[b-0v4ndcstc1] {
    stroke-width: 1.25;
    opacity: 0.6;
}

.pricing-scribble-strike__path--3[b-0v4ndcstc1] {
    stroke-width: 0.95;
    opacity: 0.55;
}
/* /Components/Pricing/PromotionTierTimeline.razor.rz.scp.css */
.promotion-tier-timeline[b-cr29b4gp1o] {
    margin: 0 auto 2.5rem;
    max-width: 920px;
    padding: 1.75rem 1.5rem 2rem;
    border: 1px solid color-mix(in srgb, var(--primary-color) 25%, transparent);
    border-radius: 1rem;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.98) 0%,
        color-mix(in srgb, var(--primary-color) 6%, white) 100%
    );
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.promotion-tier-timeline__header[b-cr29b4gp1o] {
    text-align: center;
    margin-bottom: 1.75rem;
}

.promotion-tier-timeline__meta[b-cr29b4gp1o] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.55rem;
    margin: 0 0 0.85rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.promotion-tier-timeline__meta-item:not(:last-child)[b-cr29b4gp1o]::after {
    content: "·";
    margin-left: 0.55rem;
    font-weight: 500;
    color: color-mix(in srgb, var(--primary-color) 45%, transparent);
    letter-spacing: 0;
}

.promotion-tier-timeline__title[b-cr29b4gp1o] {
    margin: 0 0 0.75rem;
    font-size: clamp(1.35rem, 2.4vw, 1.9rem);
    line-height: 1.2;
}

.promotion-tier-timeline__spots-wrap[b-cr29b4gp1o] {
    display: flex;
    justify-content: center;
    margin: 0 0 1rem;
}

.promotion-tier-timeline__lead[b-cr29b4gp1o] {
    margin: 0;
    color: rgba(15, 23, 42, 0.72);
    font-size: 0.98rem;
    line-height: 1.55;
}

.promotion-tier-timeline__track[b-cr29b4gp1o] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    align-items: start;
    position: relative;
}

.promotion-tier-timeline__track[b-cr29b4gp1o]::before {
    content: "";
    position: absolute;
    top: 2.45rem;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.45), rgba(148, 163, 184, 0.2));
    z-index: 0;
}

.promotion-tier-timeline__node[b-cr29b4gp1o] {
    position: relative;
    z-index: 1;
    text-align: center;
}

.promotion-tier-timeline__price[b-cr29b4gp1o] {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.promotion-tier-timeline__dot[b-cr29b4gp1o] {
    width: 0.95rem;
    height: 0.95rem;
    margin: 0 auto 0.65rem;
    border-radius: 50%;
    background: #cbd5e1;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.45);
}

.promotion-tier-timeline__label[b-cr29b4gp1o] {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(71, 85, 105, 0.95);
}

.promotion-tier-timeline__node--active .promotion-tier-timeline__price[b-cr29b4gp1o] {
    color: #0f172a;
}

.promotion-tier-timeline__node--active .promotion-tier-timeline__dot[b-cr29b4gp1o] {
    background: var(--primary-color);
    box-shadow:
        0 0 0 4px color-mix(in srgb, var(--primary-color) 18%, transparent),
        0 0 18px rgba(var(--primary-color-rgba), 0.45);
}

.promotion-tier-timeline__node--active .promotion-tier-timeline__label[b-cr29b4gp1o] {
    color: var(--primary-color);
}

.promotion-tier-timeline__node--sold-out .promotion-tier-timeline__price[b-cr29b4gp1o],
.promotion-tier-timeline__node--sold-out .promotion-tier-timeline__label[b-cr29b4gp1o] {
    color: rgba(100, 116, 139, 0.85);
}

.promotion-tier-timeline__node--upcoming .promotion-tier-timeline__price[b-cr29b4gp1o],
.promotion-tier-timeline__node--upcoming .promotion-tier-timeline__label[b-cr29b4gp1o] {
    color: rgba(100, 116, 139, 0.9);
}

@media (max-width: 640px) {
    .promotion-tier-timeline[b-cr29b4gp1o] {
        padding: 1.25rem 1rem 1.5rem;
    }

    .promotion-tier-timeline__track[b-cr29b4gp1o]::before {
        display: none;
    }
}
/* /Components/Shared/FAQPage.razor.rz.scp.css */
.faq-section[b-rmv8tp5pt3] {
    height: 45vh;
    width: 100vw;
    position: absolute;
    top: 150px;
    display: flex;
    margin: 0px 50px;
    align-items: center;
}

.faq-container[b-rmv8tp5pt3] {
    display: flex;
    gap: 10px;
    flex-direction: column;
    width: 50vw;
}

.faq-item-wrapper[b-rmv8tp5pt3] {
    border-radius: 10px;
    cursor: pointer;
}

.faq-item[b-rmv8tp5pt3] {
    background: var(--main-content-color);
    border-radius: 10px;
    padding: 10px 20px;
    overflow: hidden;
}

    .faq-item .question[b-rmv8tp5pt3] {
        font-family: "Patua One", serif;
        font-weight: 400;
        font-style: normal;
        width: 100%;
        color: var(--main-content-color-dark);
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .faq-item .answer[b-rmv8tp5pt3] {
        height: 0px;
        visibility: hidden;
        transition: height 0.5s ease-in-out;
    }

.faq[b-rmv8tp5pt3] {
    height: 90vh;
}

.section-header[b-rmv8tp5pt3] {
    z-index: 3;
    transform: skew(-3deg, -3deg);
    height: 250px;
    position: relative;
    top: -40px;
}

    .section-header h2[b-rmv8tp5pt3] {
        animation-delay: 1s;
        position: absolute;
        bottom: 0px;
        color: var(--primary-color);
        margin-left: 50px;
        margin-bottom: 15px;
    }

    .section-header h4[b-rmv8tp5pt3] {
        animation-delay: 1.5s;
        z-index: 1;
        bottom: -50px;
        position: absolute;
        animation-delay: .3s;
        margin-left: 50px;
        color: var(--tertiary-color-lighter);
        font-size: 1.4rem;
        width: 60vw;
    }

.logo-darkicon[b-rmv8tp5pt3] {
    z-index: 1;
    opacity: 0.5;
    bottom: 350px;
    right: -73vw;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    height: 60vh;
    margin: 0px 20px 0px 20px;
    width: 500px;
}

[b-rmv8tp5pt3].expand-button svg {
    height: 25px;
    width: 25px;
    stroke: var(--main-content-color-dark);
    transition: height 0.5s ease-in-out, width 0.5s ease-in-out;
}

.faq-item-wrapper.selected .answer[b-rmv8tp5pt3] {
    visibility: visible;
    height: 100px;
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity));
    line-height: 1.75rem;
    font-size: 1rem;
    display:flex;
    align-items: center;
}

.faq-item .expand-button[b-rmv8tp5pt3] {
    transition: transform 0.5s ease-in-out;
}
.faq-item-wrapper.selected .expand-button[b-rmv8tp5pt3] {
    transform: rotate(45deg); 
}

[b-rmv8tp5pt3].faq-item-wrapper.selected .expand-button svg {
    stroke: var(--negative-color);
    height: 40px;
    width: 40px;
}

.background[b-rmv8tp5pt3]::before {
    content: unset;
}

.background[b-rmv8tp5pt3] {
    position: absolute;
    width: 120vw;
    height: 75vh;
    left: -40px;
    transform: skew(-3deg, -3deg);
}

#faq-section[b-rmv8tp5pt3] {
    position: absolute;
    bottom: -1000px;
    padding-top: 450px;
    z-index: 2;
    width: 0;
}


@media (max-width: 1024px) {
    .faq-container[b-rmv8tp5pt3] {
        width: 70vw;
    }

    .faq-item-wrapper.selected .answer[b-rmv8tp5pt3] {
        height: 150px;
    }
}

@media screen and (max-width: 992px) {
/*}

@media screen and (max-width: 768px) {
*/
    #faq-section[b-rmv8tp5pt3] {
        height: 60vh;
    }
    .faq-section[b-rmv8tp5pt3] {
        margin: unset;
        justify-content: center;
        z-index: 2;
    }

    .faq-container[b-rmv8tp5pt3] {
        width:90vw;
    }

    .section-header h2[b-rmv8tp5pt3] {
        margin-left: 20px;
    }

    .section-header h4[b-rmv8tp5pt3] {
        margin-left: 20px;
        font-size: 1.1rem;
        width: 90vw;
    }

    section h2[b-rmv8tp5pt3] {
        font-size: 1.4rem;
    }

    .logo-darkicon[b-rmv8tp5pt3] {
    display:none;
    }

    .faq-item-wrapper.selected .answer[b-rmv8tp5pt3] {
        height:190px;
        line-height: 1.5rem;
        font-size: 0.8rem;
    }
}

@media screen and (max-height: 450px) {

    .background[b-rmv8tp5pt3] {
        height: 550px;
    }

    #faq-section[b-rmv8tp5pt3] {
        height: 450px;
    }

    .faq-section[b-rmv8tp5pt3] {
        height: 300px;
    }

    .logo-darkicon[b-rmv8tp5pt3] {
        display: none;
    }
}

/* /Components/Shared/HeroTrustStrip.razor.rz.scp.css */
.hero-trust-strip[b-vxojjbr3b0] {
    width: min(75vw, 1500px);
    margin: 8px auto 0;
    padding: 16px 16px 12px;
    text-align: center;
    border-radius: 20px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.75) 100%);
    border: 1px solid rgba(96, 93, 255, 0.12);
    box-shadow: 0 12px 36px rgba(2, 0, 87, 0.08);
}

.hero-trust-strip__label[b-vxojjbr3b0] {
    margin: 0 0 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--tertiary-color-darker, #340662);
    opacity: 0.85;
}

.hero-trust-strip__logos[b-vxojjbr3b0] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-trust-strip__item[b-vxojjbr3b0] {
    flex: 0 1 auto;
}

.hero-trust-strip__logo[b-vxojjbr3b0] {
    display: block;
    width: auto;
    max-width: 110px;
    max-height: 44px;
    height: auto;
    object-fit: contain;
    opacity: 0.88;
    filter: grayscale(15%);
}

@media screen and (max-width: 768px) {
    .hero-trust-strip[b-vxojjbr3b0] {
        width: 95vw;
        margin-top: 16px;
    }

    .hero-trust-strip__logo[b-vxojjbr3b0] {
        max-width: 88px;
        max-height: 36px;
    }
}
/* /Components/Shared/ModuleWhyChooseUs.razor.rz.scp.css */
.tag[b-4ll4qwaj9y] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.module-why-choose-us[b-4ll4qwaj9y] {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.module-why-choose-us-inner[b-4ll4qwaj9y] {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(28px, 4vw, 52px);
    align-items: end;
    padding-top: 100px;
    padding-bottom: 100px;
}

.module-why-choose-us-left[b-4ll4qwaj9y] {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.module-why-choose-us-right[b-4ll4qwaj9y] {
    position: relative;
    z-index: 2;
    min-width: 0;
    width: 100%;
}

.overview-title[b-4ll4qwaj9y] {
    margin: 16px 0 10px 0;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.5px;
}

.overview-subtitle[b-4ll4qwaj9y] {
    margin: 0;
    max-width: 62ch;
    color: rgba(0,0,0,0.76);
    font-size: 16px;
    line-height: 1.75;
}

.overview-ataglance[b-4ll4qwaj9y] {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.atag-item[b-4ll4qwaj9y] {
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(0,0,0,0.03);
    outline: 1px solid rgba(0,0,0,0.06);
    color: rgba(0,0,0,0.74);
}

.overview-proof[b-4ll4qwaj9y] {
    margin-top: 22px;
}

.overview-proof h3[b-4ll4qwaj9y] {
    margin: 0 0 12px 0;
    font-size: clamp(1.05rem, 2.1vw, 1.15rem);
    letter-spacing: 0.02em;
    color: var(--primary-color-darkest);
}

.overview-proof-list[b-4ll4qwaj9y] {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.overview-proof-card[b-4ll4qwaj9y] {
    margin: 0;
    padding: 14px 16px;
    border-radius: 18px;
    text-align: left;
    color: unset;
    background: rgba(255, 255, 255, 0.55);
    outline: 1px solid rgba(0,0,0,0.07);
}

.overview-proof-card__title[b-4ll4qwaj9y] {
    display: block;
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--primary-color-darkest);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.overview-proof-card__text[b-4ll4qwaj9y] {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(0,0,0,0.74);
}

.overview-links[b-4ll4qwaj9y] {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.overview-links a[b-4ll4qwaj9y] {
    text-decoration: none;
    color: var(--tertiary-color-darker);
    font-weight: 700;
    border-bottom: 1px solid transparent;
}

.overview-links a:hover[b-4ll4qwaj9y] {
    border-bottom-color: var(--tertiary-color-darker);
}

.feature-cards[b-4ll4qwaj9y] {
    display: grid;
    gap: 14px;
}

.feature-card[b-4ll4qwaj9y] {
    border-radius: 22px;
    padding: 16px 16px;
    color: unset;
}

.feature-title[b-4ll4qwaj9y] {
    font-weight: 800;
    letter-spacing: 0.2px;
    margin-bottom: 6px;
}

.feature-text[b-4ll4qwaj9y] {
    color: rgba(0,0,0,0.74);
    line-height: 1.7;
}

.overview-metrics[b-4ll4qwaj9y] {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.overview-metrics--rich[b-4ll4qwaj9y] {
    gap: clamp(14px, 2vw, 18px);
    align-items: stretch;
}

.metric-card[b-4ll4qwaj9y] {
    border-radius: 20px;
    padding: clamp(14px, 2.2vw, 18px);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px 14px;
    align-items: start;
    text-align: left;
}

/* Stacked layout: title â†’ description â†’ metric visual at bottom */
.metric-card--stacked[b-4ll4qwaj9y] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(1rem, 2.4vw, 1.35rem);
    min-height: clamp(320px, 48vh, 420px);
    padding: clamp(16px, 2.5vw, 20px);
    grid-template-columns: unset;
    align-items: center;
}

.metric-card__heading[b-4ll4qwaj9y] {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.metric-card__title[b-4ll4qwaj9y] {
    margin: 0;
    font-size: clamp(0.88rem, 1.25vw, 0.98rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.38;
    color: var(--primary-color-darkest);
}

.metric-card__desc[b-4ll4qwaj9y] {
    margin: 0;
    font-size: clamp(0.84rem, 1.15vw, 0.9rem);
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.72);
}

.metric-card__bottom[b-4ll4qwaj9y] {
    margin-top: auto;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
}

.metric-card__bottom--arrow[b-4ll4qwaj9y] {
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.metric-card__bottom--hours[b-4ll4qwaj9y] {
    gap: 0.65rem;
}

.metric-card__bottom--hours .metric-value--hours[b-4ll4qwaj9y] {
    text-align: center;
}

.metric-card__bottom--ring[b-4ll4qwaj9y] {
    align-items: center;
}

.metric-card__bottom--default[b-4ll4qwaj9y] {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
}

.metric-card__value-wrap[b-4ll4qwaj9y] {
    min-width: 0;
    flex: 1;
}

/* ---- Default tile (icon + value, stacked header above) ---- */
.metric-card--default-tile[data-visual="default"][b-4ll4qwaj9y] {
    grid-template-columns: unset;
}

.metric-card__icon[b-4ll4qwaj9y] {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(
        145deg,
        color-mix(in srgb, var(--secondary-color) 35%, white),
        color-mix(in srgb, var(--primary-color) 28%, white)
    );
    color: var(--primary-color-darkest);
    box-shadow: 0 10px 22px rgba(2, 0, 87, 0.08);
}

.metric-icon-svg[b-4ll4qwaj9y] {
    width: 22px;
    height: 22px;
}

.metric-card__body[b-4ll4qwaj9y] {
    min-width: 0;
}

.metric-card--bolt .metric-card__icon[b-4ll4qwaj9y] {
    background: linear-gradient(
        145deg,
        color-mix(in srgb, var(--tertiary-color) 38%, white),
        color-mix(in srgb, var(--secondary-color) 26%, white)
    );
}

.metric-card--calendar .metric-card__icon[b-4ll4qwaj9y] {
    background: linear-gradient(
        145deg,
        color-mix(in srgb, var(--primary-color) 30%, white),
        color-mix(in srgb, var(--secondary-color) 22%, white)
    );
}

.metric-card--chart .metric-card__icon[b-4ll4qwaj9y] {
    background: linear-gradient(
        145deg,
        color-mix(in srgb, var(--secondary-color) 32%, white),
        color-mix(in srgb, var(--tertiary-color) 24%, white)
    );
}

/* ---- Arrow down (no-shows) ---- */
.metric-card--arrow-down[b-4ll4qwaj9y] {
    background: linear-gradient(
        165deg,
        color-mix(in srgb, #ffebee 65%, white),
        #fff 70%
    );
    outline: 1px solid rgba(198, 40, 40, 0.14);
    box-shadow: 0 18px 40px rgba(198, 40, 40, 0.07);
}

.metric-visual--arrow[b-4ll4qwaj9y] {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 132px;
    flex-shrink: 0;
}

.metric-arrow-svg[b-4ll4qwaj9y] {
    width: min(110px, 42vw);
    height: auto;
    filter: drop-shadow(0 10px 18px rgba(198, 40, 40, 0.15));
}

.metric-arrow-outline[b-4ll4qwaj9y] {
    vector-effect: non-scaling-stroke;
}

/* ---- Hours saved (positive green) ---- */
.metric-card--hours-bar[b-4ll4qwaj9y] {
    background: linear-gradient(
        165deg,
        color-mix(in srgb, #e8f5e9 55%, white),
        #fff
    );
    outline: 1px solid rgba(46, 125, 50, 0.16);
    box-shadow: 0 18px 36px rgba(46, 125, 50, 0.07);
}

.metric-visual--hours[b-4ll4qwaj9y] {
    padding: 4px 0 2px;
    width: 100%;
}

.metric-hours__viz[b-4ll4qwaj9y] {
    position: relative;
    height: 18px;
    border-radius: 999px;
    overflow: hidden;
}

.metric-hours__track[b-4ll4qwaj9y] {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: color-mix(in srgb, #c8e6c9 35%, rgba(0, 0, 0, 0.05));
}

.metric-hours__fill[b-4ll4qwaj9y] {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    transform-origin: left center;
    transform: scaleX(var(--metric-bar-p, 0));
    background: linear-gradient(
        90deg,
        #81c784,
        #43a047 55%,
        #2e7d32
    );
    transition: none;
}

.metric-hours__ticks[b-4ll4qwaj9y] {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 2px;
    pointer-events: none;
}

.metric-hours__ticks span[b-4ll4qwaj9y] {
    width: 1px;
    margin-top: 3px;
    height: 12px;
    background: rgba(255, 255, 255, 0.55);
    opacity: 0.9;
}

/* ---- 24/7 ring ---- */
.metric-card--ring-247[b-4ll4qwaj9y] {
    background: radial-gradient(
            circle at 30% 20%,
            color-mix(in srgb, var(--secondary-color) 22%, white),
            transparent 55%
        ),
        linear-gradient(
            165deg,
            color-mix(in srgb, var(--primary-color) 12%, white),
            #fff
        );
    outline: 1px solid rgba(63, 81, 181, 0.12);
    box-shadow: 0 18px 42px rgba(40, 53, 147, 0.07);
}

.metric-visual--ring[b-4ll4qwaj9y] {
    position: relative;
    width: min(148px, 52vw);
    max-width: 100%;
    aspect-ratio: 1;
    margin: 0 auto;
    flex-shrink: 0;
}

.metric-ring-svg[b-4ll4qwaj9y] {
    width: 100%;
    height: 100%;
    display: block;
}

.metric-ring__arc[b-4ll4qwaj9y] {
    transition: none;
}

.metric-ring__center[b-4ll4qwaj9y] {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.metric-ring__badge[b-4ll4qwaj9y] {
    font-size: clamp(1.35rem, 3.5vw, 1.65rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    color: var(--primary-color-darkest);
    text-shadow: 0 2px 14px rgba(255, 255, 255, 0.9);
}

.metric-value[b-4ll4qwaj9y] {
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    line-height: 1.1;
    font-weight: 900;
    color: var(--primary-color-darkest);
}

.metric-value--stat[b-4ll4qwaj9y] {
    font-variant-numeric: tabular-nums;
}

.metric-value--arrow .metric-value__animated[b-4ll4qwaj9y] {
    color: rgb(229, 57, 53);
}

.metric-value--hours .metric-value__animated[b-4ll4qwaj9y] {
    color: #1b5e20;
}

.metric-label[b-4ll4qwaj9y] {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(0,0,0,0.68);
}

.metric-detail[b-4ll4qwaj9y] {
    margin: 2px 0 0 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(0,0,0,0.74);
}

@media (max-width: 980px) {
    .module-why-choose-us-inner[b-4ll4qwaj9y] {
        grid-template-columns: 1fr;
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .overview-ataglance[b-4ll4qwaj9y] {
        grid-template-columns: 1fr;
    }

    .overview-metrics[b-4ll4qwaj9y] {
        grid-template-columns: 1fr;
    }

    .metric-card--stacked[b-4ll4qwaj9y] {
        min-height: min(360px, 62vh);
    }
}

/* /Components/Shared/PageHeader.razor.rz.scp.css */
.page-header[b-vfpgrzk6e4] {
    width: 100%;
    position: relative;
    top: -160px;
    height: calc(75vh + 160px);
    margin-bottom: calc(-160px - -30vh);
    overflow: hidden;
}

    .page-header:has(.home-hero-layout)[b-vfpgrzk6e4] {
        overflow:unset;
    }

    .page-header__bg[b-vfpgrzk6e4] {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 100%;
        z-index: 0;
        overflow: hidden;
        /* Diagonal bottom (left lower → right higher); shared by blobs, gradient, and canvas */
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 5.2vw), 0 100%);
    }

/* Base gradient wash (blobs float on top) */
.page-header__gradient[b-vfpgrzk6e4] {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.82;
    background: linear-gradient(
        135deg,
        var(--ph-primary) 0%,
        var(--ph-secondary) 50%,
        var(--ph-tertiary) 100%);
}

html.js-animations-enabled .page-header__gradient[b-vfpgrzk6e4] {
    opacity: 0;
    animation: phGradientResolve-b-vfpgrzk6e4 1.1s cubic-bezier(0.22, 1, 0.36, 1) 1.45s forwards;
}

html.js-animations-enabled .page-header--armed-in-view .page-header__gradient[b-vfpgrzk6e4] {
    opacity: 0.82;
    animation: none;
}

@keyframes phGradientResolve-b-vfpgrzk6e4 {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.82;
    }
}

/* Phase 1: blobs pop in, then drift indefinitely on top of the gradient */
.page-header__blob-fill[b-vfpgrzk6e4] {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: visible;
    background: transparent;
}

.page-header__blob[b-vfpgrzk6e4] {
    position: absolute;
    border-radius: 50%;
    opacity: 1;
    transform: scale(1);
    pointer-events: none;
    filter: blur(36px);
    will-change: transform, opacity;
}

html.js-animations-enabled .page-header__blob[b-vfpgrzk6e4] {
    opacity: 0;
    transform: scale(0);
}

html.js-animations-enabled .page-header--armed-in-view .page-header__blob[b-vfpgrzk6e4] {
    opacity: 1;
    transform: scale(1);
    animation: none;
}

@keyframes phBlobPop-b-vfpgrzk6e4 {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    55% {
        opacity: 0.95;
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.page-header__blob--1[b-vfpgrzk6e4] {
    width: min(58vw, 520px);
    height: min(58vw, 520px);
    left: -12%;
    top: 0%;
    background: radial-gradient(circle at 40% 40%, var(--ph-primary) 0%, transparent 68%);
    animation:
        phBlobPop-b-vfpgrzk6e4 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards,
        phBlobDrift1-b-vfpgrzk6e4 24s ease-in-out 1.35s infinite;
}

.page-header__blob--2[b-vfpgrzk6e4] {
    width: min(50vw, 460px);
    height: min(50vw, 460px);
    left: 22%;
    top: -8%;
    background: radial-gradient(circle at 50% 50%, var(--ph-secondary) 0%, transparent 70%);
    animation:
        phBlobPop-b-vfpgrzk6e4 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards,
        phBlobDrift2-b-vfpgrzk6e4 28s ease-in-out 1.5s infinite;
}

.page-header__blob--3[b-vfpgrzk6e4] {
    width: min(54vw, 500px);
    height: min(54vw, 500px);
    right: -8%;
    top: 2%;
    background: radial-gradient(circle at 55% 45%, var(--ph-tertiary) 0%, transparent 68%);
    animation:
        phBlobPop-b-vfpgrzk6e4 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards,
        phBlobDrift3-b-vfpgrzk6e4 26s ease-in-out 1.55s infinite;
}

.page-header__blob--4[b-vfpgrzk6e4] {
    width: min(46vw, 420px);
    height: min(46vw, 420px);
    left: 8%;
    top: 28%;
    background: radial-gradient(circle at 45% 55%, var(--ph-secondary) 0%, transparent 72%);
    animation:
        phBlobPop-b-vfpgrzk6e4 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards,
        phBlobDrift4-b-vfpgrzk6e4 30s ease-in-out 1.7s infinite;
}

.page-header__blob--5[b-vfpgrzk6e4] {
    width: min(52vw, 480px);
    height: min(52vw, 480px);
    left: 38%;
    top: 22%;
    background: radial-gradient(circle at 50% 50%, var(--ph-primary) 0%, transparent 70%);
    animation:
        phBlobPop-b-vfpgrzk6e4 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards,
        phBlobDrift5-b-vfpgrzk6e4 27s ease-in-out 1.85s infinite;
}

.page-header__blob--6[b-vfpgrzk6e4] {
    width: min(44vw, 400px);
    height: min(44vw, 400px);
    right: 6%;
    top: 32%;
    background: radial-gradient(circle at 50% 50%, var(--ph-tertiary) 0%, transparent 72%);
    animation:
        phBlobPop-b-vfpgrzk6e4 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards,
        phBlobDrift6-b-vfpgrzk6e4 25s ease-in-out 2s infinite;
}

.page-header__blob--7[b-vfpgrzk6e4] {
    width: min(48vw, 440px);
    height: min(48vw, 440px);
    left: -6%;
    bottom: 4%;
    background: radial-gradient(circle at 50% 50%, var(--ph-primary) 0%, transparent 70%);
    animation:
        phBlobPop-b-vfpgrzk6e4 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.95s forwards,
        phBlobDrift7-b-vfpgrzk6e4 29s ease-in-out 2.1s infinite;
}

.page-header__blob--8[b-vfpgrzk6e4] {
    width: min(56vw, 500px);
    height: min(56vw, 500px);
    right: -10%;
    bottom: 0%;
    background: radial-gradient(circle at 50% 50%, var(--ph-secondary) 0%, var(--ph-tertiary) 35%, transparent 72%);
    animation:
        phBlobPop-b-vfpgrzk6e4 1.15s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards,
        phBlobDrift8-b-vfpgrzk6e4 31s ease-in-out 2.25s infinite;
}

@keyframes phBlobDrift1-b-vfpgrzk6e4 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
    33% { transform: translate(28px, -22px) scale(1.04); opacity: 1; }
    66% { transform: translate(-18px, 16px) scale(0.97); opacity: 1; }
}

@keyframes phBlobDrift2-b-vfpgrzk6e4 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
    40% { transform: translate(-24px, 20px) scale(1.03); opacity: 1; }
    70% { transform: translate(20px, -14px) scale(0.98); opacity: 1; }
}

@keyframes phBlobDrift3-b-vfpgrzk6e4 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
    35% { transform: translate(-30px, -16px) scale(1.05); opacity: 1; }
    65% { transform: translate(22px, 24px) scale(0.96); opacity: 1; }
}

@keyframes phBlobDrift4-b-vfpgrzk6e4 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
    50% { transform: translate(18px, 26px) scale(1.02); opacity: 1; }
    80% { transform: translate(-26px, -12px) scale(0.99); opacity: 1; }
}

@keyframes phBlobDrift5-b-vfpgrzk6e4 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
    30% { transform: translate(32px, 14px) scale(1.04); opacity: 1; }
    60% { transform: translate(-14px, -28px) scale(0.97); opacity: 1; }
}

@keyframes phBlobDrift6-b-vfpgrzk6e4 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
    45% { transform: translate(-20px, -24px) scale(1.03); opacity: 1; }
    75% { transform: translate(26px, 18px) scale(0.98); opacity: 1; }
}

@keyframes phBlobDrift7-b-vfpgrzk6e4 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
    38% { transform: translate(24px, 20px) scale(1.02); opacity: 1; }
    68% { transform: translate(-28px, -10px) scale(0.99); opacity: 1; }
}

@keyframes phBlobDrift8-b-vfpgrzk6e4 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
    42% { transform: translate(-22px, 18px) scale(1.05); opacity: 1; }
    72% { transform: translate(16px, -26px) scale(0.96); opacity: 1; }
}

.page-header__content[b-vfpgrzk6e4] {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    padding-top: 160px;
    box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
    .page-header__blob[b-vfpgrzk6e4] {
        animation: phBlobPop-b-vfpgrzk6e4 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
        opacity: 1;
        transform: scale(1);
    }

    .page-header__gradient[b-vfpgrzk6e4] {
        animation: none;
        opacity: 0.82;
    }
}

[b-vfpgrzk6e4].page-header .page-title {
    display: flex;
    text-align: center;
    flex-direction: column;
    font-size: 3rem;
    line-height: 40px;
    position: relative;
    width: 100%;
    height: 100%;
    justify-content: center;
    top: calc(70vh * 0.08);
    animation-delay: 2.35s;
    color: #fff;
    font-family: "Patua One", serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 3px;
}


[b-vfpgrzk6e4].page-header .modules {
    display: inline;
    font-weight: 900;
    letter-spacing: unset;
    font-size: 3.4rem;
    color: var(--tertiary-color-darker);
}

[b-vfpgrzk6e4].page-header h1 {
    font-weight: 900;
    font-size: 3.4rem;
    margin-bottom: 30px;
    animation-delay: 2.35s;
}

[b-vfpgrzk6e4].page-header .subheader {
    animation-delay: 2.6s;
}

[b-vfpgrzk6e4].page-header .modules li {
    display: none;
}

[b-vfpgrzk6e4].page-header .modules li.selected {
    display: unset;
}


@keyframes changeWord-b-vfpgrzk6e4 {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

ul[b-vfpgrzk6e4] {
    padding-left: unset !important;
}


@media screen and (max-width: 992px) {
    .page-header__blob[b-vfpgrzk6e4] {
        filter: blur(28px);
    }

    .page-header__bg[b-vfpgrzk6e4] {
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 7vw), 0 100%);
    }
}

@media screen and (max-width: 768px) {

    [b-vfpgrzk6e4].page-header h1 {
        font-size: 2.6rem;
    }

    [b-vfpgrzk6e4].page-header .modules {

        font-size: 2rem;
    }

    [b-vfpgrzk6e4].page-header .subheader {
        margin: 10px;
    }

    [b-vfpgrzk6e4].page-header .subheader h2 {
        font-size: 1.2rem;
    }
}


@media screen and (max-height: 450px) {

    [b-vfpgrzk6e4].page-header .page-title {
        line-height: 25px !important;
        top: calc(70vh * 0.16) !important;
    }
}

/* Homepage: readable hero copy quickly (LCP-friendly) */
.page-header--fast .page-header__gradient[b-vfpgrzk6e4] {
    animation: none;
    opacity: 0.82;
}

.page-header--fast:not(.page-header--home) .page-header__blob-fill[b-vfpgrzk6e4] {
    display: none;
}

[b-vfpgrzk6e4].page-header--fast .page-title {
    top: calc(70vh * 0.04);
}

[b-vfpgrzk6e4].page-header--fast .page-title h1 {
    animation-delay: 0.1s;
}

[b-vfpgrzk6e4].page-header--fast .subheader {
    animation-delay: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
    [b-vfpgrzk6e4].page-header--fast .page-title,
    [b-vfpgrzk6e4].page-header--fast .page-title h1,
    [b-vfpgrzk6e4].page-header--fast .page-title .subheader,
    [b-vfpgrzk6e4].page-header--fast .page-title .home-hero__kicker,
    [b-vfpgrzk6e4].page-header--fast .page-title .home-hero__outcome {
        animation: none !important;
        opacity: 1;
        transform: none;
        letter-spacing: normal;
    }
}

/* Home: instant gradient + blobs (drift only, no slow pop-in) */
.page-header--home.page-header--fast .page-header__gradient[b-vfpgrzk6e4] {
    animation: none;
    opacity: 0.82;
}

.page-header--home.page-header--fast .page-header__blob-fill[b-vfpgrzk6e4] {
    display: block;
}

.page-header--home.page-header--fast .page-header__blob[b-vfpgrzk6e4] {
    opacity: 1;
    transform: scale(1);
}

.page-header--home.page-header--fast .page-header__blob--1[b-vfpgrzk6e4] {
    animation: phBlobDrift1-b-vfpgrzk6e4 24s ease-in-out 0s infinite;
}

.page-header--home.page-header--fast .page-header__blob--2[b-vfpgrzk6e4] {
    animation: phBlobDrift2-b-vfpgrzk6e4 28s ease-in-out 0s infinite;
}

.page-header--home.page-header--fast .page-header__blob--3[b-vfpgrzk6e4] {
    animation: phBlobDrift3-b-vfpgrzk6e4 26s ease-in-out 0s infinite;
}

.page-header--home.page-header--fast .page-header__blob--4[b-vfpgrzk6e4] {
    animation: phBlobDrift4-b-vfpgrzk6e4 30s ease-in-out 0s infinite;
}

.page-header--home.page-header--fast .page-header__blob--5[b-vfpgrzk6e4] {
    animation: phBlobDrift5-b-vfpgrzk6e4 27s ease-in-out 0s infinite;
}

.page-header--home.page-header--fast .page-header__blob--6[b-vfpgrzk6e4] {
    animation: phBlobDrift6-b-vfpgrzk6e4 25s ease-in-out 0s infinite;
}

.page-header--home.page-header--fast .page-header__blob--7[b-vfpgrzk6e4] {
    animation: phBlobDrift7-b-vfpgrzk6e4 29s ease-in-out 0s infinite;
}

.page-header--home.page-header--fast .page-header__blob--8[b-vfpgrzk6e4] {
    animation: phBlobDrift8-b-vfpgrzk6e4 31s ease-in-out 0s infinite;
}

/* Homepage hero: H1 + glass panel side by side, vertically centred */
[b-vfpgrzk6e4].page-header--home.page-header--fast .page-title--home {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    min-height: 0;
    top: calc(75vh * 0.1);
    padding: 0 clamp(1.25rem, 5vw, 4rem) 1rem;
    letter-spacing: normal;
    font-size: inherit;
    line-height: 1.2;
    animation: none;
    opacity: 1;
}

[b-vfpgrzk6e4].page-header--home .home-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 65fr) minmax(0, 35fr);
    align-items: center;
    gap: clamp(1.25rem, 3.5vw, 2.75rem);
    width: min(80rem, 96vw);
    max-width: 100%;
    margin: 0 auto;
}

[b-vfpgrzk6e4].page-header--home .home-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    max-width: 100%;
}

/* Option A hero eyebrow row */
[b-vfpgrzk6e4].page-header--home .home-hero-eyebrow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
    margin: 0 0 1rem;
    font-family: "Noto Sans", sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

[b-vfpgrzk6e4].page-header--home .home-hero-eyebrow__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    color: #fff;
    background: rgba(2, 0, 87, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

[b-vfpgrzk6e4].page-header--home .home-hero-eyebrow__live {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

[b-vfpgrzk6e4].page-header--home .home-hero-eyebrow__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #5bffb0;
    box-shadow: 0 0 8px rgba(91, 255, 176, 0.65);
}

[b-vfpgrzk6e4].page-header--home .home-hero-eyebrow__audience {
    color: rgba(255, 255, 255, 0.72);
}

[b-vfpgrzk6e4].page-header--home .home-hero__h1-kicker {
    display: block;
    width: 100%;
    margin: 0 0 0.65rem;
    font-family: var(--font-family-body, "Segoe UI", system-ui, sans-serif);
    font-size: clamp(0.8rem, min(1.5vw, 1.8vh), 1.05rem);
    font-weight: 600;
    font-style: normal;
    line-height: 1.35;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.88);
    text-wrap: balance;
}

[b-vfpgrzk6e4].page-header--home .home-hero__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    margin: 0;
    padding: 0;
    font-family: "Patua One", serif;
    font-weight: 400;
    color: #fff;
    animation: none;
    opacity: 1;
}

[b-vfpgrzk6e4].page-header--home .home-hero__title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.2rem 0.45rem;
    line-height: 1.05;
}

[b-vfpgrzk6e4].page-header--home .home-hero__title-row--second {
    margin-top: 0.05rem;
}

[b-vfpgrzk6e4].page-header--home .home-hero__title-setup,
[b-vfpgrzk6e4].page-header--home .home-hero__title-mid {
    font-family: "Patua One", serif;
    font-size: clamp(1.65rem, min(4.8vw, 5.2vh), 3.35rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0.01em;
    color: #fff;
}

[b-vfpgrzk6e4].page-header--home .home-hero__module-highlight {
    --module-splatter-width: 155%;
    --module-splatter-height: 205%;
    --module-splatter-offset-x: -19%;
    --module-splatter-offset-y: -35%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(12ch, 100%);
    padding: 0.22em 0.72em 0.28em;
    margin: 0.05em 0;
    vertical-align: middle;
    position: relative;
    isolation: isolate;
    transform: rotate(-1.5deg);
    background: transparent;
}

[b-vfpgrzk6e4].page-header--home .home-hero__module-highlight::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: var(--module-splatter-offset-x);
    top: var(--module-splatter-offset-y);
    width: var(--module-splatter-width);
    height: var(--module-splatter-height);
    background-image: url("/images/module-splatter.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 170%;
    pointer-events: none;
}

[b-vfpgrzk6e4].page-header--home .feature-loop--highlight-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

[b-vfpgrzk6e4].page-header--home .feature-loop--highlight-box .modules {
    display: inline;
    list-style: none;
    padding: 0;
    margin: 0;
}

[b-vfpgrzk6e4].page-header--home .feature-loop--highlight-box .modules li {
    display: none;
    margin: 0;
    padding: 0;
}

[b-vfpgrzk6e4].page-header--home .feature-loop--highlight-box .modules li.selected {
    display: inline;
    font-family: "Patua One", serif;
    font-size: clamp(1.55rem, min(4.2vw, 4.6vh), 3rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #fff;
    white-space: nowrap;
}

[b-vfpgrzk6e4].page-header--home .home-hero__accent-em {
    display: block;
    margin-top: 0.35rem;
    font-family: var(--font-instrument-serif), Georgia, serif;
    font-style: italic;
    font-weight: 400;
    line-height: 1.2;
    color: var(--tertiary-color);
    font-size: clamp(1.65rem, min(4.8vw, 5.2vh), 3.35rem);
    letter-spacing: -0.045em;
}

/* Glass panel in hero (beside H1) */
[b-vfpgrzk6e4].page-header--home .home-hero-glass {
    width: 100%;
    padding: 1.25rem 1.4rem 1.15rem;
    border-radius: 22px;
    text-align: left;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.22) 0%,
        rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow:
        0 22px 50px rgba(2, 0, 87, 0.28),
        0 0 0 1px rgba(96, 93, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
}

[b-vfpgrzk6e4].page-header--home .home-hero__lead {
    margin: 0 0 1rem;
    padding: 0 0 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    font-family: var(--font-family-body, "Segoe UI", system-ui, sans-serif);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 500;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.96);
    text-wrap: pretty;
}

[b-vfpgrzk6e4].page-header--home .home-hero__lead strong {
    font-weight: 800;
    color: #fff;
}

[b-vfpgrzk6e4].page-header--home .home-hero__lead-em {
    display: block;
    margin-top: 0.35rem;
    font-family: var(--font-instrument-serif), Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(0.95rem, 1.5vw, 1.08rem);
    color: var(--tertiary-color);
}

[b-vfpgrzk6e4].page-header--home .home-hero-glass__eyebrow {
    margin: 0 0 0.75rem;
    font-family: var(--font-family-body, "Segoe UI", system-ui, sans-serif);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

[b-vfpgrzk6e4].page-header--home .home-hero-glass__metrics {
    margin: 0 0 1rem;
    padding: 0 0 0 1.1rem;
    list-style: disc;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

[b-vfpgrzk6e4].page-header--home .home-hero-glass__metric {
    padding-left: 0.15rem;
}

[b-vfpgrzk6e4].page-header--home .home-hero-glass__metric::marker {
    color: var(--tertiary-color-darker);
    font-size: 1.1em;
}

[b-vfpgrzk6e4].page-header--home .home-hero-glass__metric strong {
    display: block;
    font-family: var(--font-family-body, "Segoe UI", system-ui, sans-serif);
    font-size: clamp(1rem, 1.55vw, 1.12rem);
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
}

[b-vfpgrzk6e4].page-header--home .home-hero-glass__metric span {
    display: block;
    margin-top: 0.15rem;
    font-family: var(--font-family-body, "Segoe UI", system-ui, sans-serif);
    font-size: clamp(0.84rem, 1.25vw, 0.95rem);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

[b-vfpgrzk6e4].page-header--home .home-hero__actions {
    display: flex;
    flex-direction: row;
    gap: 0.55rem;
}

[b-vfpgrzk6e4].page-header--home .home-hero__actions > button{
    flex: 1;
}

[b-vfpgrzk6e4].page-header--home .home-hero__btn {
    min-width: 0;
    width: 100%;
    height: 46px;
    padding: 0 1.25rem;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    border-radius: 999px;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(2, 0, 87, 0.22);
}

[b-vfpgrzk6e4].page-header--home .home-hero__watch-link {
    align-self: center;
    background: none;
    border: none;
    padding: 0.25rem 0;
    font-family: var(--font-family-body, "Segoe UI", system-ui, sans-serif);
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    cursor: pointer;
}

[b-vfpgrzk6e4].page-header--home .home-hero__watch-link:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: #fff;
}

@media screen and (max-height: 900px) {
    .page-header:has(.home-hero-layout)[b-vfpgrzk6e4] {
        height: calc(68vh + 160px);
        margin-bottom: calc(-160px - -24vh);
    }

    [b-vfpgrzk6e4].page-header--home.page-header--fast .page-title--home {
        top: calc(68vh * 0.06);
        padding-bottom: 0.5rem;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero__title-setup,
    [b-vfpgrzk6e4].page-header--home .home-hero__title-mid,
    [b-vfpgrzk6e4].page-header--home .home-hero__accent-em {
        font-size: clamp(1.45rem, min(3.8vw, 4.6vh), 2.5rem);
    }

    [b-vfpgrzk6e4].page-header--home .feature-loop--highlight-box .modules li.selected {
        font-size: clamp(1.35rem, min(3.5vw, 4.1vh), 2.25rem);
    }

    [b-vfpgrzk6e4].page-header--home .home-hero__h1-kicker {
        margin-bottom: 0.45rem;
        font-size: clamp(0.75rem, min(1.35vw, 1.55vh), 0.95rem);
    }

    [b-vfpgrzk6e4].page-header--home .home-hero-glass {
        padding: 0.8rem 1rem 0.75rem;
        border-radius: 18px;
        align-self: start;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero__lead {
        margin-bottom: 0.55rem;
        padding-bottom: 0.55rem;
        font-size: clamp(0.82rem, min(1.45vw, 1.55vh), 0.98rem);
        line-height: 1.42;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero__lead-em {
        margin-top: 0.2rem;
        font-size: clamp(0.82rem, min(1.2vw, 1.35vh), 0.92rem);
    }

    [b-vfpgrzk6e4].page-header--home .home-hero-glass__eyebrow {
        margin-bottom: 0.45rem;
        font-size: 0.64rem;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero-glass__metrics {
        margin-bottom: 0.6rem;
        gap: 0.5rem;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero-glass__metric strong {
        font-size: clamp(0.82rem, min(1.2vw, 1.35vh), 0.92rem);
    }

    [b-vfpgrzk6e4].page-header--home .home-hero-glass__metric span {
        font-size: clamp(0.72rem, min(1vw, 1.15vh), 0.82rem);
        line-height: 1.32;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero__btn {
        height: 40px;
        font-size: 0.84rem;
        padding: 0 1rem;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero__watch-link {
        font-size: 0.8rem;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero__actions {
        gap: 0.4rem;
    }
}

@media screen and (max-height: 900px) and (min-width: 769px) {
    [b-vfpgrzk6e4].page-header--home .home-hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, min(20rem, 31vw));
        align-items: start;
        gap: clamp(0.65rem, 1.8vh, 1.1rem);
    }
}

@media screen and (max-height: 780px) {
    .page-header:has(.home-hero-layout)[b-vfpgrzk6e4] {
        height: calc(62vh + 140px);
        margin-bottom: calc(-140px - -20vh);
    }

    [b-vfpgrzk6e4].page-header--home.page-header--fast .page-title--home {
        top: calc(62vh * 0.04);
    }

    [b-vfpgrzk6e4].page-header--home .home-hero__title-setup,
    [b-vfpgrzk6e4].page-header--home .home-hero__title-mid,
    [b-vfpgrzk6e4].page-header--home .home-hero__accent-em {
        font-size: clamp(1.25rem, min(3.2vw, 4vh), 2.1rem);
    }

    [b-vfpgrzk6e4].page-header--home .feature-loop--highlight-box .modules li.selected {
        font-size: clamp(1.15rem, min(3vw, 3.6vh), 1.9rem);
    }

    [b-vfpgrzk6e4].page-header--home .home-hero-eyebrow {
        margin-bottom: 0.65rem;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero-glass {
        padding: 0.6rem 0.85rem 0.65rem;
        border-radius: 16px;
        align-self: start;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero__lead {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
        font-size: clamp(0.78rem, min(1.25vw, 1.35vh), 0.88rem);
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero__lead-em {
        display: none;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero-glass__eyebrow {
        display: none;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero-glass__metrics {
        margin-bottom: 0;
        gap: 0.4rem 0.75rem;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero-glass__metric strong {
        font-size: clamp(0.76rem, min(1.05vw, 1.2vh), 0.86rem);
    }

    [b-vfpgrzk6e4].page-header--home .home-hero-glass__metric span {
        font-size: clamp(0.68rem, min(0.9vw, 1.05vh), 0.76rem);
        margin-top: 0.08rem;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero__btn {
        height: 36px;
        font-size: 0.8rem;
        padding: 0 0.85rem;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero__watch-link {
        font-size: 0.76rem;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero__actions {
        gap: 0.3rem;
    }
}

@media screen and (max-height: 780px) and (min-width: 769px) {
    [b-vfpgrzk6e4].page-header--home .home-hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, min(18rem, 28vw));
        align-items: start;
        gap: clamp(0.5rem, 1.4vh, 0.85rem);
    }

    [b-vfpgrzk6e4].page-header--home .home-hero-glass {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        row-gap: 0.45rem;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero__lead {
        grid-row: 1;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero-glass__metrics {
        grid-row: 2;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-left: 0;
        list-style: none;
        margin-bottom: 0.15rem;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero-glass__metric::marker {
        content: none;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero__actions {
        grid-row: 3;
        flex-direction: row;
        justify-content: stretch;
        align-self: stretch;
        min-width: 0;
        width: 100%;
    }
}

@media screen and (max-width: 992px) {
    [b-vfpgrzk6e4].page-header--home .home-hero-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        width: min(100%, 94vw);
        margin-bottom: 200px;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero-glass {
        bottom: -400px;
        background: var(--primary-color-lighter);
        margin-top: 50px;
        margin-bottom: -50px;
    }
}

@media screen and (max-width: 768px) {
    .page-header.page-header--home[b-vfpgrzk6e4] {
        height: auto;
        margin-bottom: 1.25rem;
    }

    .page-header.page-header--home .page-header__content[b-vfpgrzk6e4] {
        height: auto;
    }

    [b-vfpgrzk6e4].page-header--home.page-header--fast .page-title--home {
        top: 0;
        padding: 0.5rem 1.25rem 1.25rem;
        align-items: stretch;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero-copy {
        width: 100%;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero__title-setup,
    [b-vfpgrzk6e4].page-header--home .home-hero__title-mid {
        font-size: clamp(1.65rem, 7vw, 2.25rem);
    }

    [b-vfpgrzk6e4].page-header--home .feature-loop--highlight-box .modules li.selected {
        font-size: clamp(1.45rem, 6vw, 2rem);
    }

    [b-vfpgrzk6e4].page-header--home .home-hero__module-highlight {
        transform: rotate(-1deg);
        padding: 0.22em 0.6em 0.26em;
        --module-splatter-width: 132%;
        --module-splatter-height: 195%;
        --module-splatter-offset-x: -10%;
        --module-splatter-offset-y: -31%;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero-eyebrow {
        gap: 0.5rem 0.75rem;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero-eyebrow__audience {
        display: none;
    }

    [b-vfpgrzk6e4].page-header--home .home-hero-glass {
        position: static;
        bottom: auto;
        margin-top: 0.5rem;
        background: linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.22) 0%,
            rgba(255, 255, 255, 0.1) 100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-header--home.page-header--fast .page-header__blob[b-vfpgrzk6e4] {
        animation: none !important;
        opacity: 1;
        transform: scale(1);
    }
}
/* /Components/Shared/PromoSpotsBadge.razor.rz.scp.css */
.promo-spots-badge[b-5yfods02hv] {
    --promo-spots-pulse: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    flex-shrink: 0;
}

.promo-spots-badge--standard[b-5yfods02hv] {
    padding: 0.42rem 0.9rem;
    font-size: 0.82rem;
}

.promo-spots-badge--prominent[b-5yfods02hv] {
    padding: 0.55rem 1.15rem;
    font-size: clamp(0.88rem, 1.8vw, 1rem);
    gap: 0.65rem;
}

.promo-spots-badge--on-light[b-5yfods02hv] {
    color: var(--primary-color-darkest);
    background: linear-gradient(
        135deg,
        #fff 0%,
        color-mix(in srgb, var(--tertiary-color) 16%, #fff) 100%
    );
    border: 1px solid color-mix(in srgb, var(--primary-color) 35%, transparent);
    box-shadow:
        0 4px 18px color-mix(in srgb, var(--primary-color) 14%, transparent),
        inset 0 1px 0 color-mix(in srgb, #fff 80%, transparent);
}

.promo-spots-badge--on-dark[b-5yfods02hv] {
    --promo-spots-pulse: #fff;
    color: var(--primary-color-darkest);
    background: #fff;
    border: 1px solid color-mix(in srgb, #fff 65%, transparent);
    box-shadow:
        0 6px 22px rgba(15, 23, 42, 0.22),
        0 0 0 1px color-mix(in srgb, #fff 40%, transparent);
}

.promo-spots-badge--on-dark .promo-spots-badge__indicator[b-5yfods02hv] {
    background: var(--primary-color);
}

.promo-spots-badge__indicator[b-5yfods02hv] {
    flex: 0 0 auto;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--promo-spots-pulse);
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--promo-spots-pulse) 50%, transparent);
    animation: promo-spots-badge-pulse-b-5yfods02hv 2.4s ease-in-out infinite;
}

.promo-spots-badge--prominent .promo-spots-badge__indicator[b-5yfods02hv] {
    width: 0.72rem;
    height: 0.72rem;
}

.promo-spots-badge__text[b-5yfods02hv] {
    display: inline-flex;
    align-items: baseline;
    gap: 0.3rem;
}

.promo-spots-badge__count[b-5yfods02hv] {
    font-size: 1.15em;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.promo-spots-badge--prominent .promo-spots-badge__count[b-5yfods02hv] {
    font-size: 1.25em;
}

.promo-spots-badge__label[b-5yfods02hv] {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.88em;
}

@keyframes promo-spots-badge-pulse-b-5yfods02hv {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 color-mix(in srgb, var(--promo-spots-pulse) 55%, transparent);
    }

    50% {
        opacity: 0.55;
        transform: scale(0.9);
        box-shadow: 0 0 0 0.45rem color-mix(in srgb, var(--promo-spots-pulse) 0%, transparent);
    }
}
/* /Components/Shared/SectionBrand.razor.rz.scp.css */
/* Shared branded section: gradient wash + headline + slot content (see FeaturedReviews pattern). */
.section--brand[b-wh1952pfkh] {
    --section-brand-pad: clamp(1.5rem, 4vw, 3.5rem);
    position: relative;
    overflow: hidden;
    padding: var(--section-brand-pad) 0;
    width: 100%;
    background:
        linear-gradient(140deg,
            color-mix(in srgb, var(--primary-color) 10%, white 90%) 0%,
            color-mix(in srgb, var(--secondary-color) 10%, white 90%) 50%,
            color-mix(in srgb, var(--tertiary-color) 10%, white 90%) 100%);
}

.section-brand__bg[b-wh1952pfkh] {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(900px 520px at 18% 18%, color-mix(in srgb, var(--primary-color) 50%, transparent), transparent 58%), radial-gradient(900px 520px at 78% 42%, color-mix(in srgb, var(--secondary-color) 60%, transparent), transparent 60%), radial-gradient(800px 480px at 50% 88%, color-mix(in srgb, var(--tertiary-color) 60%, transparent), transparent 55%);
    opacity: 1;
}

.section-brand__head[b-wh1952pfkh] {
    position: relative;
    z-index: 1;
    max-width: 80ch;
    margin: 0 auto;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    text-align: left;
    width: min(1200px, 92vw);
}

.section-brand__kicker[b-wh1952pfkh] {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--tertiary-color-darker);
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    box-shadow: 0 2px 16px rgba(2, 0, 87, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

[b-wh1952pfkh] .section-brand__title {
    margin: 14px 0 8px 0;
    font-family: "Patua One", serif;
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--primary-color-darkest);
}

[b-wh1952pfkh] .section-brand__title h1,
[b-wh1952pfkh] .section-brand__title h2,
[b-wh1952pfkh] .section-brand__title h3 {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    font-weight: inherit;
    color: inherit;
}

[b-wh1952pfkh] .section-brand__title .hero-highlight,
[b-wh1952pfkh] .section-brand__title .section-brand__highlight {
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 50%, var(--tertiary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-brand__subtitle[b-wh1952pfkh] {
    margin: 0;
    max-width: 75ch;
    line-height: 1.7;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: var(--main-content-color-dark);
}

.section-brand__content[b-wh1952pfkh] {
    position: relative;
    z-index: 1;
    width: min(1200px, 92vw);
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .section-brand__head[b-wh1952pfkh] {
        text-align: left;
    }

    [b-wh1952pfkh] .section-brand__title {
        font-size: clamp(1.35rem, 5.2vw, 1.65rem);
        line-height: 1.18;
        letter-spacing: -0.02em;
    }
}

/* Branded variants: different tint and blob placement */
.section--brand--primary[b-wh1952pfkh] {
    background: linear-gradient(155deg,
        color-mix(in srgb, var(--primary-color) 16%, white 84%) 0%,
        white 55%,
        color-mix(in srgb, var(--secondary-color) 8%, white 92%) 100%);
}

.section--brand--primary .section-brand__bg[b-wh1952pfkh] {
    background:
        radial-gradient(720px 480px at 88% 12%, color-mix(in srgb, var(--primary-color) 45%, transparent), transparent 58%),
        radial-gradient(640px 400px at 20% 78%, color-mix(in srgb, var(--secondary-color) 35%, transparent), transparent 55%);
}

.section--brand--tertiary[b-wh1952pfkh] {
    background: linear-gradient(200deg,
        white 0%,
        color-mix(in srgb, var(--tertiary-color) 14%, white 86%) 45%,
        color-mix(in srgb, var(--primary-color) 8%, white 92%) 100%);
}

.section--brand--tertiary .section-brand__bg[b-wh1952pfkh] {
    background:
        radial-gradient(800px 500px at 8% 85%, color-mix(in srgb, var(--tertiary-color) 50%, transparent), transparent 58%),
        radial-gradient(600px 380px at 92% 28%, color-mix(in srgb, var(--primary-color) 30%, transparent), transparent 55%);
}

.section--brand--cool[b-wh1952pfkh] {
    background: linear-gradient(125deg,
        color-mix(in srgb, var(--secondary-color) 12%, white 88%) 0%,
        white 40%,
        color-mix(in srgb, var(--primary-color) 10%, white 90%) 100%);
}

.section--brand--cool .section-brand__bg[b-wh1952pfkh] {
    background:
        radial-gradient(760px 460px at 72% 68%, color-mix(in srgb, var(--secondary-color) 42%, transparent), transparent 60%),
        radial-gradient(520px 340px at 15% 22%, color-mix(in srgb, var(--primary-color) 28%, transparent), transparent 52%);
}

/* Bright brand field: saturated colour with mesh overlay and light typography */
.section--brand--vivid[b-wh1952pfkh] {
    --section-brand-vivid-text: rgba(255, 255, 255, 0.96);
    --section-brand-vivid-text-muted: rgba(255, 255, 255, 0.82);
    --section-brand-vivid-surface: rgba(255, 255, 255, 0.12);
    --section-brand-vivid-border: rgba(255, 255, 255, 0.22);
    --section-brand-pad: clamp(2.5rem, 5vw, 4.25rem);
    background: linear-gradient(
        128deg,
        var(--primary-color-darker) 0%,
        var(--primary-color) 38%,
        color-mix(in srgb, var(--tertiary-color) 72%, var(--primary-color) 28%) 72%,
        var(--tertiary-color-darker) 100%);
}

.section--brand--vivid .section-brand__bg[b-wh1952pfkh] {
    position: absolute;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.14) 0%, transparent 42%, rgba(2, 0, 87, 0.22) 100%),
        radial-gradient(ellipse 95% 70% at 8% 92%, rgba(255, 255, 255, 0.18), transparent 55%),
        radial-gradient(ellipse 80% 55% at 92% 8%, rgba(173, 99, 246, 0.45), transparent 52%),
        radial-gradient(640px 420px at 55% 38%, rgba(93, 168, 255, 0.35), transparent 65%);
}

.section--brand--vivid .section-brand__bg[b-wh1952pfkh]::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.55;
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.section--brand--vivid .section-brand__kicker[b-wh1952pfkh] {
    color: var(--section-brand-vivid-text);
    background: var(--section-brand-vivid-surface);
    border-color: var(--section-brand-vivid-border);
    box-shadow: 0 4px 20px rgba(2, 0, 87, 0.18);
}

.section--brand--vivid[b-wh1952pfkh]  .section-brand__title,
.section--brand--vivid[b-wh1952pfkh]  .section-brand__title h2 {
    color: var(--section-brand-vivid-text);
}

.section--brand--vivid .section-brand__subtitle[b-wh1952pfkh] {
    color: var(--section-brand-vivid-text-muted);
}
/* /Components/Shared/SectionLight.razor.rz.scp.css */
.section--light[b-rue2ypu9sm] {
    --section-light-pad: clamp(2.5rem, 5vw, 4rem);
    position: relative;
    overflow: hidden;
    padding: var(--section-light-pad) 0;
    width: 100%;
    background: #fff;
}

.section-light__accent[b-rue2ypu9sm] {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.section--light--primary .section-light__accent[b-rue2ypu9sm] {
    top: 0;
    right: 0;
    width: min(42vw, 520px);
    height: 100%;
    background: linear-gradient(
        225deg,
        color-mix(in srgb, var(--primary-color) 14%, white 86%) 0%,
        transparent 72%);
}

.section--light--tertiary .section-light__accent[b-rue2ypu9sm] {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(
        0deg,
        color-mix(in srgb, var(--tertiary-color) 12%, white 88%) 0%,
        transparent 100%);
}

.section--light--soft .section-light__accent[b-rue2ypu9sm] {
    inset: 0;
    background:
        radial-gradient(680px 380px at 12% 20%, color-mix(in srgb, var(--secondary-color) 8%, white 92%), transparent 58%),
        radial-gradient(560px 320px at 88% 75%, color-mix(in srgb, var(--primary-color) 6%, white 94%), transparent 55%);
}

.section-light__head[b-rue2ypu9sm] {
    position: relative;
    z-index: 1;
    max-width: 80ch;
    margin: 0 auto clamp(1.5rem, 3vw, 2.25rem);
    text-align: left;
    width: min(1200px, 92vw);
}

.section-light__kicker[b-rue2ypu9sm] {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--tertiary-color-darker);
    background: color-mix(in srgb, var(--tertiary-color) 8%, white 92%);
    border: 1px solid color-mix(in srgb, var(--tertiary-color) 18%, white 82%);
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
}

[b-rue2ypu9sm] .section-light__title {
    margin: 14px 0 8px 0;
    font-family: "Patua One", serif;
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--primary-color-darkest);
}

[b-rue2ypu9sm] .section-light__title h1,
[b-rue2ypu9sm] .section-light__title h2,
[b-rue2ypu9sm] .section-light__title h3 {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    font-weight: inherit;
    color: inherit;
}

.section-light__subtitle[b-rue2ypu9sm] {
    margin: 0;
    max-width: 75ch;
    line-height: 1.7;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: var(--main-content-color-dark);
}

.section-light__content[b-rue2ypu9sm] {
    position: relative;
    z-index: 1;
    width: min(1200px, 92vw);
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    [b-rue2ypu9sm] .section-light__title {
        font-size: clamp(1.35rem, 5.2vw, 1.65rem);
        line-height: 1.18;
        letter-spacing: -0.02em;
    }
}
/* /Components/Shared/SubNavChips.razor.rz.scp.css */

.page-subnav[b-xlzmgcrniq] {
    width: -webkit-fill-available;
    position: relative;
    top: auto;
    z-index: 1000;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.page-subnav.page-subnav--fixed[b-xlzmgcrniq] {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.page-subnav-inner[b-xlzmgcrniq] {
    position: relative;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px;
    max-width: 85vw;
}

.page-subnav a.chip[b-xlzmgcrniq] {
    position: relative;
    z-index: 2;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 999px;
    color: rgba(11,27,34,0.86);
    background: rgba(255,255,255,0.12);
    outline: 1px solid rgba(255,255,255,0.20);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 13px;
    opacity: 0.95;
    transition: background 420ms cubic-bezier(0.22, 1, 0.36, 1), color 420ms cubic-bezier(0.22, 1, 0.36, 1), outline-color 420ms cubic-bezier(0.22, 1, 0.36, 1), transform 220ms ease, opacity 220ms ease;
}

.page-subnav a.chip:hover[b-xlzmgcrniq] {
    opacity: 1;
    transform: translateY(-1px);
}

    .page-subnav a.chip.active[b-xlzmgcrniq] {
        background: var(--gradient-brand);
        color: rgba(255, 255, 255, 0.98);
        outline-color: rgba(255, 255, 255, 0.35);
        box-shadow: 0 16px 44px rgba(0,0,0,0.14);
    }

.subnav-pill[b-xlzmgcrniq] {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 10px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--secondary-color) 10%, var(--primary-color) 50%, var(--tertiary-color) 90%);
    outline: 1px solid rgba(255,255,255,0.35);
    box-shadow: 0 16px 44px rgba(0,0,0,0.14);
    transform: translateX(0px);
    width: 0px;
    transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), width 520ms cubic-bezier(0.22, 1, 0.36, 1), top 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
    .page-subnav a.chip[b-xlzmgcrniq],
    .subnav-pill[b-xlzmgcrniq] {
        transition: none !important;
    }
}

@media (max-width: 980px) {
    .page-subnav a.chip[b-xlzmgcrniq] {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .page-subnav[b-xlzmgcrniq] {
        display: none;
    }
}
/* /Components/Shared/ThemeWatermarkBackground.razor.rz.scp.css */
/* Masked logo silhouette tinted with theme colour (PNG with transparency works best). */
.theme-watermark-bg[b-0j52euy8k7] {
    position: absolute;
    width: 520px;
    height: 520px;
    pointer-events: none;
    opacity: 0.09;
    background-color: var(--theme-watermark-tint, var(--primary-color));
    -webkit-mask-image: var(--theme-watermark-icon-url);
    mask-image: var(--theme-watermark-icon-url);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-mode: alpha;
    mask-mode: alpha;
}

.theme-watermark-bg--tint-primary[b-0j52euy8k7] {
    --theme-watermark-tint: var(--primary-color);
}

.theme-watermark-bg--tint-secondary[b-0j52euy8k7] {
    --theme-watermark-tint: var(--secondary-color);
}

.theme-watermark-bg--tint-tertiary[b-0j52euy8k7] {
    --theme-watermark-tint: var(--tertiary-color);
}

.theme-watermark-bg--align-right[b-0j52euy8k7] {
    top: -140px;
    right: -120px;
    left: auto;
    bottom: auto;
    transform: rotate(8deg);
    transform-origin: top right;
    -webkit-mask-position: top right;
    mask-position: top right;
}

.theme-watermark-bg--align-left[b-0j52euy8k7] {
    top: -140px;
    left: -120px;
    right: auto;
    bottom: auto;
    transform: rotate(8deg);
    transform-origin: top left;
    -webkit-mask-position: top left;
    mask-position: top left;
}

.theme-watermark-bg--align-center[b-0j52euy8k7] {
    top: -140px;
    left: 50%;
    right: auto;
    bottom: auto;
    margin-left: -260px;
    transform: rotate(8deg);
    transform-origin: top center;
    -webkit-mask-position: top center;
    mask-position: top center;
}

@media screen and (max-width: 768px) {
    .theme-watermark-bg[b-0j52euy8k7] {
        width: min(420px, 85vw);
        height: min(420px, 85vw);
        opacity: 0.06;
    }

    .theme-watermark-bg--align-center[b-0j52euy8k7] {
        margin-left: calc(min(420px, 85vw) / -2);
    }
}
