:root {
    --bg: #070a12;
    --panel: rgba(18, 24, 42, .72);
    --panel-strong: rgba(18, 24, 42, .92);
    --line: rgba(255, 255, 255, .09);
    --text: #f7fbff;
    --muted: rgba(247, 251, 255, .58);
    --faint: rgba(247, 251, 255, .34);
    --blue: #55aaff;
    --cyan: #4fd8d0;
    --green: #35d07f;
    --orange: #ffad42;
    --red: #ff6262;
    --shadow: 0 22px 70px rgba(0, 0, 0, .36);
    --soft-shadow: 0 12px 34px rgba(0, 0, 0, .22);
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.grid-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(720px 420px at 50% -10%, rgba(47, 158, 255, .16), transparent 72%),
        radial-gradient(520px 380px at 95% 15%, rgba(79, 216, 208, .08), transparent 70%),
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: auto, auto, 46px 46px, 46px 46px;
}

.grid-bg::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,10,18,.25), rgba(7,10,18,.92));
    content: "";
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    min-height: 74px;
    padding: 14px clamp(16px, 4vw, 48px);
    background: rgba(8, 11, 20, .84);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(22px);
}

.brand, .profile-pill, .nav, .login-pill, .menu-toggle { display: flex; align-items: center; }

.profile-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
}
.brand {
    position: relative;
    z-index: 2;
    gap: 12px;
    min-width: 210px;
}

.logo-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 0 28px rgba(79, 216, 208, .28);
}

.logo-icon svg {
    width: 23px;
    height: 23px;
    fill: #07111c;
}

.logo-copy strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .01em;
}

.logo-copy small {
    display: block;
    color: var(--muted);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    gap: 6px;
}

.nav a, .ghost-btn, .mini-btn, .tabs-mini button, .admin-tabs a, .login-pill {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255,255,255,.035);
    color: var(--muted);
    transition: .2s ease;
}

.nav a {
    padding: 8px 4px;
    border-color: transparent;
    background: transparent;
    font-size: 14px;
    font-weight: 450;
}

.nav a:hover, .ghost-btn:hover, .admin-tabs a.active, .admin-tabs a:hover, .login-pill:hover, .profile-pill:hover {
    color: var(--text);
}

.nav a:hover {
    border-color: transparent;
    background: transparent;
    color: var(--cyan);
}

.profile-pill, .login-pill {
    position: relative;
    z-index: 2;
    justify-self: end;
    gap: 8px;
    padding: 6px 10px 6px 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.035);
}

.profile-pill span, .login-pill b {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #6964ff, var(--blue));
    font-size: 12px;
    font-weight: 650;
}

.profile-pill b, .login-pill span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 450;
}

.login-pill {
    padding-left: 14px;
}

.login-pill b {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: #08101d;
}

.menu-toggle {
    display: none;
    position: relative;
    z-index: 2;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(255,255,255,.04);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    opacity: .72;
    transition: .2s ease;
}

.menu-toggle:hover,
.menu-toggle[aria-expanded="true"] {
    border-color: rgba(79,216,208,.32);
    background: rgba(79,216,208,.1);
}

.menu-toggle[aria-expanded="true"] span {
    background: var(--cyan);
    opacity: 1;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.page-shell {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 70px;
}

.content-narrow {
    width: min(900px, 100%);
    margin: 0 auto;
}

.admin-shell {
    width: min(1450px, 100%);
    margin: 0 auto;
}

.glass-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
}

.kicker {
    margin: 0 0 10px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .14em;
    text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 0; font-size: clamp(36px, 5vw, 56px); font-weight: 650; line-height: 1.03; letter-spacing: -.025em; }
h2 { font-size: 19px; font-weight: 600; letter-spacing: -.015em; }
.muted { color: var(--muted); }

.auth-page .page-shell {
    width: min(1180px, calc(100% - 32px));
    padding-top: 18px;
}

.auth-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 0;
}

.section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-bottom: 26px;
}

.section-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ghost-btn, .mini-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 14px;
    font-weight: 450;
    cursor: pointer;
}

.product-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .45fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: center;
    min-height: 430px;
    margin-bottom: 24px;
    padding: clamp(28px, 5vw, 58px);
    background:
        radial-gradient(680px 260px at 10% 0, rgba(85, 170, 255, .18), transparent 72%),
        radial-gradient(520px 230px at 95% 20%, rgba(79, 216, 208, .13), transparent 70%),
        rgba(18, 24, 42, .72);
}

