* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

:root {
    --flame: #F68B20;
    --flame-dim: #c46c10;
    --obsidian: #0A0A0A;
    --charcoal: #111111;
    --ash: #1a1a1a;
    --smoke: #2a2a2a;
    --mist: #6b6b6b;
    --white: #ffffff;
    --paper: #ffffff;
    --paper-soft: #f7f6f3;
    --ink: #0a0a0a;
    --paper-mist: #6b6b6b;
    --paper-line: #e7e5e2;
    --hairline: rgba(10, 10, 10, 0.09);
    --hero-gutter: 48px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', sans-serif;
    background: var(--white);
    color: var(--mist);
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 48px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.85;
    transition: opacity 0.25s, color 0.25s;
}

nav ul li a:hover {
    opacity: 1;
    color: var(--flame);
}

nav ul li.active a {
    color: var(--flame);
    opacity: 1;
}

.btn-book {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--flame);
    padding: 11px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.25s, color 0.25s;
}

.btn-book:hover {
    background: var(--flame);
    color: #0a0a0a;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: 40px;
}

.partner-badge {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(-24px);
    animation: badgeDropIn 0.7s cubic-bezier(.34, 1.56, .64, 1) forwards;
    animation-delay: 0.8s;
    flex-shrink: 0;
}

.partner-badge img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@keyframes badgeDropIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .nav-right {
        gap: 16px;
        margin-left: 16px;
    }

    .partner-badge {
        width: 34px;
        height: 34px;
        border-radius: 8px;
    }
}

.dluxe-menu-toggle {
    display: none;
    position: relative;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: rgba(0, 0, 0, .16);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    backdrop-filter: blur(8px);
}

.dluxe-menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: #fff;
    transition: transform .35s ease, opacity .25s ease;
}

.dluxe-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.dluxe-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.dluxe-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-only-cta {
    display: none;
}

body.dluxe-menu-open {
    overflow: hidden;
}

@media (max-width: 1200px) {
    header {
        padding: 24px 32px;
    }

    nav ul {
        gap: 22px;
    }

    nav ul li a {
        font-size: 13px;
    }

    .btn-book {
        padding: 9px 18px;
        font-size: 12px;
    }

    .nav-right {
        gap: 20px;
        margin-left: 24px;
    }

    .partner-badge {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 1024px) {
    header {
        padding: 20px 24px;
    }

    .logo-img {
        height: 46px;
    }

    .dluxe-menu-toggle {
        display: flex;
    }

    .btn-book {
        display: none;
    }

    .nav-right {
        gap: 12px;
        margin-left: auto;
    }

    nav {
        position: fixed;
        left: 18px;
        right: 18px;
        top: 78px;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        padding: 22px;
        background: rgba(10, 10, 10, .95);
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 16px;
        backdrop-filter: blur(18px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity .35s ease, visibility .35s ease, transform .4s cubic-bezier(.16, 1, .3, 1);
        z-index: 1000;
    }

    nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    nav ul li {
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    nav ul li:last-child {
        border-bottom: 0;
    }

    nav ul li a {
        padding: 14px 4px;
        font-size: 14px;
        min-height: 44px;
    }

    .mobile-only-cta {
        display: block;
        border-bottom: 0 !important;
        padding-top: 14px;
    }

    .mobile-book-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        background: var(--flame);
        color: #0a0a0a !important;
        border-radius: 8px;
        font-weight: 700 !important;
        letter-spacing: .3px;
        opacity: 1 !important;
    }
}

@media (max-width: 600px) {
    header {
        padding: 16px 18px;
    }

    .logo-img {
        height: 38px;
    }

    .dluxe-menu-toggle {
        width: 42px;
        height: 42px;
    }

    nav {
        top: 68px;
        left: 12px;
        right: 12px;
    }
}

.hero-shell {
    background: var(--white);
    padding: var(--hero-gutter);
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    height: calc(100vh - (var(--hero-gutter) * 2));
    min-height: 600px;
    background: var(--obsidian);
}

.hero-card .car-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 78%;
    opacity: 0;
    transform: scale(1.18);
    will-change: transform, opacity;
    animation: heroImageZoomOut 15s cubic-bezier(.16, .84, .44, 1) forwards;
    animation-delay: 0.1s;
}

@keyframes heroImageZoomOut {
    0% {
        opacity: 0;
        transform: scale(1.18);
    }

    8% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes carEnter {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-card {
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 177.78vh;
    min-height: 100vh;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-card header {
    position: relative;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content .sub {
    margin-left: auto;
    margin-right: auto;
}

.hero-content .xpel-badge {
    margin-left: auto;
    margin-right: auto;
}

.scroll-cue {
    position: relative;
    z-index: 2;
}

.headline {
    margin-bottom: 16px;
}

.dubai-text {
    color: var(--flame);
}

.headline .line {
    display: block;
    overflow: hidden;
    white-space: nowrap;
}

.headline .word {
    display: inline-block;
    font-weight: 900;
    font-size: clamp(58px, 4.2vw, 62px);
    line-height: 1.12;
    color: var(--white);
    transform: translateY(105%);
    animation: wordUp 0.7s cubic-bezier(.16, .84, .44, 1) forwards;
}

@keyframes wordUp {
    to {
        transform: translateY(0);
    }
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sub {
    font-size: 15px;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 30px;
    max-width: 420px;
    opacity: 0;
    animation: riseIn 0.7s ease forwards;
    animation-delay: 0.35s;
}

.xpel-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 10px 16px;
    width: fit-content;
    pointer-events: none;
    opacity: 0;
    animation: riseIn 0.7s ease forwards;
    animation-delay: 0.65s;
}

.xpel-badge img {
    height: 15px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.xpel-badge-divider {
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.25);
}

.xpel-badge-text {
    font-size: 9px;
    line-height: 1.5;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    font-weight: 600;
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-cue .dot-line {
    width: 1px;
    height: 46px;
    position: relative;
    background: linear-gradient(180deg, var(--flame) 0%, rgba(246, 139, 32, 0) 100%);
}

.scroll-cue .dot-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--flame);
    animation: dotPulse 1.8s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, 10px);
        opacity: 0.4;
    }
}

.scroll-cue span {
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

@media (max-width: 1200px) {
    :root {
        --hero-gutter: 36px;
    }

    .hero-content {
        padding: 130px 32px 44px;
    }
}

@media (max-width: 900px) {
    :root {
        --hero-gutter: 20px;
    }

    .hero-card {
        min-height: 560px;
        border-radius: 18px;
    }

    .hero-card .car-bg {
        object-position: center 98%;
    }

    .hero-content {
        padding: 110px 24px 40px;
        max-width: 100%;
    }

    .headline .word {
        font-size: clamp(22px, 6.2vw, 34px);
    }
}

@media (max-width: 600px) {
    :root {
        --hero-gutter: 14px;
    }

    .hero-card {
        min-height: 520px;
        border-radius: 14px;
    }

    .hero-content {
        padding: 90px 20px 32px;
    }

    .xpel-badge {
        padding: 8px 12px;
    }

    .xpel-badge-text {
        font-size: 8px;
    }

    .sub {
        font-size: 14px;
        max-width: 300px;
    }

    .scroll-cue {
        bottom: 20px;
    }
}

@media (max-width: 360px) {
    :root {
        --hero-gutter: 10px;
    }

    .hero-card {
        border-radius: 10px;
    }

    .headline .line {
        white-space: normal;
    }

    .headline .word {
        font-size: clamp(20px, 7.5vw, 28px);
    }

    .hero-content {
        padding: 80px 16px 28px;
    }
}

.models-section {
    position: relative;
    overflow: hidden;

    width: 100%;

    padding: 120px 40px;

    background: #ffffff;
    color: #0a0a0a;
}

.models-inner {
    width: min(1400px, 100%);
    margin: 0 auto;
}

.models-header {
    margin-bottom: 55px;
}

.models-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 25px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 3.5px;
    text-transform: uppercase;

    color: #777;
}

.models-eyebrow span {
    display: block;

    width: 35px;
    height: 1px;

    background: var(--flame);
}

.models-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;
}

.models-title {
    margin: 0;

    max-width: 760px;

    font-size: clamp(46px, 5vw, 72px);

    line-height: .94;

    letter-spacing: -.055em;

    font-weight: 600;

    color: #0a0a0a;
}

.models-title em {
    display: block;

    font-style: normal;

    color: #999;
}

.models-intro {
    width: min(360px, 100%);

    margin: 0;

    font-size: 13px;

    line-height: 1.8;

    color: #777;
}

.card-row {
    display: flex;

    width: 100%;

    height: 570px;

    gap: 10px;

    margin: 0 auto;

    overflow: hidden;
}

.card {
    position: relative;

    flex: 1 1 0;

    min-width: 0;

    height: 100%;

    overflow: hidden;

    border-radius: 3px;

    isolation: isolate;

    cursor: pointer;

    background-color: #111;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    transition:
        flex-grow 1.15s cubic-bezier(.16, 1, .3, 1),
        transform .8s cubic-bezier(.16, 1, .3, 1);
}

.card--xpel {
    background-image: var(--card-xpel-bg);
}

.card--peelable {
    background-image: var(--card-peelable-bg);
}

.card--window_tinting {
    background-image: var(--card-window-bg);
}

.card--ceramic_coating {
    background-image: var(--card-ceramic-bg);
}

.card::before {
    content: "";

    position: absolute;
    inset: -4%;

    z-index: -2;

    background: inherit;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    transform: scale(1);

    transition:
        transform 1.6s cubic-bezier(.16, 1, .3, 1);
}

.card:hover::before {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, .04) 0%,
            rgba(0, 0, 0, .02) 38%,
            rgba(0, 0, 0, .22) 62%,
            rgba(0, 0, 0, .82) 100%
        );

    transition:
        background 1s cubic-bezier(.16, 1, .3, 1);
}

