:root {
    --bg: #050505;
    --bg2: #0b0b0b;
    --panel: rgba(10, 10, 10, .72);
    --panelSolid: #0d0d0f;
    --text: #ffffff;
    --muted: rgba(255, 255, 255, .72);
    --muted2: rgba(255, 255, 255, .58);
    --line: rgba(255, 255, 255, .12);
    --line2: rgba(255, 255, 255, .18);

    --red: #e10600;
    --red2: #ff2b24;

    --radius: 22px;
    --radius2: 16px;

    --shadow: 0 18px 60px rgba(0, 0, 0, .55);
    --max: 1180px;

    --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    background: radial-gradient(1200px 600px at 20% 0%, rgba(225, 6, 0, .18), transparent 60%),
        radial-gradient(900px 600px at 85% 10%, rgba(225, 6, 0, .12), transparent 55%),
        var(--bg);
    color: var(--text);
    font-family: var(--font);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.wrap {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 18px;
}

.skip {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip:focus {
    left: 18px;
    top: 18px;
    width: auto;
    height: auto;
    padding: 10px 12px;
    border-radius: 12px;
    background: #fff;
    color: #000;
    z-index: 9999;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, .58);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.topbar__in {
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
}

.brand img {
    height: 72px;
    width: auto;
    max-width: 280px;
}

.actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone {
    font-weight: 700;
    letter-spacing: .02em;
    font-size: 13px;
    color: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone span {
    opacity: .85;
    font-weight: 600;
}

.phone a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(0, 0, 0, .35);
}

.phone a:hover {
    border-color: rgba(255, 255, 255, .24);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(0, 0, 0, .35);
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    cursor: pointer;
    user-select: none;
}

.btn:hover {
    border-color: rgba(255, 255, 255, .30);
}

.btn--solid {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.btn--red {
    background: linear-gradient(180deg, var(--red2), var(--red));
    color: #fff;
    border-color: rgba(225, 6, 0, .55);
    box-shadow: 0 16px 44px rgba(225, 6, 0, .20);
}

.btn--red:hover {
    filter: brightness(1.02);
    border-color: rgba(255, 43, 36, .70);
}

.iconBtn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(0, 0, 0, .35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.iconBtn:hover {
    border-color: rgba(255, 255, 255, .30);
}

.hamburger {
    width: 18px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger i {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 10px;
    opacity: .95;
}

.main {
    padding-top: 68px;
}

.hero {
    position: relative;
    min-height: 76vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: #000;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.05);
    transform: scale(1.03);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px 680px at 50% 25%, rgba(0, 0, 0, .18), rgba(0, 0, 0, .78) 65%, rgba(0, 0, 0, .90)),
        linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .55) 55%, rgba(0, 0, 0, .78));
}

.hero__in {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 44px 0;
}

.hero__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    padding: 38px 0 20px;
}

.badge {
    width: min(360px, 72vw);
    filter: drop-shadow(0 20px 70px rgba(0, 0, 0, .75));
}

.catch {
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: clamp(26px, 3.4vw, 46px);
    line-height: 1.03;
    text-shadow: 0 14px 60px rgba(0, 0, 0, .72);
}

.hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero__sub {
    margin-top: 12px;
    color: rgba(255, 255, 255, .70);
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.bannerPlaceholder {
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.bannerPlaceholder__in {
    padding: 22px 0;
    color: rgba(255, 255, 255, .72);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-weight: 800;
    font-size: 12px;
}

.bannerPlaceholder__box {
    width: 100%;
    border: 1px dashed rgba(255, 255, 255, .22);
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    background: rgba(0, 0, 0, .25);
}

.section {
    padding: 34px 0;
}

.section h2 {
    margin: 0 0 12px;
    font-size: 22px;
    letter-spacing: .02em;
}

.section p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.6;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.card {
    border: 1px solid var(--line);
    border-radius: var(--radius2);
    background: rgba(0, 0, 0, .35);
    padding: 16px;
}

.card h3 {
    margin: 0 0 8px;
    font-size: 14px;
    letter-spacing: .02em;
}

.card p {
    margin: 0;
    color: rgba(255, 255, 255, .70);
    font-size: 13px;
}

.panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, .35);
    padding: 18px;
}

.footer {
    border-top: 1px solid var(--line);
    margin-top: 28px;
    padding: 18px 0;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
}

.footer__in {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.footer a {
    color: rgba(255, 255, 255, .70);
}

.footer a:hover {
    color: #fff;
}

.offcanvas {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: none;
}

.offcanvas.isOpen {
    display: block;
}

.offcanvas__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .62);
}

.offcanvas__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(360px, 92vw);
    height: 100%;
    background: rgba(8, 8, 10, .98);
    border-left: 1px solid rgba(255, 255, 255, .14);
    box-shadow: var(--shadow);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.offcanvas__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.offcanvas__title {
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: 12px;
    color: rgba(255, 255, 255, .70);
}

.menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
}

.menu a {
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 12px;
}

.menu a:hover {
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .06);
}

.menu .menu__note {
    margin-top: 8px;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    line-height: 1.5;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
}

.modal.isOpen {
    display: block;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .72);
}

.modal__panel {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(1100px, 96vw);
    height: min(760px, 88vh);
    background: rgba(8, 8, 10, .98);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.modal__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.modal__bar strong {
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .70);
}

.modal__frame {
    width: 100%;
    height: 100%;
    border: 0;
    background: #000;
}

.modal__body {
    flex: 1;
    min-height: 0;
    overflow: auto;
    padding: 14px;
}

.fleetWidgetShell {
    height: 100%;
    min-height: 560px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    background: rgba(0, 0, 0, .35);
    overflow: hidden;
}

@media (max-width: 920px) {
    .modal__panel {
        width: 96vw;
        height: 90vh;
    }

    .fleetWidgetShell {
        min-height: 520px;
    }
}

.pageHero {
    padding: 26px 0 10px;
}

.pageHero h1 {
    margin: 0;
    font-size: 30px;
    letter-spacing: .02em;
}

.pageHero p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .72);
    max-width: 860px;
    line-height: 1.6;
}

.form {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form .full {
    grid-column: 1 / -1;
}

.label {
    display: block;
    font-size: 12px;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .62);
    font-weight: 900;
    margin-bottom: 8px;
}

.input,
.textarea,
.select {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(0, 0, 0, .35);
    color: #fff;
    outline: none;
}

.input:focus,
.textarea:focus,
.select:focus {
    border-color: rgba(255, 43, 36, .65);
    box-shadow: 0 0 0 4px rgba(225, 6, 0, .18);
}

.textarea {
    min-height: 140px;
    resize: vertical;
}

.help {
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    line-height: 1.5;
}

.tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.tab {
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .04);
    color: #fff;
    padding: 10px 12px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
}

.tab[aria-selected="true"] {
    border-color: rgba(255, 43, 36, .65);
    background: rgba(225, 6, 0, .16);
}

.accordion {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

details {
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .30);
    border-radius: 16px;
    padding: 12px 14px;
}

summary {
    cursor: pointer;
    list-style: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
}

details>div {
    margin-top: 10px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.6;
    font-size: 13px;
}

@media (max-width: 920px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .form {
        grid-template-columns: 1fr;
    }

    .phone {
        display: none;
    }

    .hero {
        min-height: 78vh;
    }
}