.hero-lead {
    max-width: 690px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 350;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.gradient-link {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 13px;
    background: linear-gradient(100deg, var(--blue), var(--cyan));
    color: #08101d;
    font-weight: 650;
}

.gradient-link.large {
    min-height: 56px;
    padding-inline: 26px;
    border-radius: 16px;
    font-size: 16px;
}

.hero-terminal {
    padding: 24px;
    border: 1px solid rgba(79, 216, 208, .22);
    border-radius: 18px;
    background: rgba(6, 11, 22, .42);
    box-shadow: var(--soft-shadow);
}

.hero-terminal strong {
    display: block;
    margin: 14px 0 8px;
    font-size: 42px;
    font-weight: 650;
    color: var(--cyan);
}

.hero-occupancy {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.hero-occupancy strong {
    margin: 0;
    color: var(--text);
    font-size: clamp(36px, 5vw, 52px);
    line-height: 1;
}

.hero-occupancy span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 400;
}

.auth-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(360px, 500px);
    gap: clamp(28px, 7vw, 90px);
    align-items: center;
    min-height: calc(100vh - 120px);
}

.auth-layout-centered {
    grid-template-columns: minmax(320px, 532px);
    justify-content: center;
}

.registration-shell {
    display: grid;
    grid-template-columns: minmax(280px, .55fr) minmax(420px, .9fr);
    gap: clamp(22px, 5vw, 54px);
    align-items: start;
}

.registration-shell.is-minimal {
    grid-template-columns: minmax(320px, 720px);
    justify-content: center;
}

.registration-aside {
    position: sticky;
    top: 112px;
    padding: 32px;
}

.registration-aside h1 {
    margin-bottom: 16px;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.05;
}

.registration-summary {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
}

.registration-summary div,
.payment-summary div,
.final-panel div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,.035);
}

.registration-summary dt,
.payment-summary span,
.final-panel span {
    color: var(--muted);
    font-size: 13px;
}

.registration-summary dd,
.payment-summary strong,
.final-panel strong {
    margin: 0;
    color: var(--text);
    font-size: 17px;
    font-weight: 650;
}

.registration-card {
    padding: 34px 38px;
    overflow: hidden;
}

.registration-shell.is-minimal .registration-card {
    width: 100%;
}

.form-errors {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
    padding: 14px;
    border: 1px solid rgba(255,98,98,.38);
    border-radius: 14px;
    background: rgba(255,98,98,.08);
    color: #ffd6d6;
}

.form-errors.is-hidden {
    display: none;
}

.form-errors p {
    margin: 0;
}

.field-error {
    border-color: rgba(255,98,98,.72) !important;
    box-shadow: 0 0 0 4px rgba(255,98,98,.1) !important;
}

.registration-progress {
    grid-template-columns: repeat(5, 1fr);
}

.flow-step {
    display: none;
}

.flow-step.active {
    display: grid;
    gap: 16px;
}

.flow-step h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 600;
}

.flow-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 4px;
}

.flow-actions .gradient-btn {
    width: auto;
    min-width: 190px;
    padding-inline: 18px;
}

.intent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.intent-card {
    display: grid;
    gap: 10px;
    min-height: 150px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.035);
    color: var(--muted);
    text-align: left;
    cursor: pointer;
}

.intent-card b {
    color: var(--text);
    font-size: 18px;
    font-weight: 650;
}

.intent-card span {
    font-size: 14px;
    line-height: 1.45;
}

.intent-card.active,
.intent-card:hover {
    border-color: rgba(79,216,208,.42);
    background: rgba(79,216,208,.1);
}

.vehicle-list {
    display: grid;
    gap: 12px;
}

.vehicle-form-row {
    display: grid;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.025);
}

.add-vehicle-btn {
    justify-self: start;
}

.category-grid em {
    color: var(--text);
    font-size: 12px;
    font-style: normal;
}

.parking-info-panel {
    display: grid;
    grid-template-columns: minmax(180px, .45fr) 1fr;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.03);
}

.parking-info-panel img {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    border-radius: 14px;
    background: rgba(255,255,255,.03);
}

.parking-info-panel h3 {
    margin: 6px 0 8px;
    font-size: 24px;
}

.payment-summary,
.final-panel {
    display: grid;
    gap: 10px;
}

.auth-aside h1 {
    max-width: 620px;
}

.auth-aside .muted {
    max-width: 560px;
    margin-top: 18px;
    font-size: 18px;
    font-weight: 350;
}

.auth-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 620px;
    margin-top: 30px;
    overflow: hidden;
    border-radius: 18px;
}

.auth-proof div {
    padding: 18px;
    background: rgba(255,255,255,.025);
}

.auth-proof strong {
    display: block;
    color: var(--cyan);
    font-size: 25px;
    font-weight: 650;
}