.card:hover .card-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, .08) 0%,
            rgba(0, 0, 0, .04) 35%,
            rgba(0, 0, 0, .28) 60%,
            rgba(0, 0, 0, .88) 100%
        );
}

.card-row:hover .card {
    flex-grow: 1;
}

.card-row:hover .card:hover {
    flex-grow: 2.7;
}

.card-index {
    position: absolute;

    top: 25px;
    left: 25px;

    z-index: 5;

    font-size: 9px;

    letter-spacing: 2px;

    color: rgba(255,255,255,.72);

    opacity: .85;

    transition:
        color .5s ease,
        transform .8s cubic-bezier(.16,1,.3,1);
}

.card:hover .card-index {
    color: #fff;

    transform: translateY(3px);
}

.card-index::after {
    content: "";

    display: inline-block;

    width: 20px;
    height: 1px;

    margin-left: 10px;

    vertical-align: middle;

    background: rgba(255,255,255,.55);

    transition:
        width .8s cubic-bezier(.16,1,.3,1);
}

.card:hover .card-index::after {
    width: 38px;
}

.card-footer {
    position: absolute !important;

    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    top: auto !important;

    z-index: 10;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    width: 100%;

    box-sizing: border-box;

    padding: 30px 28px;

    gap: 20px;
}

.card-content {
    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    min-width: 0;

    transform: translateY(12px);

    opacity: .88;

    transition:
        transform 1s cubic-bezier(.16,1,.3,1),
        opacity .7s ease;
}

.card:hover .card-content {
    transform: translateY(0);

    opacity: 1;
}

.card-kicker {
    display: block;

    margin-bottom: 10px;

    font-size: 8px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;

    color: rgba(255,255,255,.62);

    transition:
        color .5s ease,
        transform .8s cubic-bezier(.16,1,.3,1);
}

.card:hover .card-kicker {
    color: var(--flame);

    transform: translateX(2px);
}

.card-title-main {
    display: block;

    margin: 0;
    padding: 0;

    font-size: 22px;

    line-height: 1.08;

    letter-spacing: -.025em;

    font-weight: 500;

    color: #ffffff;

    white-space: nowrap;
}

.card-arrow {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 44px;
    height: 44px;

    margin-bottom: 1px;

    border: 1px solid rgba(255,255,255,.35);

    border-radius: 50%;

    color: #fff;

    text-decoration: none;

    background: rgba(255,255,255,.06);

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);

    opacity: .8;

    transform: translateY(10px);

    transition:
        opacity .6s ease,
        transform .9s cubic-bezier(.16,1,.3,1),
        background .5s ease,
        border-color .5s ease;
}

.card:hover .card-arrow {
    opacity: 1;

    transform: translateY(0);

    background: rgba(255,255,255,.14);

    border-color: rgba(255,255,255,.65);
}

.card-arrow svg {
    width: 17px;
    height: 17px;

    transition:
        transform .7s cubic-bezier(.16,1,.3,1);
}

.card-arrow:hover svg {
    transform: translate(3px,-3px);
}

.card::after {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 60%;
    height: 100%;

    z-index: 4;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.07),
            transparent
        );

    transform: skewX(-15deg);

    transition:
        left 1.5s cubic-bezier(.16,1,.3,1);
}

.card:hover::after {
    left: 140%;
}
.models-title em {
    color: #f56a00;
    font-style: normal;
    transition: color .4s ease;
}

.card-content::after {
    content: "";

    display: block;

    width: 0;

    height: 1px;

    margin-top: 15px;

    background: var(--flame);

    opacity: .9;

    transition:
        width 1s cubic-bezier(.16,1,.3,1);
}

.card:hover .card-content::after {
    width: 45px;
}

@media (min-width: 1100px) {

    .card-row:hover .card:not(:hover) {
        filter: saturate(.78);

        transition:
            flex-grow 1.15s cubic-bezier(.16,1,.3,1),
            filter .8s ease;
    }

    .card-row:hover .card:hover {
        filter: saturate(1);
    }
}

@media (max-width: 1000px) {

    .models-section {
        padding: 90px 25px;
    }

    .models-heading-row {
        align-items: flex-start;

        flex-direction: column;

        gap: 25px;
    }

    .models-intro {
        max-width: 500px;
    }

    .card-row {
        height: 500px;

        gap: 8px;
    }

    .card-row:hover .card {
        flex-grow: 1;
    }

    .card-row:hover .card:hover {
        flex-grow: 2;
    }

    .card-footer {
        padding: 25px 22px;
    }

    .card-title-main {
        font-size: 19px;
    }

}

@media (max-width: 700px) {

    .models-section {
        padding: 75px 16px;
    }

    .models-header {
        margin-bottom: 38px;
    }

    .models-eyebrow {
        margin-bottom: 20px;

        font-size: 8px;

        letter-spacing: 3px;
    }

    .models-title {
        font-size: clamp(40px, 12vw, 58px);

        line-height: .95;
    }

    .models-intro {
        font-size: 12px;

        line-height: 1.75;
    }

    .card-row {
        display: flex;

        flex-direction: column;

        height: auto;

        gap: 8px;

        overflow: visible;
    }

    .card {
        width: 100%;

        height: 270px;

        flex: none !important;

        border-radius: 3px;
    }

    .card-row:hover .card,
    .card-row:hover .card:hover {
        flex: none !important;

        height: 270px;
    }

    .card-footer {
        padding: 24px 20px;
    }

    .card-index {
        top: 20px;
        left: 20px;
    }

    .card-title-main {
        font-size: 20px;
    }

    .card-arrow {
        width: 40px;
        height: 40px;
    }

}

@media (max-width: 420px) {

    .models-section {
        padding: 65px 14px;
    }

    .card {
        height: 245px;
    }

    .card-row:hover .card,
    .card-row:hover .card:hover {
        height: 245px;
    }

    .card-footer {
        padding: 20px 18px;
    }

    .card-title-main {
        font-size: 18px;
    }

    .card-kicker {
        font-size: 7px;

        letter-spacing: 2px;
    }

    .card-arrow {
        width: 38px;
        height: 38px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .card,
    .card::before,
    .card::after,
    .card-overlay,
    .card-content,
    .card-arrow,
    .card-arrow svg,
    .card-index,
    .card-index::after {
        transition: none !important;
    }

}

.about-shell {
    position: relative;
    overflow: hidden;

    background: #070707;
    color: #fff;

    padding: 150px 0 120px;
}

.about-inner {
    width: min(1320px, calc(100% - 100px));
    margin: 0 auto;
}

.about-grid {
    display: grid;

    grid-template-columns: minmax(420px, 1fr) minmax(420px, .85fr);

    gap: clamp(70px, 9vw, 150px);

    align-items: center;

    margin-bottom: 125px;
}

.about-photo-wrap {
    position: relative;

    order: 1;
}

.about-photo {
    position: relative;

    width: 100%;
    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #111;
}

.about-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    filter:
        brightness(.82)
        contrast(1.08)
        saturate(.72);

    transform: scale(1.035);

    transition:
        transform 1.4s cubic-bezier(.16,.84,.44,1),
        filter 1s ease;
}