.auth-proof span {
    color: var(--muted);
    font-size: 13px;
}

.auth-card {
    width: 100%;
    padding: 34px 38px;
}

.auth-mode {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 24px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,.035);
}

.auth-progress {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}

.auth-progress span {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 7px 9px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255,255,255,.03);
    color: var(--faint);
    font-size: 13px;
}

.auth-progress b {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.auth-progress span.active {
    border-color: rgba(79, 216, 208, .34);
    background: rgba(79, 216, 208, .09);
    color: var(--text);
}

.auth-progress span[data-complete="true"] {
    border-color: rgba(79, 216, 208, .22);
    background: rgba(79, 216, 208, .055);
    color: var(--muted);
}

.auth-progress span.active b {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: #08101d;
}

.auth-progress span[data-complete="true"] b {
    background: rgba(79, 216, 208, .18);
    color: var(--cyan);
}

.auth-mode button {
    min-height: 36px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.auth-mode button.active {
    background: rgba(85,170,255,.14);
    color: var(--text);
}

.step-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
}

.step-dots span, .step-dots i {
    display: block;
    width: 10px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
}

.step-dots span {
    width: 27px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.auth-card h1 {
    margin-bottom: 14px;
    font-size: clamp(31px, 7vw, 42px);
}

.auth-card h2 {
    margin: 0 0 10px;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -.02em;
}

.auth-card h1 span {
    color: var(--cyan);
}

.auth-switch {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 14px;
}

.auth-switch a {
    color: var(--cyan);
    font-weight: 650;
}

.dark-form {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.dark-form label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.code-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 9px;
}

.code-grid input {
    padding: 0;
    text-align: center;
    font-size: 20px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.category-grid button {
    display: grid;
    gap: 4px;
    min-height: 58px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(255,255,255,.04);
    color: var(--muted);
    cursor: pointer;
}

.category-grid button[data-selected="true"],
.category-grid button[data-hovered="true"] {
    border-color: rgba(79, 216, 208, .42);
    background: rgba(79, 216, 208, .1);
    color: var(--text);
}

.category-grid[data-hovering="true"] button[data-selected="true"],
.category-grid[data-hovering="true"] button[data-hovered="true"] {
    border-color: rgba(79, 216, 208, .42) !important;
    background: rgba(79, 216, 208, .1) !important;
    color: var(--text) !important;
}

.category-grid button:focus {
    outline: none;
}

.category-grid button:focus-visible {
    box-shadow: 0 0 0 3px rgba(79,216,208,.18);
}

.category-grid b {
    color: var(--cyan);
    font-size: 18px;
    font-weight: 650;
}

.category-grid span {
    font-size: 13px;
}

input {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: 12px;
    outline: none;
    background: rgba(255,255,255,.045);
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
}

input:focus {
    border-color: rgba(85, 170, 255, .58);
    box-shadow: 0 0 0 4px rgba(85, 170, 255, .09);
}

input::placeholder { color: rgba(255,255,255,.28); }

.plate-input {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255,255,255,.045);
}

.plate-input input {
    border: 0;
    background: transparent;
}

.plate-input b {
    margin-right: 10px;
    padding: 3px 7px;
    border-radius: 7px;
    background: rgba(85,170,255,.16);
    color: var(--blue);
    font-size: 12px;
}

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--faint);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.divider::before, .divider::after {
    flex: 1;
    height: 1px;
    background: var(--line);
    content: "";
}

.gradient-btn {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 13px;
    background: linear-gradient(100deg, var(--blue), var(--cyan));
    color: #08101d;
    font-size: 16px;
    font-weight: 650;
    cursor: pointer;
    box-shadow: 0 12px 34px rgba(79,216,208,.2);
}

.agreement-list {
    display: grid;
    gap: 9px;
}

.agreement-check {
    display: grid !important;
    grid-template-columns: auto 1fr;
    gap: 10px !important;
    align-items: start;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(255,255,255,.028);
    color: var(--muted) !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    line-height: 1.45;
    text-transform: none !important;
}

.agreement-check input {
    width: 18px;
    min-height: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--cyan);
}

.agreement-check a,
.site-footer a {
    color: var(--cyan);
}

.agreement-check .field-error {
    outline: 2px solid rgba(255,98,98,.58);
    outline-offset: 2px;
}

.legal-page {
    padding-top: 28px;
}

.legal-card {
    padding: clamp(24px, 5vw, 42px);
}

.legal-card h1 {
    margin-bottom: 18px;
}

.legal-card .gradient-link {
    margin-top: 12px;
}

.site-footer {
    border-top: 1px solid var(--line);
    background:
        radial-gradient(520px 240px at 20% 0, rgba(85,170,255,.08), transparent 70%),
        rgba(8, 11, 20, .72);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(280px, .65fr) minmax(360px, 1fr);
    gap: clamp(28px, 8vw, 120px);
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 36px 0 30px;
}

.footer-contacts {
    color: var(--muted);
    font-size: 14px;
}

.footer-contacts h2 {
    margin: 0 0 16px;
    color: var(--text);
    font-size: 15px;
    font-weight: 650;
}

.footer-contacts p {
    margin: 0 0 10px;
}

.footer-contacts strong {
    color: var(--text);
    font-weight: 600;
}

.footer-documents {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 22px;
    align-self: center;
}

.footer-documents a {
    color: rgba(247,251,255,.68);
    font-size: 14px;
    transition: .2s ease;
}

.footer-documents a:hover {
    color: var(--cyan);
}

.footer-copy {
    grid-column: 1 / -1;
    margin: 20px 0 0;
    color: var(--faint);
    text-align: center;
    font-size: 13px;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 26px;
}

.car-card {
    display: block;
    padding: 32px;
    transition: .25s ease;
}

.car-card:hover {
    transform: translateY(-5px);
    border-color: rgba(85,170,255,.42);
    background: rgba(24, 32, 54, .86);
}

.car-art {
    display: grid;
    min-height: 130px;
    place-items: center;
}

.car-art img {
    width: min(260px, 100%);
    opacity: .72;
    filter:
        invert(1)
        drop-shadow(0 0 22px rgba(255,255,255,.08));
}

.car-card h2 {
    margin: 8px 0 8px;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
}

.plate {
    display: table;
    margin: 0 auto;
    padding: 4px 12px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.64);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .16em;
}

.car-data, .list-data {
    display: grid;
    gap: 13px;
    margin: 26px 0 0;
}

.car-data div, .list-data div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

dt { color: var(--faint); }
dd { margin: 0; font-weight: 550; }

.form-alert {
    margin: 0 0 18px;
    padding: 14px 16px;
    border: 1px solid rgba(79,216,208,.24);
    border-radius: 14px;
    background: rgba(79,216,208,.08);
    color: var(--text);
    font-size: 14px;
    font-weight: 550;
}

.status-badge, .active-chip, .blue-chip, .status-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 550;
}

.status-badge::before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    content: "";
}

.status-badge.parked, .active-chip, .status-chip {
    border: 1px solid rgba(53,208,127,.42);
    background: rgba(53,208,127,.13);
    color: var(--green);
}

.status-badge.away {
    border: 1px solid rgba(255,173,66,.42);
    background: rgba(255,173,66,.13);
    color: var(--orange);
}

.anti-theft-control {
    margin-top: 18px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.035);
}

.anti-theft-control label {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    cursor: pointer;
}

.anti-theft-control strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
    font-size: 17px;
    font-weight: 650;
}

.anti-theft-control small {
    color: var(--muted);
    font-size: 13px;
}

.anti-theft-control input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.anti-theft-control i {
    position: relative;
    width: 54px;
    height: 30px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    transition: .18s ease;
}

.anti-theft-control i::after {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,.72);
    transition: .18s ease;
    content: "";
}

.anti-theft-control input:checked + i {
    border-color: rgba(255,98,98,.46);
    background: rgba(255,98,98,.16);
}

.anti-theft-control input:checked + i::after {
    left: 28px;
    background: var(--red);
    box-shadow: 0 0 18px rgba(255,98,98,.32);
}

.anti-theft-control input:disabled + i {
    opacity: .42;
}

.anti-theft-control:has(input:disabled) label {
    cursor: not-allowed;
}

.anti-theft-control.is-submitting {
    opacity: .72;
    pointer-events: none;
}

.days-left {
    margin: 22px 0 0;
    color: var(--faint);
    text-align: center;
}

.vehicle-strip-wrap {
    position: relative;
    margin-bottom: 22px;
}