.about-grid:hover .about-photo img {
    transform: scale(1);

    filter:
        brightness(.94)
        contrast(1.04)
        saturate(.95);
}

.about-photo::after {
    content: "D LUXE  /  AUTOMOTIVE DETAILING";

    position: absolute;

    left: 24px;
    bottom: 22px;

    z-index: 3;

    padding-left: 13px;

    border-left: 1px solid var(--flame);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2.5px;

    color: rgba(255,255,255,.75);
}

.about-content {
    position: relative;

    order: 2;

    max-width: 550px;
}

.s-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 32px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;

    color: rgba(255,255,255,.42);
}

.s-eyebrow::before {
    content: "02";

    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border: 1px solid rgba(255,255,255,.18);

    color: var(--flame);

    font-size: 8px;
    letter-spacing: 1px;
}

.about-heading {
    margin: 0 0 38px;

    font-size: clamp(52px, 5.5vw, 82px);
    line-height: .9;

    letter-spacing: -.065em;

    font-weight: 800;

    color: #fff;
}

.about-heading span {
    color: var(--flame);
}

.about-rule {
    position: relative;

    width: 100%;
    height: 1px;

    margin-bottom: 30px;

    background: rgba(255,255,255,.13);
}

.about-rule::after {
    content: "";

    position: absolute;

    left: 0;
    top: -1px;

    width: 45px;
    height: 2px;

    background: var(--flame);
}

.about-copy {
    max-width: 470px;
}

.about-copy p {
    margin: 0 0 19px;

    font-size: 14px;
    line-height: 1.9;

    color: rgba(255,255,255,.48);
}

.about-tagline {
    margin-top: 30px !important;

    font-size: 17px !important;
    line-height: 1.5 !important;

    font-weight: 600 !important;

    color: #fff !important;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    margin-top: 5px;

    padding-bottom: 12px;

    border-bottom: 1px solid rgba(255,255,255,.3);

    color: #fff;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2.5px;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        color .3s ease,
        border-color .3s ease;
}

.about-cta svg {
    width: 16px;
    height: 16px;

    stroke: var(--flame);

    transition: transform .3s ease;
}

.about-cta:hover {
    color: var(--flame);
    border-color: var(--flame);
}

.about-cta:hover svg {
    transform: translate(5px,-3px);
}

.about-stats-rail {
    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr
        1fr;

    border-top: 1px solid rgba(255,255,255,.15);

    border-bottom: 1px solid rgba(255,255,255,.15);
}

.about-stat {
    position: relative;

    min-height: 145px;

    padding: 30px 32px;

    border-right: 1px solid rgba(255,255,255,.15);
}

.about-stat:last-child {
    border-right: none;
}

.about-stat::before {
    content: "—";

    display: block;

    margin-bottom: 22px;

    color: var(--flame);

    font-size: 13px;
}

.about-stat-num {
    margin-bottom: 10px;

    font-size: clamp(30px, 3.2vw, 46px);

    line-height: .9;

    letter-spacing: -.06em;

    font-weight: 800;

    color: #fff;
}

.about-stat-label {
    display: block;

    font-size: 8px;
    line-height: 1.5;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: rgba(255,255,255,.38);

    font-weight: 700;
}

@media (min-width: 1200px) {

    .about-shell {
        padding-top: 170px;
    }

    .about-grid {
        grid-template-columns: 1.05fr .95fr;
    }

    .about-photo {
        aspect-ratio: 1 / 1.12;
    }

    .about-content {
        padding-top: 20px;
    }
}

@media (max-width: 980px) {

    .about-shell {
        padding: 100px 0 90px;
    }

    .about-inner {
        width: calc(100% - 48px);
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 60px;

        margin-bottom: 90px;
    }

    .about-photo-wrap {
        max-width: 600px;
    }

    .about-content {
        max-width: 680px;
    }

    .about-heading {
        font-size: clamp(48px, 8vw, 70px);
    }

    .about-stats-rail {
        grid-template-columns: 1fr 1fr;
    }

    .about-stat:nth-child(2) {
        border-right: none;
    }

    .about-stat:nth-child(3),
    .about-stat:nth-child(4) {
        border-top: 1px solid rgba(255,255,255,.15);
    }
}

@media (max-width: 600px) {

    .about-shell {
        padding: 75px 0 65px;
    }

    .about-inner {
        width: calc(100% - 30px);
    }

    .about-grid {
        gap: 48px;

        margin-bottom: 65px;
    }

    .about-photo {
        aspect-ratio: 4 / 5;
    }

    .about-photo::after {
        left: 16px;
        bottom: 16px;

        font-size: 7px;
        letter-spacing: 2px;
    }

    .s-eyebrow {
        margin-bottom: 25px;

        font-size: 8px;
        letter-spacing: 3px;
    }

    .s-eyebrow::before {
        width: 27px;
        height: 27px;
    }

    .about-heading {
        margin-bottom: 27px;

        font-size: clamp(42px, 12vw, 57px);

        line-height: .94;

        letter-spacing: -.06em;
    }

    .about-rule {
        margin-bottom: 25px;
    }

    .about-copy p {
        font-size: 13px;
        line-height: 1.8;
    }

    .about-tagline {
        margin-top: 26px !important;

        font-size: 15px !important;
    }

    .about-cta {
        margin-top: 2px;
    }

    .about-stats-rail {
        grid-template-columns: 1fr 1fr;
    }

    .about-stat {
        min-height: 105px;

        padding: 21px 14px;
    }

    .about-stat::before {
        margin-bottom: 16px;

        font-size: 11px;
    }

    .about-stat-num {
        font-size: 25px;
    }

    .about-stat-label {
        font-size: 7px;
        letter-spacing: 1.2px;
    }
}

@media (max-width: 380px) {

    .about-inner {
        width: calc(100% - 24px);
    }

    .about-heading {
        font-size: 39px;
    }

    .about-stat {
        padding-left: 11px;
        padding-right: 11px;
    }

    .about-stat-num {
        font-size: 22px;
    }

    .about-stat-label {
        font-size: 6.5px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .about-photo img,
    .about-cta,
    .about-cta svg {
        transition: none;
    }
}

.excellence-section {
    position: relative;
    padding: 140px 5%;
    background: #fafaf8;
    overflow: hidden;
}

.excellence-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    right: -220px;
    top: -220px;
    border-radius: 50%;
    background: rgba(246, 139, 32, 0.07);
    filter: blur(70px);
}

.excellence-section::after {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    left: -200px;
    bottom: -220px;
    border-radius: 50%;
    border: 1px solid rgba(10, 10, 10, 0.05);
    box-shadow: 0 0 0 70px rgba(10, 10, 10, 0.012), 0 0 0 140px rgba(10, 10, 10, 0.008);
}

.excellence-header {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 80px;
    text-align: center;
}

.excellence-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #f56a00;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.excellence-eyebrow::before,
.excellence-eyebrow::after {
    content: "";
    width: 26px;
    height: 1px;
    background: #f56a00;
}

.excellence-header h2 {
    color: #0a0a0a;
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1.05;
    letter-spacing: -1.5px;
    font-weight: 600;
    margin-bottom: 18px;
}

.excellence-header h2 span {
    color: #f56a00;
}

.excellence-header p {
    color: #707070;
    font-size: 15.5px;
    line-height: 1.75;
    max-width: 480px;
    margin: 0 auto;
}

.excellence-grid {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    grid-template-rows: repeat(2, 260px);
    gap: 20px;
}

.excellence-tile {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #e8e6e3;
    background: #ffffff;
    box-shadow: 0 20px 50px -30px rgba(10, 10, 10, 0.15);
    transition: transform 0.5s cubic-bezier(.16, .84, .44, 1), box-shadow 0.5s ease, border-color 0.5s ease;
}

.excellence-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(246, 139, 32, 0.35);
    box-shadow: 0 30px 60px -30px rgba(10, 10, 10, 0.22);
}

.excellence-tile--feature {
    grid-column: 1;
    grid-row: 1 / 3;
}

.excellence-tile img.excellence-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.02);
    transform: scale(1.04);
    transition: transform 0.9s cubic-bezier(.16, .84, .44, 1), filter 0.7s ease;
}

.excellence-tile:hover img.excellence-photo {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.excellence-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0) 40%, rgba(10, 10, 10, 0.15) 65%, rgba(10, 10, 10, 0.78) 100%);
}

.excellence-tile-body {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px 32px;
}