.vehicle-strip {
    display: grid;
    grid-auto-columns: calc((100% - 32px) / 3);
    grid-auto-flow: column;
    justify-content: center;
    gap: 16px;
    overflow-x: auto;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.vehicle-tile {
    display: grid;
    min-height: 190px;
    padding: 18px;
    border: 1px solid var(--line);
    text-align: left;
    cursor: pointer;
    scroll-snap-align: start;
}

.vehicle-tile:hover,
.vehicle-tile.active,
.vehicle-add-card:hover {
    border-color: rgba(79,216,208,.62);
    background: rgba(22, 35, 54, .88);
}

.vehicle-tile img {
    width: 150px;
    max-width: 70%;
    margin: 2px auto 10px;
    opacity: .72;
    filter: invert(1) drop-shadow(0 0 18px rgba(255,255,255,.08));
}

.vehicle-tile strong {
    margin-top: 12px;
    color: var(--text);
    font-size: 20px;
    font-weight: 650;
}

.vehicle-tile .plate {
    margin: 8px 0 0;
}

.vehicle-tile small {
    margin-top: 10px;
    color: var(--muted);
}

.vehicle-add-card {
    align-content: center;
    justify-items: center;
    color: var(--text);
    text-align: center;
    text-decoration: none;
}

.add-card-icon {
    display: grid;
    width: 74px;
    height: 74px;
    place-items: center;
    border: 1px solid rgba(79,216,208,.42);
    border-radius: 50%;
    background: rgba(79,216,208,.1);
    color: var(--cyan);
    font-size: 34px;
    font-weight: 500;
}

.vehicle-add-card strong {
    margin-top: 18px;
}

.vehicle-strip-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(13, 18, 31, .9);
    color: var(--text);
    cursor: pointer;
    transform: translateY(-50%);
}

.vehicle-strip-arrow.prev { left: -18px; }
.vehicle-strip-arrow.next { right: -18px; }

.vehicle-detail-panel {
    display: none;
}

.vehicle-detail-panel.active {
    display: block;
}

.vehicle-hero {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 34px;
    margin-bottom: 24px;
    background:
        radial-gradient(520px 160px at 60% 0, rgba(53,208,127,.18), transparent 70%),
        var(--panel);
}

.vehicle-ring {
    display: grid;
    width: 92px;
    height: 92px;
    place-items: center;
    border: 2px solid rgba(53,208,127,.55);
    border-radius: 50%;
    box-shadow: 0 0 34px rgba(53,208,127,.18);
}

.vehicle-ring svg {
    width: 34px;
    fill: var(--green);
}

.vehicle-ring img {
    width: 42px;
    opacity: .95;
    filter: invert(66%) sepia(83%) saturate(483%) hue-rotate(102deg) brightness(94%) contrast(88%);
}

.vehicle-hero h2 {
    margin: 0;
    font-size: clamp(40px, 5vw, 56px);
    line-height: 1;
}

.vehicle-hero .plate { margin: 7px 0 10px; }

.live-dot {
    margin-bottom: 6px;
    color: var(--green);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.parking-time {
    text-align: right;
}

.parking-time span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 550;
    text-transform: uppercase;
}

.parking-time strong {
    color: var(--green);
    font-size: 28px;
    font-weight: 650;
}

.metric-grid, .stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.metric-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stat-grid.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.metric-card, .stat-card {
    padding: 22px;
}

.metric-card p, .stat-card span {
    margin: 0 0 8px;
    color: var(--faint);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.metric-card strong, .stat-card strong {
    display: block;
    font-size: 28px;
    font-weight: 650;
    line-height: 1.1;
}

.metric-card small, .stat-card small {
    color: var(--muted);
}

.stat-card strong { color: var(--cyan); }
.stat-card.danger strong { color: var(--red); }
.stat-card.money strong { color: var(--orange); }

.detail-layout, .launch-grid, .admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.launch-grid { grid-template-columns: minmax(0, 1.4fr) minmax(340px, .65fr); }
.admin-grid { margin-bottom: 22px; }

.info-panel, .table-card, .scheme-panel {
    padding: 24px;
}

.panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.panel-head h2 { margin: 0; }
.panel-head a { color: var(--blue); font-size: 13px; }

.success { color: var(--green); }
.warning { color: var(--orange); }

.event-feed {
    display: grid;
    gap: 18px;
}

.event {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
}

.event i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px rgba(53,208,127,.6);
}

.event.out i {
    background: var(--red);
    box-shadow: 0 0 12px rgba(255,98,98,.55);
}

.event span, .event time {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.admin-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    overflow-x: auto;
}

.admin-tabs a {
    padding: 9px 13px;
    white-space: nowrap;
}

.scheme-panel img {
    display: block;
    width: 100%;
    max-height: 620px;
    object-fit: contain;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.04);
}

.carousel-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

.carousel-dots {
    display: flex;
    gap: 6px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(255,255,255,.035);
}

.carousel-dots button,
.carousel-arrow {
    min-height: 32px;
    padding: 6px 12px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
}

.carousel-dots button.active {
    background: rgba(79,216,208,.13);
    color: var(--text);
}

.carousel-arrow {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    background: rgba(5, 9, 17, .68);
    font-size: 18px;
    backdrop-filter: blur(14px);
}