.excellence-tile--feature .excellence-tile-body {
    padding: 40px;
}

.excellence-index {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #ff9a3d;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.excellence-index::before {
    content: "";
    width: 20px;
    height: 1px;
    background: #ff9a3d;
}

.excellence-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.excellence-icon img {
    height: 18px;
    width: auto;
    filter: brightness(0) invert(1);
}

.excellence-icon svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 1.6;
}

.excellence-tile h3 {
    color: #ffffff;
    font-weight: 600;
    font-size: clamp(22px, 2.2vw, 30px);
    letter-spacing: -0.5px;
    margin: 0 0 10px;
    line-height: 1.15;
}

.excellence-tile p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.7;
    max-width: 360px;
    margin: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease, margin-top 0.4s ease;
}

.excellence-tile:hover p {
    opacity: 1;
    max-height: 120px;
    margin-top: 10px;
}

@media (max-width: 900px) {
    .excellence-section {
        padding: 90px 20px;
    }

    .excellence-header {
        margin-bottom: 50px;
    }

    .excellence-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .excellence-tile,
    .excellence-tile--feature {
        grid-column: 1;
        grid-row: auto;
        min-height: 320px;
    }

    .excellence-tile p {
        opacity: 1;
        max-height: none;
        margin-top: 10px;
    }
}

.services-section {
    position: relative;
    overflow: hidden;
    background: #fff;
    color: #111;
    padding: 125px 4.5% 135px;
}

.services-inner {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 65px;
}

.services-header-left {
    max-width: 850px;
}

.services-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: #f56a00;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
}

.services-eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: #f56a00;
}

.services-header h1 {
    margin: 0;
    font-size: clamp(52px, 6vw, 90px);
    line-height: .94;
    font-weight: 400;
    letter-spacing: -5px;
}

.services-header h1 span {
    color: #f56a00;
}

.services-header p {
    max-width: 520px;
    margin: 28px 0 0;
    color: #777;
    font-size: 14px;
    line-height: 1.8;
}

.services-index {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 8px;
    color: #999;
    font-size: 9px;
    letter-spacing: 3px;
}

.services-index-line {
    width: 55px;
    height: 1px;
    background: #ddd;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 650px;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 3px;
    transition:
        transform .5s cubic-bezier(.16,1,.3,1),
        box-shadow .5s ease,
        border-color .4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #dcdcdc;
    box-shadow: 0 25px 65px rgba(0,0,0,.10);
}

.service-image {
    position: relative;
    height: 315px;
    overflow: hidden;
    background: #f3f3f3;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.03);
    transition:
        transform 1.1s cubic-bezier(.16,1,.3,1),
        filter .7s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.09);
    filter: saturate(1.08);
}

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,.08),
        transparent 45%,
        rgba(0,0,0,.22)
    );
    pointer-events: none;
}

.service-number {
    position: absolute;
    z-index: 3;
    top: 20px;
    left: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0,0,0,.3);
}

.service-number::after {
    content: "";
    width: 28px;
    height: 1px;
    background: #f56a00;
}

.card-content {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 335px;
    padding: 30px 28px 25px;
}

.card-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    width: 0;
    height: 2px;
    background: #f56a00;
    transition: width .6s cubic-bezier(.16,1,.3,1);
}

.service-card:hover .card-content::before {
    width: 55px;
}

.card-title {
    margin: 0 0 14px;
    font-size: 25px;
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -1px;
    color: #0c0c0c;
    transition: color .35s ease;
}

.service-card:hover .card-title {
    color: #f56a00;
}

.card-description {
    margin: 0 0 24px;
    color: #777;
    font-size: 13px;
    line-height: 1.65;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.service-list li {
    position: relative;
    padding-left: 15px;
    color: #444;
    font-size: 12px;
    line-height: 1.5;
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #f56a00;
}

.explore {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid #e6e6e6;
    color: #222;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    transition: color .3s ease, border-color .3s ease;
}

.explore span:last-child {
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #f56a00;
    font-size: 14px;
    transition:
        transform .4s ease,
        background .4s ease,
        color .4s ease,
        border-color .4s ease;
}

.explore:hover {
    color: #f56a00;
    border-color: #f56a00;
}

.explore:hover span:last-child {
    transform: translateX(5px);
    background: #f56a00;
    border-color: #f56a00;
    color: #fff;
}

.services-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.services-footer span {
    color: #aaa;
    font-size: 8px;
    letter-spacing: 3px;
}

.services-footer strong {
    color: #555;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.5px;
}

@media (max-width: 1200px) {
    .services-section {
        padding: 105px 4%;
    }

    .services-header {
        display: block;
    }

    .services-index {
        margin-top: 25px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        min-height: 610px;
    }
}

@media (max-width: 650px) {
    .services-section {
        padding: 80px 18px 90px;
    }

    .services-header {
        margin-bottom: 45px;
    }

    .services-eyebrow {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .services-header h1 {
        font-size: 49px;
        letter-spacing: -3px;
    }

    .services-header p {
        font-size: 13px;
        line-height: 1.7;
    }

    .services-index {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card {
        min-height: auto;
    }

    .service-image {
        height: 260px;
    }

    .card-content {
        min-height: 310px;
        padding: 27px 23px 23px;
    }

    .card-content::before {
        left: 23px;
    }

    .service-list {
        gap: 8px;
    }

    .services-footer {
        display: block;
    }

    .services-footer strong {
        display: block;
        margin-top: 9px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-card,
    .service-image img,
    .card-content::before,
    .explore span:last-child {
        transition: none !important;
    }
}

.premium-reveal {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(.16, .84, .44, 1);
}

.premium-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.premium-delay-1 {
    transition-delay: 0.12s;
}

.premium-delay-2 {
    transition-delay: 0.24s;
}

.premium-delay-3 {
    transition-delay: 0.36s;
}

.premium-delay-4 {
    transition-delay: 0.48s;
}

.skywards-section {
    position: relative;
    padding: 130px 5%;
    background: #090909;
    color: #ffffff;
    overflow: hidden;
}

.skywards-section::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    left: -250px;
    top: -250px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow:
        0 0 0 70px rgba(255, 255, 255, 0.015),
        0 0 0 140px rgba(255, 255, 255, 0.012),
        0 0 0 210px rgba(255, 255, 255, 0.008);
}

.skywards-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -220px;
    bottom: -280px;
    border-radius: 50%;
    background: rgba(246, 139, 32, 0.07);
    filter: blur(20px);
}

.skywards-inner {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 90px;
    align-items: center;
}

.skywards-content {
    max-width: 650px;
}

.skywards-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #f68b20;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.skywards-eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: #f68b20;
}

.skywards-content h2 {
    font-size: clamp(38px, 5vw, 67px);
    line-height: 1.02;
    letter-spacing: -3px;
    font-weight: 500;
    margin-bottom: 25px;
}

.skywards-content h2 span {
    color: #f68b20;
}

.skywards-content>p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.9;
    max-width: 600px;
    margin-bottom: 38px;
}

.skywards-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.skywards-benefit {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(10px);
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}

.skywards-benefit:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(246, 139, 32, 0.35);
}

.skywards-benefit-number {
    color: #f68b20;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.skywards-benefit h4 {
    font-size: 15px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
}

.skywards-benefit p {
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    line-height: 1.6;
}

.skywards-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.skywards-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.skywards-card-wrap {
    display: flex;
    justify-content: center;
    perspective: 1200px;
}

.skywards-card {
    position: relative;
    width: min(100%, 470px);
    aspect-ratio: 1.58 / 1;
    border-radius: 25px;
    padding: 34px;
    overflow: hidden;
    background:
        linear-gradient(145deg, #242424 0%, #0e0e0e 55%, #181818 100%);
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow:
        0 40px 90px -35px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: rotateY(-8deg) rotateX(3deg);
    transition: transform 0.7s cubic-bezier(.16, .84, .44, 1);
}

.skywards-card:hover {
    transform: rotateY(0deg) rotateX(0deg) translateY(-8px);
}

.skywards-card::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -100px;
    top: -120px;
    border-radius: 50%;
    background: rgba(246, 139, 32, 0.16);
    filter: blur(4px);
}

.skywards-card::after {
    content: "";
    position: absolute;
    inset: 15px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    pointer-events: none;
}

.skywards-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.skywards-mini-logo {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.skywards-mini-logo span {
    color: #f68b20;
}

.skywards-partner {
    width: 52px;
    height: 52px;
    border-radius: 9px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.skywards-partner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.skywards-card-middle {
    position: relative;
    z-index: 2;
    margin-top: 45px;
}

.skywards-card-middle small {
    display: block;
    color: rgba(255, 255, 255, 0.42);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.skywards-card-middle strong {
    display: block;
    color: #ffffff;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.skywards-card-bottom {
    position: absolute;
    z-index: 2;
    left: 34px;
    right: 34px;
    bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.skywards-card-bottom span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 9px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.skywards-miles {
    color: #f68b20 !important;
    font-size: 11px !important;
    font-weight: 700;
}

.loyalty-section {
    position: relative;
    padding: 130px 5% 140px;
    background: #ffffff;
    overflow: hidden;
}

.loyalty-header {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 75px;
    text-align: center;
}

.loyalty-eyebrow {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    color: #f56a00;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.loyalty-eyebrow::after {
    content: "";
    width: 45px;
    height: 2px;
    background: #f56a00;
}

.loyalty-header h2 {
    color: #0a0a0a;
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.02;
    letter-spacing: -3px;
    font-weight: 600;
    margin-bottom: 20px;
}

.loyalty-header h2 span {
    color: #f56a00;
}

.loyalty-header p {
    color: #707070;
    max-width: 620px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
}

.loyalty-intro {
    max-width: 1100px;
    margin: 0 auto 65px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.loyalty-message h3 {
    color: #0a0a0a;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.12;
    letter-spacing: -1.5px;
    font-weight: 600;
    margin-bottom: 18px;
}

.loyalty-message h3 span {
    color: #f56a00;
}

.loyalty-message p {
    color: #6b6b6b;
    font-size: 14px;
    line-height: 1.9;
    max-width: 500px;
}

.wallet-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
}

.wallet-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1.586 / 1;
    border-radius: 22px;
    padding: 28px;
    overflow: hidden;
    background:
        radial-gradient(140% 140% at 15% 0%, #2c2c2c 0%, #131313 42%, #050505 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow:
        0 40px 80px -35px rgba(0, 0, 0, 0.65),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: rotateX(4deg) rotateY(-6deg);
    transition: transform 0.6s cubic-bezier(.16, .84, .44, 1), box-shadow 0.6s ease;
}

.wallet-card:hover {
    transform: rotateX(0deg) rotateY(0deg) translateY(-6px);
    box-shadow:
        0 50px 100px -35px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.wallet-card::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -110px;
    top: -140px;
    border-radius: 50%;
    background: rgba(246, 139, 32, 0.16);
    filter: blur(2px);
}

.wallet-card::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    pointer-events: none;
}

.wallet-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.wallet-brand {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.wallet-brand span {
    color: #f68b20;
}

.wallet-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f68b20;
    font-size: 17px;
}

.wallet-middle {
    position: relative;
    z-index: 2;
    margin-top: 36px;
}

.wallet-middle small {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.wallet-middle strong {
    display: block;
    color: #ffffff;
    font-size: 22px;
    letter-spacing: -0.4px;
}

.wallet-chip {
    position: absolute;
    z-index: 2;
    left: 28px;
    bottom: 58px;
    width: 40px;
    height: 30px;
    border-radius: 6px;
    background: linear-gradient(135deg, #e8c98a 0%, #cf9f52 50%, #a9762f 100%);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.wallet-bottom {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.wallet-bottom span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.wallet-bottom .wallet-add {
    color: #f68b20;
    font-weight: 700;
}

.apple-wallet-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000000;
    color: #ffffff;
    padding: 13px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-family: -apple-system, "Sora", sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.apple-wallet-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.apple-wallet-btn:hover {
    transform: translateY(-2px);
    background: #1a1a1a;
    box-shadow: 0 14px 30px -14px rgba(0, 0, 0, 0.5);
}

.wallet-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 380px;
}

.wallet-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 12.5px;
    color: #6b6b6b;
    line-height: 1.5;
}

.wallet-step-num {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(246, 139, 32, 0.12);
    color: #f56a00;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.loyalty-tiers {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.loyalty-tier {
    position: relative;
    min-height: 460px;
    border-radius: 20px;
    overflow: hidden;
    background: #f8f8f6;
    border: 1px solid #e8e6e3;
    transition:
        transform 0.45s cubic-bezier(.16, .84, .44, 1),
        box-shadow 0.45s ease;
}

.loyalty-tier:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -35px rgba(0, 0, 0, 0.3);
}

.tier-art {
    position: relative;
    width: 100%;
    aspect-ratio: 640 / 1000;
    overflow: hidden;
}

.tier-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.loyalty-tier:hover .tier-art img {
    transform: scale(1.04);
    filter: brightness(0.32) blur(1px);
}

.tier-info {
    padding: 22px 24px 26px;
}

.tier-number {
    color: rgba(10, 10, 10, 0.3);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.loyalty-tier h4 {
    color: #0a0a0a;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.loyalty-tier .tier-info>p {
    color: #707070;
    font-size: 12px;
    line-height: 1.7;
    margin: 0;
}

.tier-offers {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px 24px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.78) 100%);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

.loyalty-tier:hover .tier-offers {
    opacity: 1;
    transform: translateY(0);
}

.tier-offers-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f56a00;
    margin-bottom: 14px;
}

.tier-no-discount {
    color: #ececec;
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 12px;
}

.tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-benefits li {
    position: relative;
    padding-left: 16px;
    color: #ececec;
    font-size: 12px;
    line-height: 1.55;
    margin-bottom: 10px;
}

.tier-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #f56a00;
}

.loyalty-register-wrap {
    display: flex;
    justify-content: center;
    margin: 46px auto 0;
}

.loyalty-register-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 19px 42px;
    border-radius: 100px;
    background: linear-gradient(135deg, #ff9a3d 0%, #f56a00 55%, #c4550a 100%);
    color: #ffffff;
    font-family: "Sora", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    box-shadow:
        0 18px 40px -14px rgba(245, 106, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition:
        transform 0.35s cubic-bezier(.16, .84, .44, 1),
        box-shadow 0.35s ease;
}

.loyalty-register-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.55) 42%, transparent 64%);
    transform: translateX(-120%);
    transition: transform 0.85s ease;
}

.loyalty-register-btn:hover {
    transform: translateY(-4px);
    box-shadow:
        0 26px 55px -16px rgba(245, 106, 0, 0.65),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.loyalty-register-btn:hover::before {
    transform: translateX(120%);
}

.loyalty-register-btn svg {
    width: 17px;
    height: 17px;
    stroke: #ffffff;
    flex-shrink: 0;
    transition: transform 0.35s ease;
}

.loyalty-register-btn:hover svg {
    transform: translateX(4px);
}

.loyalty-register-sub {
    display: block;
    text-align: center;
    margin-top: 16px;
    font-size: 12px;
    color: #8c8c8c;
    letter-spacing: 0.3px;
}

@media (max-width: 600px) {
    .loyalty-register-btn {
        padding: 16px 30px;
        font-size: 12.5px;
        gap: 10px;
    }
}

.loyalty-footer-note {
    max-width: 850px;
    margin: 55px auto 0;
    padding: 22px 28px;
    border: 1px solid #e7e5e2;
    border-radius: 14px;
    background: #fafaf8;
    text-align: center;
    color: #777777;
    font-size: 12px;
    line-height: 1.7;
}

@media (max-width: 1050px) {

    .skywards-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .skywards-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }

    .skywards-eyebrow {
        justify-content: center;
    }

    .skywards-content>p {
        margin-left: auto;
        margin-right: auto;
    }

    .skywards-card-wrap {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .loyalty-tiers {
        grid-template-columns: repeat(2, 1fr);
    }

    .loyalty-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .loyalty-message {
        text-align: center;
    }

    .loyalty-message p {
        margin: 0 auto;
    }
}

@media (max-width: 750px) {

    .skywards-section,
    .loyalty-section {
        padding: 80px 20px;
    }

    .skywards-content h2,
    .loyalty-header h2 {
        letter-spacing: -2px;
    }

    .skywards-benefits {
        grid-template-columns: 1fr;
    }

    .skywards-card {
        padding: 25px;
        border-radius: 20px;
        transform: none;
    }

    .skywards-card-middle {
        margin-top: 35px;
    }

    .loyalty-tiers {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .loyalty-tier {
        min-height: auto;
    }

    .wallet-card {
        min-height: 210px;
        padding: 25px;
    }
}

@media (max-width: 450px) {

    .skywards-card {
        aspect-ratio: 1.35 / 1;
    }

    .skywards-card-middle strong {
        font-size: 18px;
    }

    .skywards-card-bottom {
        left: 25px;
        right: 25px;
    }

    .wallet-middle strong {
        font-size: 21px;
    }
}

.xpel-premium-section {
    position: relative;
    overflow: hidden;
    background: #f7f7f5;
    color: #151515;
    padding: 90px 5% 70px;
    isolation: isolate;
}

.xpel-premium-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .035;
    z-index: 0;
    background-image:
        radial-gradient(rgba(0, 0, 0, .8) .5px, transparent .5px);
    background-size: 5px 5px;
}

.xpel-premium-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}