.carousel-arrow:hover {
    border-color: rgba(79,216,208,.36);
    color: var(--cyan);
}

.parking-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

.parking-carousel .carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%);
    transition: opacity .18s ease, transform .18s ease, border-color .18s ease;
}

.parking-carousel:hover .carousel-arrow,
.parking-carousel:focus-within .carousel-arrow {
    opacity: 1;
    pointer-events: auto;
}

.parking-carousel .carousel-arrow.prev {
    left: 18px;
    transform: translate(-8px, -50%);
}

.parking-carousel .carousel-arrow.next {
    right: 18px;
    transform: translate(8px, -50%);
}

.parking-carousel:hover .carousel-arrow.prev,
.parking-carousel:focus-within .carousel-arrow.prev {
    transform: translate(0, -50%);
}

.parking-carousel:hover .carousel-arrow.next,
.parking-carousel:focus-within .carousel-arrow.next {
    transform: translate(0, -50%);
}

.parking-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.parking-track::-webkit-scrollbar {
    display: none;
}

.parking-slide {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 12px;
    flex: 0 0 100%;
    min-height: clamp(390px, 62vw, 660px);
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.025);
    scroll-snap-align: start;
}

.parking-slide.active {
    border-color: rgba(79,216,208,.28);
}

.parking-slide img {
    height: 100%;
    max-height: 620px;
}

.parking-empty-media {
    display: grid;
    min-height: 420px;
    place-items: center;
    align-content: center;
    gap: 12px;
    padding: 36px;
    border: 1px dashed rgba(79,216,208,.36);
    border-radius: 14px;
    color: var(--muted);
    text-align: center;
}

.parking-empty-media span {
    color: var(--cyan);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.parking-empty-media strong {
    color: var(--text);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 600;
}

.parking-empty-media small {
    max-width: 430px;
    font-size: 14px;
    line-height: 1.5;
}

.slide-caption span {
    color: var(--cyan);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.slide-caption {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(5, 9, 17, .48);
    backdrop-filter: blur(16px);
}

.slide-caption strong {
    display: block;
    margin-top: 3px;
    font-weight: 550;
}

.tariffs-section {
    margin-top: 22px;
}

.parking-cta {
    display: flex;
    justify-content: center;
    padding: 22px 0 0;
}

.tariff-list {
    display: grid;
    gap: 14px;
}

.tariff-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.035);
}

.tariff-row b {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    background: rgba(85,170,255,.14);
    color: var(--blue);
}

.tariff-row.green b { background: rgba(53,208,127,.13); color: var(--green); }
.tariff-row.orange b { background: rgba(255,173,66,.13); color: var(--orange); }
.tariff-row span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.tariff-row em {
    color: var(--cyan);
    font-style: normal;
    font-weight: 650;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 13px 10px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

th {
    color: var(--faint);
    font-size: 11px;
    text-transform: uppercase;
}

td {
    color: rgba(255,255,255,.82);
    font-size: 13px;
}

.table-search {
    width: min(240px, 45%);
    min-height: 34px;
    padding: 8px 11px;
}

.blue-chip {
    border: 1px solid rgba(85,170,255,.42);
    background: rgba(85,170,255,.13);
    color: var(--blue);
}

.approval-list {
    display: grid;
    gap: 12px;
}

.approval-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(255,255,255,.035);
}