.xpel-showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, .12);
}

.xpel-section-number {
    display: flex;
    align-items: center;
    gap: 14px;
}

.xpel-section-number i {
    display: block;
    width: 50px;
    height: 1px;
    background: rgba(0, 0, 0, .22);
}

.xpel-section-number strong {
    font-size: 10px;
    line-height: 1;
    letter-spacing: 4px;
    font-weight: 600;
    color: #777;
}

.xpel-certified-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 9px;
    letter-spacing: 3px;
    font-weight: 600;
    color: #777;
}

.xpel-certified-label span {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: #f56a00;
    box-shadow:
        0 0 0 5px rgba(245, 106, 0, .08),
        0 0 18px rgba(245, 106, 0, .35);
    animation: xpel-status-pulse 2s infinite;
}

@keyframes xpel-status-pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .35;
    }
}

.xpel-showcase {
    display: grid;
    grid-template-columns: minmax(300px, .9fr) minmax(400px, 1.2fr) minmax(290px, .72fr);
    align-items: center;
    gap: 30px;
    min-height: 590px;
}

.xpel-showcase-copy {
    position: relative;
    z-index: 3;
    padding: 20px 10px 20px 0;
}

.xpel-mini-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #f56a00;
    font-size: 9px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 4px;
}

.xpel-mini-title::before {
    content: "";
    width: 26px;
    height: 1px;
    background: #f56a00;
}

.xpel-brand-mark {
    display: flex;
    align-items: center;
    width: 165px;
    height: 58px;
    margin-bottom: 16px;
}

.xpel-brand-mark img {
    display: block;
    width: 155px;
    height: auto;
    max-height: 58px;
    object-fit: contain;
    object-position: left center;
    opacity: 1 !important;
    visibility: visible !important;
    filter: brightness(0) !important;
    mix-blend-mode: normal !important;
}

.xpel-showcase-copy h2 {
    margin: 0 0 30px;
    color: #151515 !important;
    font-size: clamp(54px, 5.1vw, 82px);
    line-height: .91;
    font-weight: 400;
    letter-spacing: -4.5px;
}

.xpel-showcase-copy h2 em {
    color: #f56a00 !important;
    font-style: normal;
    font-weight: 400;
}

.xpel-showcase-copy p {
    max-width: 425px;
    margin: 0 0 34px;
    color: #6c6c6c !important;
    font-size: 13px;
    line-height: 1.75;
    font-weight: 500;
}

.xpel-discover-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #181818 !important;
    text-decoration: none !important;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.xpel-discover-btn span {
    transition: color .3s ease;
}

.xpel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 0, 0, .25);
    border-radius: 50%;
    color: #f56a00;
    font-size: 17px;
    line-height: 1;
    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease,
        border-color .3s ease;
}

.xpel-discover-btn:hover .xpel-arrow {
    background: #f56a00;
    border-color: #f56a00;
    color: #fff;
    transform: translateX(4px);
}

.xpel-discover-btn:hover span {
    color: #f56a00;
}

.xpel-showcase-image {
    position: relative;
    width: 100%;
}

.xpel-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #111;
}

.xpel-image-wrap::before {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: 4;
    border: 1px solid rgba(255, 255, 255, .2);
    pointer-events: none;
}

.xpel-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.2s cubic-bezier(.2, .7, .2, 1);
}

.xpel-showcase-image:hover .xpel-image-wrap img {
    transform: scale(1.035);
}

.xpel-image-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, .04) 0%,
            transparent 55%,
            rgba(0, 0, 0, .72) 100%
        );
}

.xpel-light-beam {
    position: absolute;
    top: -20%;
    left: -45%;
    z-index: 3;
    width: 28%;
    height: 145%;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, .18),
        transparent
    );
    transform: rotate(18deg);
    animation: xpel-light-sweep 7s ease-in-out infinite;
}

@keyframes xpel-light-sweep {
    0%, 20% {
        left: -45%;
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    65% {
        left: 125%;
        opacity: 0;
    }

    100% {
        left: 125%;
        opacity: 0;
    }
}

.xpel-image-label {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 25px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.xpel-image-label span {
    font-size: 25px;
    line-height: 1;
    font-weight: 400;
}

.xpel-image-label div {
    width: 34px;
    height: 1px;
    background: #f56a00;
}

.xpel-image-label strong {
    font-size: 8px;
    letter-spacing: 3px;
    font-weight: 700;
}

.xpel-product-panel {
    min-width: 0;
    padding-left: 4px;
}

.xpel-panel-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 17px;
    border-bottom: 1px solid rgba(0, 0, 0, .16);
}

.xpel-panel-heading span,
.xpel-panel-heading small {
    font-size: 8px;
    line-height: 1;
    letter-spacing: 3px;
    font-weight: 700;
}

.xpel-panel-heading span {
    color: #888;
}

.xpel-panel-heading small {
    color: #f56a00;
    letter-spacing: 2px;
}

.xpel-product-list {
    width: 100%;
}

.xpel-product-item {
    position: relative;
    display: grid;
    grid-template-columns: 32px 86px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 12px;
    min-height: 102px;
    padding: 14px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .11);
    transition:
        background .35s ease,
        border-color .35s ease,
        padding .35s ease;
}

.xpel-product-item.active {
    background: rgba(245, 106, 0, .07);
    border-left: 2px solid #f56a00;
    padding-left: 8px;
}

.xpel-product-item:hover {
    background: rgba(245, 106, 0, .045);
}

.xpel-product-number {
    align-self: start;
    padding-top: 5px;
    color: #999;
    font-size: 8px;
    line-height: 1;
    font-weight: 600;
}

.xpel-product-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 86px;
    height: 54px;
}

.xpel-product-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    opacity: 1 !important;
    visibility: visible !important;
}

.xpel-product-name {
    min-width: 0;
}

.xpel-product-name strong {
    display: block;
    margin-bottom: 5px;
    color: #222;
    font-size: 9px;
    line-height: 1.15;
    letter-spacing: 1px;
    font-weight: 700;
}

.xpel-product-name span {
    display: block;
    color: #888;
    font-size: 7px;
    line-height: 1.35;
    letter-spacing: .5px;
}

.xpel-product-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(0, 0, 0, .18);
    border-radius: 50%;
    color: #555;
    font-size: 12px;
    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.xpel-product-item:hover .xpel-product-arrow,
.xpel-product-item.active .xpel-product-arrow {
    background: #f56a00;
    border-color: #f56a00;
    color: #fff;
    transform: translate(2px, -2px);
}

.xpel-bottom-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 110px;
    align-items: end;
    gap: 40px;
    margin-top: 30px;
    padding-top: 27px;
    border-top: 1px solid rgba(0, 0, 0, .12);
}

.xpel-bottom-bar > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.xpel-bottom-bar > div:first-child span {
    color: #f56a00;
    font-size: 8px;
    line-height: 1;
    letter-spacing: 4px;
    font-weight: 700;
}

.xpel-bottom-bar > div:first-child strong {
    color: #222;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -.4px;
}

.xpel-bottom-bar p {
    max-width: 290px;
    margin: 0;
    color: #888;
    font-size: 9px;
    line-height: 1.6;
}

.xpel-bottom-line {
    width: 100%;
    height: 1px;
    margin-bottom: 6px;
    background: linear-gradient(
        to right,
        #f56a00 0 35%,
        rgba(0, 0, 0, .12) 35% 100%
    );
}

.reveal {
    opacity: 0;
    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.2, .7, .2, 1);
}

.reveal-up {
    transform: translateY(35px);
}

.reveal-left {
    transform: translateX(-45px);
}

.reveal-right {
    transform: translateX(45px);
}

.reveal-scale {
    transform: scale(.94);
}

.reveal.is-visible,
.reveal.active,
.reveal.revealed {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {

    .xpel-premium-section *,
    .xpel-premium-section *::before,
    .xpel-premium-section *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 1200px) {

    .xpel-showcase {
        grid-template-columns: minmax(260px, .85fr) minmax(360px, 1.15fr);
        gap: 35px;
    }

    .xpel-product-panel {
        grid-column: 1 / -1;
    }

    .xpel-product-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 20px;
    }

    .xpel-product-item {
        min-height: 92px;
    }

    .xpel-showcase-copy h2 {
        font-size: clamp(52px, 6vw, 74px);
    }
}

@media (max-width: 800px) {

    .xpel-premium-section {
        padding: 75px 6% 55px;
    }

    .xpel-showcase-header {
        margin-bottom: 35px;
    }

    .xpel-showcase {
        grid-template-columns: 1fr;
        gap: 45px;
        min-height: 0;
    }

    .xpel-showcase-copy {
        padding: 0;
        order: 1;
    }

    .xpel-showcase-image {
        order: 2;
        max-width: 620px;
        margin: 0 auto;
    }

    .xpel-product-panel {
        order: 3;
        grid-column: auto;
    }

    .xpel-bottom-bar {
        grid-template-columns: 1fr 1fr;
    }

    .xpel-bottom-line {
        display: none;
    }
}

@media (max-width: 600px) {

    .xpel-premium-section {
        padding: 60px 20px 45px;
    }

    .xpel-showcase-header {
        margin-bottom: 30px;
    }

    .xpel-section-number i {
        width: 30px;
    }

    .xpel-section-number strong {
        font-size: 8px;
        letter-spacing: 3px;
    }

    .xpel-certified-label {
        font-size: 7px;
        letter-spacing: 1.8px;
    }

    .xpel-mini-title {
        margin-bottom: 14px;
        font-size: 8px;
        letter-spacing: 3px;
    }

    .xpel-brand-mark {
        width: 135px;
        height: 48px;
        margin-bottom: 14px;
    }

    .xpel-brand-mark img {
        width: 130px;
        max-height: 48px;
    }

    .xpel-showcase-copy h2 {
        margin-bottom: 25px;
        font-size: clamp(48px, 14vw, 68px);
        letter-spacing: -3px;
    }

    .xpel-showcase-copy p {
        max-width: 100%;
        margin-bottom: 28px;
        font-size: 12px;
        line-height: 1.7;
    }

    .xpel-image-wrap {
        aspect-ratio: 4 / 5;
    }

    .xpel-image-wrap::before {
        inset: 10px;
    }

    .xpel-image-label {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .xpel-image-label span {
        font-size: 20px;
    }

    .xpel-image-label strong {
        font-size: 7px;
        letter-spacing: 2px;
    }

    .xpel-product-list {
        display: block;
    }

    .xpel-product-item {
        grid-template-columns: 28px 72px minmax(0, 1fr) 30px;
        gap: 9px;
        min-height: 88px;
        padding: 12px 5px;
    }

    .xpel-product-logo {
        width: 72px;
        height: 46px;
    }

    .xpel-product-name strong {
        font-size: 8px;
    }

    .xpel-product-name span {
        font-size: 6.5px;
    }

    .xpel-product-arrow {
        width: 25px;
        height: 25px;
    }

    .xpel-bottom-bar {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .xpel-bottom-bar p {
        max-width: 250px;
    }
}

@media (max-width: 380px) {

    .xpel-premium-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .xpel-certified-label {
        display: none;
    }

    .xpel-showcase-copy h2 {
        font-size: 47px;
        letter-spacing: -2.5px;
    }

    .xpel-product-item {
        grid-template-columns: 24px 62px minmax(0, 1fr) 28px;
        gap: 7px;
    }

    .xpel-product-logo {
        width: 62px;
        height: 42px;
    }
}

.xpel-product-item {
    cursor: pointer;
}

.xpel-product-item:focus-visible {
    outline: 2px solid #f56a00;
    outline-offset: -2px;
}

#xpel-dynamic-image {
    opacity: 1;
    transform: scale(1);
    transition:
        opacity .22s ease,
        transform .55s cubic-bezier(.2, .7, .2, 1);
}

#xpel-dynamic-image.is-changing {
    opacity: 0;
    transform: scale(1.025);
}

.xpel-product-item.active .xpel-product-number {
    color: #f56a00;
}

@media (prefers-reduced-motion: reduce) {
    #xpel-dynamic-image {
        transition: none !important;
    }
}

.brand-strip {
    background: #ffffff;
    padding: 70px 0 60px;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}

.brand-title {
    font-weight: 700;
    font-size: clamp(22px, 2.6vw, 32px);
    color: var(--ink);
    margin-bottom: 16px;
}

.brand-title .accent {
    color: var(--flame);
}

.brand-underline {
    width: 46px;
    height: 3px;
    background: var(--flame);
    margin: 0 auto 50px;
    border-radius: 2px;
}