.approval-item span {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.approval-item button, .tabs-mini button {
    min-height: 30px;
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: rgba(255,255,255,.04);
    color: var(--muted);
    cursor: pointer;
}


.tabs-mini {
    display: flex;
    gap: 6px;
}

@media (max-width: 980px) {
    .topbar {
        grid-template-columns: 1fr auto;
        gap: 14px 18px;
    }
    .brand {
        min-width: 0;
    }
    .nav {
        position: static;
        grid-column: 1 / -1;
        transform: none;
        justify-content: center;
        overflow-x: auto;
    }
    .profile-actions,
    .profile-pill,
    .login-pill {
        justify-self: end;
    }
    .cars-grid,
    .vehicle-hero,
    .metric-grid,
    .stat-grid,
    .detail-layout,
    .launch-grid,
    .admin-grid,
    .product-hero,
    .auth-layout,
    .registration-shell,
    .auth-progress,
    .registration-progress,
    .stat-grid.compact {
        grid-template-columns: 1fr;
    }
    .registration-aside {
        position: static;
    }
    .parking-time {
        text-align: left;
    }
    .vehicle-strip {
        grid-auto-columns: minmax(260px, 72vw);
    }
    .vehicle-strip-arrow {
        display: none;
    }
}

@media (max-width: 620px) {
    html {
        scroll-padding-top: 76px;
    }
    .topbar {
        grid-template-columns: minmax(0, 1fr) auto auto;
        grid-template-areas:
            "brand menu action";
        gap: 11px 12px;
        min-height: 0;
        padding: 12px 15px;
        background:
            linear-gradient(180deg, rgba(9, 14, 26, .98), rgba(8, 12, 22, .94)),
            rgba(8, 11, 20, .94);
    }
    .brand {
        grid-area: brand;
        gap: 10px;
        min-width: 0;
    }
    .logo-icon {
        width: 39px;
        height: 39px;
        border-radius: 12px;
        flex: 0 0 39px;
    }
    .logo-copy strong {
        font-size: 15px;
        line-height: 1.15;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .logo-copy small {
        font-size: 9px;
        letter-spacing: .16em;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .nav {
        grid-area: nav;
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        right: 15px;
        width: 168px;
        transform: none;
        grid-template-columns: 1fr;
        gap: 3px;
        justify-content: stretch;
        padding: 5px;
        border: 1px solid var(--line);
        border-radius: 15px;
        background: rgba(11, 16, 29, .98);
        box-shadow: 0 14px 36px rgba(0,0,0,.34);
        backdrop-filter: blur(22px);
    }
    .topbar.menu-open .nav {
        display: grid;
    }
    .nav a {
        display: flex;
        min-height: 34px;
        align-items: center;
        justify-content: flex-start;
        padding: 7px 10px;
        border-radius: 10px;
        color: rgba(247,251,255,.74);
        font-size: 13px;
        font-weight: 550;
        text-align: left;
    }
    .nav a::before {
        content: none;
    }
    .nav a:hover,
    .nav a:focus-visible {
        background: rgba(79,216,208,.1);
        color: var(--text);
    }
    .menu-toggle {
        display: flex;
        grid-area: menu;
        justify-self: end;
        transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
    }
    .profile-actions {
        grid-area: action;
        align-items: flex-end;
        gap: 6px;
        justify-self: end;
    }
    .profile-pill {
        max-width: 155px;
        padding: 5px 8px 5px 5px;
    }
    .profile-pill span,
    .login-pill b {
        width: 28px;
        height: 28px;
        flex: 0 0 28px;
    }
    .profile-pill b {
        overflow: hidden;
        max-width: 92px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .login-pill {
        grid-area: action;
        justify-self: end;
        min-height: 40px;
        padding: 5px 6px 5px 11px;
        border-color: rgba(255,255,255,.08);
        background: rgba(255,255,255,.04);
    }
    .page-shell {
        width: min(100% - 20px, 1200px);
        padding: 16px 0 42px;
    }
    .auth-page .page-shell {
        width: min(100% - 16px, 720px);
        padding: 12px 0 28px;
    }
    .auth-topbar {
        width: min(100% - 20px, 720px);
        align-items: flex-start;
        padding-top: 12px;
        gap: 10px;
    }
    .auth-topbar .brand {
        max-width: calc(100% - 124px);
        gap: 10px;
    }
    .auth-topbar .logo-copy {
        min-width: 0;
    }
    .auth-topbar .logo-copy strong,
    .auth-topbar .logo-copy small {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .auth-switch {
        align-items: center;
        flex-direction: column;
        gap: 6px;
    }
    .auth-card,
    .car-card,
    .vehicle-hero,
    .info-panel,
    .table-card,
    .scheme-panel,
    .registration-card,
    .glass-card {
        border-radius: 17px;
    }
    .auth-card,
    .registration-card,
    .info-panel,
    .table-card,
    .scheme-panel {
        padding: 18px;
    }
    .product-hero {
        min-height: 0;
        gap: 22px;
        padding: 24px 20px;
        margin-bottom: 18px;
    }
    .product-hero h1 {
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1.06;
    }
    .hero-lead {
        margin-top: 16px;
        font-size: 16px;
        line-height: 1.55;
    }
    .hero-actions,
    .parking-cta {
        margin-top: 22px;
    }
    .gradient-link,
    .gradient-link.large,
    .gradient-btn {
        width: 100%;
        min-height: 52px;
        border-radius: 13px;
    }
    .hero-terminal {
        padding: 18px;
    }
    .hero-terminal strong {
        margin: 12px 0 4px;
        font-size: 38px;
    }
    .section-title-row {
        gap: 12px;
        margin-bottom: 18px;
    }
    .section-title-row h1 {
        font-size: 38px;
    }
    .vehicle-tile {
        min-height: 170px;
        padding: 16px;
    }
    .vehicle-hero {
        gap: 18px;
        padding: 20px;
    }
    .vehicle-hero h2 {
        font-size: 34px;
    }
    .vehicle-strip {
        grid-auto-columns: minmax(238px, 82vw);
        justify-content: start;
    }
    .vehicle-ring {
        width: 68px;
        height: 68px;
    }
    .parking-time {
        text-align: left;
    }
    .form-grid,
    .intent-grid,
    .parking-info-panel,
    .section-title-row,
    .section-actions,
    .approval-item {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }
    .table-card {
        overflow-x: auto;
    }
    table {
        min-width: 640px;
    }
    .auth-proof {
        grid-template-columns: 1fr;
    }
    .code-grid,
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .category-grid {
        gap: 8px;
    }
    .category-grid button {
        min-height: 74px;
        padding: 8px 6px;
    }
    .category-grid span {
        font-size: 11px;
        line-height: 1.25;
    }
    .category-grid em {
        font-size: 11px;
    }
    .registration-progress {
        display: flex;
        align-items: center;
        gap: 8px;
        max-width: 100%;
        margin: 0 0 22px;
        padding: 4px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: rgba(255,255,255,.025);
    }
    .registration-progress span {
        flex: 1 1 18px;
        min-width: 0;
        min-height: 5px;
        padding: 0;
        border: 0;
        border-radius: 999px;
        background: rgba(255,255,255,.13);
        color: transparent;
        font-size: 0;
        overflow: hidden;
    }
    .registration-progress span[data-complete="true"] {
        background: linear-gradient(90deg, rgba(85,170,255,.72), rgba(79,216,208,.72));
    }
    .registration-progress span.active {
        flex: 0 0 auto;
        width: min(178px, 58vw);
        min-height: 38px;
        padding: 6px 12px 6px 7px;
        border: 1px solid rgba(79, 216, 208, .38);
        background:
            linear-gradient(90deg, rgba(85,170,255,.18), rgba(79,216,208,.12)),
            rgba(255,255,255,.035);
        color: var(--text);
        font-size: 12px;
        font-weight: 650;
        letter-spacing: 0;
        white-space: nowrap;
        box-shadow: 0 10px 28px rgba(79,216,208,.08);
    }
    .registration-progress span b {
        display: inline-grid;
        width: 24px;
        height: 24px;
        margin-right: 7px;
        place-items: center;
        background: linear-gradient(135deg, var(--blue), var(--cyan));
        color: #08101d;
        vertical-align: middle;
    }
    .registration-progress span.active b {
        box-shadow: none;
    }
    .registration-progress span:not(.active) b {
        display: none;
    }
    .flow-step {
        gap: 14px;
    }
    .flow-step h2,
    .auth-card h1 {
        font-size: 28px;
        line-height: 1.12;
    }
    .dark-form {
        gap: 14px;
        margin-top: 22px;
    }
    input {
        min-height: 54px;
        font-size: 16px;
    }
    .flow-actions,
    .flow-actions .gradient-btn,
    .flow-actions .ghost-btn {
        width: 100%;
    }
    .flow-actions {
        gap: 10px;
    }
    .intent-card {
        min-height: 0;
        padding: 15px;
    }
    .vehicle-form-row {
        padding: 14px;
    }
    .agreement-check {
        padding: 11px;
        font-size: 12px !important;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        width: min(100% - 32px, 720px);
        padding: 28px 0 26px;
    }
    .footer-contacts {
        font-size: 13px;
    }
    .footer-documents {
        grid-template-columns: 1fr;
        gap: 11px;
        padding-top: 2px;
        text-align: center;
    }
    .footer-documents a {
        font-size: 13px;
    }
    .footer-copy {
        margin-top: 8px;
    }
    .payment-summary div,
    .final-panel div {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }
    .panel-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
    .carousel-controls {
        width: 100%;
        justify-content: space-between;
    }
    .carousel-dots {
        flex: 1;
    }
    .carousel-dots button {
        flex: 1;
    }
    .parking-carousel .carousel-arrow {
        display: none;
    }
    .parking-slide {
        min-height: 330px;
        padding: 10px;
    }
    .parking-slide img {
        max-height: 360px;
    }
    .parking-empty-media {
        min-height: 280px;
        padding: 24px 16px;
    }
    .slide-caption {
        padding: 12px;
    }
    .tariff-row {
        grid-template-columns: auto 1fr;
        gap: 12px;
    }
    .tariff-row em {
        grid-column: 2;
        justify-self: start;
    }
    .event {
        grid-template-columns: auto 1fr;
    }
    .event time {
        grid-column: 2;
    }
}