.brand-marquee {
    position: relative;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.brand-track {
    display: flex;
    align-items: flex-start;
    gap: 64px;
    width: max-content;
    animation: scrollBrands 28s linear infinite;
}

.brand-marquee:hover .brand-track {
    animation-play-state: paused;
}

@keyframes scrollBrands {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.brand-item {
    flex: 0 0 auto;
    width: 96px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    overflow: hidden;
}

.brand-badge {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--hairline);
    box-shadow: 0 8px 24px -12px rgba(10, 10, 10, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.brand-badge img {
    width: 76px;
    height: 76px;
    max-width: 76px;
    max-height: 76px;
    object-fit: contain;
    display: block;
}

.brand-item:hover .brand-badge {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px -12px rgba(10, 10, 10, 0.18);
    border-color: rgba(246, 139, 32, 0.4);
}

.brand-name {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--mist);
    letter-spacing: 0.2px;
}

@media (max-width: 700px) {
    .brand-strip {
        padding: 50px 0 44px;
    }

    .brand-track {
        gap: 40px;
    }

    .brand-item {
        width: 76px;
        height: 100px;
    }

    .brand-badge {
        width: 68px;
        height: 68px;
    }

    .brand-badge img {
        width: 36px;
        height: 36px;
        max-width: 36px;
        max-height: 36px;
    }
}

.tabby-brand {
    background: #000000;
}

.tamara-brand {
    background: linear-gradient(135deg,
            #ffdca8 0%,
            #f7b7b7 50%,
            #c99bdc 100%);
}

.payment-brand img {
    display: block;

    width: auto;
    height: auto;

    max-width: 145px;
    max-height: 50px;

    object-fit: contain;
}

@media (max-width: 600px) {

    .payment-brand img {
        max-width: 110px;
        max-height: 38px;
    }

}

html,
body {
    width: 100% !important;
    max-width: none !important;
}

body {
    overflow-x: hidden;
}

.hero-shell,
.models-section,
.about-shell,
.excellence-section,
.services-section,
.skywards-section,
.loyalty-section,
.xpel-section,
.brands-section {
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

:root {
    --reveal-duration: 1s;
    --reveal-duration-fast: 0.7s;
    --reveal-ease: cubic-bezier(.16, .84, .44, 1);
    --reveal-distance: 56px;
    --reveal-step: 110ms;
    --scroll-accent: var(--flame, #F68B20);
}

.reveal {
    opacity: 1;
    transform: none;
    will-change: transform, opacity, filter;
}

html.js-reveal .reveal {
    opacity: 0;
    transition:
        opacity var(--reveal-duration) var(--reveal-ease),
        transform var(--reveal-duration) var(--reveal-ease),
        filter var(--reveal-duration) var(--reveal-ease);
    transition-delay: calc(var(--reveal-order, 0) * var(--reveal-step));
}

.reveal.in-view {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

html.js-reveal .reveal-up {
    transform: translateY(var(--reveal-distance));
}

html.js-reveal .reveal-down {
    transform: translateY(calc(var(--reveal-distance) * -0.7));
}

html.js-reveal .reveal-left {
    transform: translateX(calc(var(--reveal-distance) * -1.1));
}

html.js-reveal .reveal-right {
    transform: translateX(calc(var(--reveal-distance) * 1.1));
}

html.js-reveal .reveal-scale {
    transform: scale(0.92) translateY(28px);
}

html.js-reveal .reveal-zoom {
    transform: scale(1.08);
}

html.js-reveal .reveal-blur {
    transform: translateY(24px);
    filter: blur(14px);
}

.reveal-fast {
    transition-duration: var(--reveal-duration-fast);
}

.reveal-stagger>.reveal {
    transition-delay: calc(var(--reveal-order, 0) * var(--reveal-step));
}

[data-counter-value] {
    font-variant-numeric: tabular-nums;
}

#dluxe-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--scroll-accent), #ffcf9c);
    z-index: 9999;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(246, 139, 32, 0.55);
}

[data-parallax] {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {

    .reveal,
    html.js-reveal .reveal {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    [data-parallax] {
        transform: none !important;
    }

    #dluxe-scroll-progress {
        display: none !important;
    }
}

@media (max-width: 700px) {
    :root {
        --reveal-distance: 32px;
        --reveal-duration: 0.75s;
        --reveal-step: 80ms;
    }
}

:root {
    --motion-ease: cubic-bezier(.16, .84, .44, 1);
    --spotlight-size: 340px;
}

.hero-card {
    isolation: isolate;
    --hero-mx: 50%;
    --hero-my: 45%;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -35%;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(
            circle at var(--hero-mx) var(--hero-my),
            rgba(246, 139, 32, .14) 0,
            rgba(246, 139, 32, .035) 16%,
            transparent 38%
        ),
        linear-gradient(112deg, transparent 35%, rgba(255,255,255,.07) 49%, transparent 63%);
    mix-blend-mode: screen;
    opacity: .9;
    transform: translate3d(-8%, -4%, 0) rotate(-7deg);
    animation: heroSurfaceSweep 12s var(--motion-ease) infinite alternate;
}

.hero-overlay {
    z-index: 1;
}

.hero-card header,
.hero-card .hero-content,
.hero-card .scroll-cue {
    will-change: transform, opacity;
}

.hero-card header {
    animation: dluxeHeaderSettle .9s var(--motion-ease) both;
}

.hero-card .scroll-cue {
    animation: dluxeCueIn 1s var(--motion-ease) 1.15s both;
}

@keyframes heroSurfaceSweep {
    0% {
        transform: translate3d(-10%, -3%, 0) rotate(-7deg);
    }
    100% {
        transform: translate3d(10%, 4%, 0) rotate(-7deg);
    }
}

@keyframes dluxeHeaderSettle {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dluxeCueIn {
    from {
        opacity: 0;
        transform: translate(-50%, 12px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.card {
    isolation: isolate;
    --mx: 50%;
    --my: 50%;
}

.card::before {
    content: "";
    position: absolute;
    inset: -2%;
    z-index: 0;
    background-image: inherit;
    background-size: cover;
    background-position: inherit;
    transition: transform 1.1s var(--motion-ease), filter .8s ease;
    transform: scale(1.035);
}

.card::after {
    z-index: 1;
    transition: opacity .6s ease, background .6s ease;
}

.card:hover::before {
    transform: scale(1.11);
    filter: saturate(1.12) contrast(1.04);
}

.card:hover::after {
    background:
        radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,.18), transparent 28%),
        linear-gradient(180deg, rgba(0,0,0,0) 38%, rgba(0,0,0,.82) 100%);
}

.card-footer {
    transition: transform .7s var(--motion-ease);
}

.card:hover .card-footer {
    transform: translateY(-5px);
}

.card-arrow {
    transition: background .25s ease, transform .45s var(--motion-ease), box-shadow .45s ease;
}

.card:hover .card-arrow {
    box-shadow: 0 0 0 7px rgba(246,139,32,.12), 0 8px 22px rgba(0,0,0,.18);
}

.about-photo {
    isolation: isolate;
}

.about-photo::before {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: 2;
    border: 1px solid rgba(255,255,255,.18);
    pointer-events: none;
    opacity: .45;
    transition: inset .8s var(--motion-ease), border-color .5s ease, opacity .5s ease;
}

.about-grid:hover .about-photo::before {
    inset: 9px;
    border-color: rgba(246,139,32,.55);
    opacity: 1;
}

.excellence-tile {
    --mx: 50%;
    --my: 50%;
    isolation: isolate;
}

.excellence-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(var(--spotlight-size) circle at var(--mx) var(--my), rgba(255,255,255,.17), transparent 62%);
    opacity: 0;
    transition: opacity .5s ease;
}

.excellence-tile:hover::after {
    opacity: 1;
}

.excellence-tile-body {
    transition: transform .65s var(--motion-ease);
}

.excellence-tile:hover .excellence-tile-body {
    transform: translateY(-4px);
}

.service-card {
    --mx: 50%;
    --my: 50%;
    isolation: isolate;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(var(--spotlight-size) circle at var(--mx) var(--my), rgba(246,139,32,.12), transparent 65%);
    opacity: 0;
    transition: opacity .45s ease;
}

.service-image {
    position: relative;
    z-index: 1;
}

.service-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.28) 49%, transparent 63%);
    transform: translateX(-125%);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover .service-image::before {
    animation: serviceReflection 1.1s var(--motion-ease) both;
}

.service-card .card-content {
    position: relative;
    z-index: 3;
}

.service-list li {
    transition: color .3s ease, transform .45s var(--motion-ease);
}

.service-card:hover .service-list li {
    transform: translateX(4px);
}

.service-card:hover .service-list li:nth-child(2) { transition-delay: 35ms; }
.service-card:hover .service-list li:nth-child(3) { transition-delay: 70ms; }
.service-card:hover .service-list li:nth-child(4) { transition-delay: 105ms; }
.service-card:hover .service-list li:nth-child(5) { transition-delay: 140ms; }

@keyframes serviceReflection {
    from { transform: translateX(-125%); }
    to { transform: translateX(125%); }
}

.xpel-image-wrap {
    --mx: 50%;
    --my: 50%;
}

.xpel-image-wrap::before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 3;
    border: 1px solid rgba(255,255,255,.16);
    pointer-events: none;
    opacity: .55;
    transition: inset .7s var(--motion-ease), border-color .5s ease;
}

.xpel-image-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10%;
    height: 1px;
    z-index: 4;
    background: linear-gradient(90deg, transparent, rgba(246,139,32,.9), transparent);
    box-shadow: 0 0 18px rgba(246,139,32,.55);
    animation: xpelScanLine 5.5s ease-in-out infinite;
    pointer-events: none;
}

.xpel-image-wrap:hover::before {
    inset: 11px;
    border-color: rgba(246,139,32,.55);
}

@keyframes xpelScanLine {
    0%, 100% { transform: translateY(0); opacity: 0; }
    12% { opacity: 1; }
    70% { opacity: .8; }
    88% { transform: translateY(calc(100% + 40px)); opacity: 0; }
}

.skywards-benefit,
.loyalty-tier {
    --mx: 50%;
    --my: 50%;
    isolation: isolate;
}

.skywards-benefit::before,
.loyalty-tier::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(260px circle at var(--mx) var(--my), rgba(246,139,32,.16), transparent 68%);
    opacity: 0;
    transition: opacity .45s ease;
}

.skywards-benefit > *,
.loyalty-tier > * {
    position: relative;
    z-index: 1;
}

.skywards-benefit:hover::before,
.loyalty-tier:hover::before {
    opacity: 1;
}

.skywards-card,
.wallet-card {
    --mx: 50%;
    --my: 50%;
}

.skywards-card::before,
.wallet-card::before {
    background:
        radial-gradient(260px circle at var(--mx) var(--my), rgba(255,255,255,.16), transparent 68%),
        rgba(246,139,32,.16);
    transition: background-position .2s ease;
}

.brand-badge {
    position: relative;
}

.brand-badge::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid rgba(246,139,32,0);
    transition: inset .45s var(--motion-ease), border-color .45s ease, box-shadow .45s ease;
}

.brand-item:hover .brand-badge::after {
    inset: -6px;
    border-color: rgba(246,139,32,.35);
    box-shadow: 0 0 0 5px rgba(246,139,32,.06);
}

html.js-premium .premium-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity .95s var(--motion-ease),
        transform .95s var(--motion-ease);
}

html.js-premium .premium-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

html.js-premium .premium-delay-1 { transition-delay: .12s; }
html.js-premium .premium-delay-2 { transition-delay: .24s; }
html.js-premium .premium-delay-3 { transition-delay: .36s; }
html.js-premium .premium-delay-4 { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
    .hero-card::before,
    .hero-card header,
    .hero-card .scroll-cue,
    .service-image::before,
    .xpel-image-wrap::after,
    .brand-track {
        animation: none !important;
    }

    .about-photo::before,
    .excellence-tile-body,
    .service-list li,
    .card-footer,
    .brand-badge::after {
        transition: none !important;
    }

    html.js-premium .premium-reveal,
    html.js-premium .premium-reveal.visible {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
