@layer mann-base{@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}.header {
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(40px);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 102px;
}.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 2rem;
    height: 70px;
    border-bottom: 1px solid var(--gray-100);
}.nav > * {
    animation: fadeInDown 0.8s ease-out both;
}.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.875rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}.contact-item:hover {
    background: var(--gray-50);
}.contact-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.05), transparent);
    transition: var(--transition);
}.contact-item:hover::before {
    left: 100%;
}.trust-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.5rem 0.875rem;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    cursor: default;
    position: relative;
    overflow: hidden;
}.trust-indicator:hover {
    background: var(--white);
    border-color: var(--accent-gold);
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}.trust-indicator::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.1), transparent);
    transition: var(--transition);
}.trust-indicator:hover::before {
    left: 100%;
}.btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.25rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}.btn:hover::before {
    left: 100%;
}.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 15px;
    animation-delay: 0.1s;
}.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2d5be3;
    border-radius: 2px;
}@media (max-width: 768px) {.section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }}.autopark-page,
.faq-page {
    background-color: #f8f9fa;
    margin-top: var(--page-top-offset);
    padding: 0;
    animation: fadeIn 0.6s ease-out forwards;
}.faq-hero {
    padding: 40px 0;
    background: #ffffff;
}.faq-hero-title,
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}.faq-hero-title {
    margin-bottom: 20px;
    color: #1a1a1a;
    opacity: 0;
    transform: translateY(30px);
    animation: modernFadeUp 0.8s ease forwards;
    animation-delay: 0.1s;
}.section-title {
    margin-bottom: 1rem;
    color: #1e293b;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.15s;
}.faq-hero-title .title-accent,
.section-title .title-accent {
    color: #2d5be3;
}.section-title .title-accent {
    position: relative;
    display: inline-block;
}@media (max-width: 768px) {.autopark-page,
    .faq-page {
        margin-top: var(--page-top-offset-mobile);
    }.faq-hero-title,
    .section-title {
        font-size: 1.8rem;
    }}.autopark-page .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}.autopark-page {
    padding-top: clamp(10px, 1.6vw, 18px);
    min-height: 100vh;
    color: #0f172a;
    background:
        radial-gradient(circle at 12% 0%, rgba(45, 91, 227, 0.09), transparent 34%),
        linear-gradient(180deg, #f7faff 0%, #ffffff 24%, #f8fbff 100%);
}.autopark-hero-section {
    padding: clamp(10px, 1.8vw, 20px) 0 clamp(40px, 5vw, 68px);
}.autopark-hero-card {
    padding: clamp(1.35rem, 2.7vw, 2.1rem);
    border-radius: 34px 34px 18px 18px;
    border: 1px solid rgba(205, 216, 245, .92);
    border-bottom-color: rgba(205, 216, 245, .54);
    background:
        radial-gradient(circle at 100% 0%, rgba(45, 91, 227, .10), transparent 35%),
        rgba(255, 255, 255, .94);
    box-shadow: 0 20px 58px rgba(15, 23, 42, .075);
}.autopark-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin: 0 0 .85rem;
    padding: .42rem .74rem;
    border-radius: 999px;
    color: #2d5be3;
    background: rgba(45, 91, 227, .08);
    border: 1px solid rgba(45, 91, 227, .12);
    font-size: .78rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}.autopark-hero-card h1 {
    max-width: 940px;
    margin: 0;
    color: #0f172a;
    font-size: clamp(2.1rem, 4.5vw, 4.15rem);
    line-height: .98;
    letter-spacing: -.058em;
    font-weight: 800;
}.autopark-hero-card p:not(.autopark-eyebrow) {
    max-width: 920px;
    margin: .9rem 0 0;
    color: #4b5870;
    font-size: clamp(.98rem, 1.25vw, 1.12rem);
    line-height: 1.62;
    font-weight: 500;
}.autopark-hero-tabs {
    display: flex;
    gap: .55rem;
    margin-top: 1.15rem;
}.autopark-hero-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: .58rem .88rem;
    border: 1px solid #cbd8ff;
    border-radius: 999px;
    background: #eef4ff;
    color: #2d5be3;
    cursor: pointer;
    font-family: inherit;
    font-size: .82rem;
    font-weight: 800;
    transition: color .18s ease, background .18s ease, transform .18s ease, border-color .18s ease;
}.autopark-hero-tab:hover,
.autopark-hero-tab:focus-visible,
.autopark-hero-tab.is-active {
    color: #fff;
    background: #2d5be3;
    border-color: #2d5be3;
    transform: translateY(-1px);
    outline: none;
}.autopark-carousel-dock {
    margin-top: -1px;
    padding: clamp(.85rem, 1.6vw, 1.15rem);
    border: 1px solid rgba(205, 216, 245, .92);
    border-top-color: rgba(205, 216, 245, .54);
    border-radius: 18px 18px 34px 34px;
    background:
        radial-gradient(circle at 0% 0%, rgba(45, 91, 227, .08), transparent 32%),
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,255,.98));
    box-shadow: 0 26px 70px rgba(15, 23, 42, .085);
}.fleet-carousel-panel {
    animation: fleetPanelIn .25s ease-out both;
}@keyframes fleetPanelIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}.fleet-panel-toolbar {
    align-items: center;
    justify-content: space-between;
    gap: .85rem;
    margin: 0 0 .85rem;
}.fleet-tonnage-tabs {
    gap: .45rem;
    padding: .52rem;
    border-radius: 20px;
    border: 1px solid rgba(205, 216, 245, .85);
    background: rgba(255, 255, 255, .78);
    flex: 1 1 auto;
}.fleet-tonnage-tab {
    min-height: 32px;
    padding: .44rem .68rem;
    border: 1px solid #cbd8ff;
    border-radius: 999px;
    background: #eef4ff;
    color: #2d5be3;
    cursor: pointer;
    font-family: inherit;
    font-size: .76rem;
    font-weight: 800;
    transition: color .18s ease, background .18s ease, transform .18s ease, border-color .18s ease;
}.fleet-tonnage-tab:hover,
.fleet-tonnage-tab:focus-visible,
.fleet-tonnage-tab.is-active {
    color: #fff;
    background: #2d5be3;
    border-color: #2d5be3;
    transform: translateY(-1px);
    outline: none;
}.fleet-slider-shell {
    position: relative;
    padding: 0 0 52px;
    border-radius: 28px;
    background: transparent;
    overflow: hidden;
}.fleet-slider-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: 28px;
}.fleet-grid {
    display: flex;
    gap: 0;
    align-items: stretch;
    transition: transform .32s ease;
    will-change: transform;
}.fleet-card {
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    position: relative;
    background: #ffffff;
    border-radius: 26px;
    border: 1px solid rgba(45, 91, 227, 0.12);
    box-shadow: 0 18px 40px -24px rgba(15, 23, 42, 0.22);
    min-height: 392px;
}.fleet-card.is-hidden-by-tonnage {
    display: none;
}.card-image {
    width: 46%;
    min-height: 392px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6edff 100%);
    position: relative;
    border-right: 4px solid #2d5be3;
    flex-shrink: 0;
    padding: 16px 16px 10px;
}.card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 62%, rgba(15,23,42,0.08) 100%);
    z-index: 1;
}.card-image img {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: contain;
    object-position: center center;
    position: relative;
    z-index: 0;
}.card-content {
    width: 54%;
    padding: 22px 24px 20px;
    min-height: 392px;
    background: #ffffff;
}.card-title {
    margin: 0 0 12px;
    font-size: clamp(1.28rem, 1.65vw, 1.75rem);
    font-weight: 800;
    line-height: 1.14;
    color: #0f172a;
}.card-specs-list {
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}.card-specs-list li {
    align-items: flex-start;
    gap: 11px;
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.42;
    padding: 9px 11px;
    border-radius: 14px;
    background: #f8fbff;
    border: 1px solid rgba(45, 91, 227, 0.08);
}.card-specs-list li i {
    width: 20px;
    color: #2d5be3;
    font-size: 1rem;
    text-align: center;
    flex-shrink: 0;
    margin-top: 3px;
}.card-specs-list li strong {
    font-weight: 700;
}.card-purpose {
    background: #f8fafc;
    border-radius: 16px;
    padding: 12px 14px;
    margin: 0 0 14px;
}.fleet-carousel-panel--overview .card-purpose {
    border-left-color: #ffb347;
    background: #f8fbff;
}.purpose-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    margin: 0 0 5px;
    font-weight: 800;
}.purpose-text {
    font-size: 0.86rem;
    color: #0f172a;
    margin: 0;
    line-height: 1.43;
    font-weight: 600;
}.card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    margin-top: auto;
    padding: 11px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.92rem;
    color: #2d5be3;
    border: 2px solid #2d5be3;
    background: #ffffff;
    transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background 0.25s ease;
}.card-button:hover,
.card-button:focus-visible {
    color: #ffffff;
    background: #2d5be3;
    transform: translateY(-2px);
    box-shadow: 0 18px 30px -20px rgba(45, 91, 227, 0.7);
    outline: none;
}.card-special {
    border: 1px solid rgba(255, 179, 71, 0.45);
    background: linear-gradient(135deg, #ffffff 0%, #fffaf2 100%);
    box-shadow: 0 18px 36px -20px rgba(255, 179, 71, 0.26);
}.fleet-slider-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.38);
    cursor: pointer;
    transition: width .18s ease, transform 0.18s ease, background 0.18s ease;
}.fleet-slider-dot.active {
    width: 26px;
    background: #2d5be3;
}@media (max-width: 1024px) {.autopark-page {
        padding-top: 8px;
    }.fleet-card,
    .card-content,
    .card-image {
        min-height: 360px;
    }.card-image {
        width: 44%;
        padding: 20px 16px 12px;
    }.card-content {
        width: 56%;
        padding: 20px;
    }.fleet-panel-toolbar {
        align-items: flex-start;
    }}@media (max-width: 768px) {.autopark-page .container {
        padding: 0 15px;
    }.autopark-hero-section {
        padding-top: 8px;
    }.autopark-hero-card {
        border-radius: 24px 24px 14px 14px;
        padding: 1rem;
    }.autopark-hero-card h1 {
        font-size: 1.9rem;
    }.autopark-hero-tabs {
        gap: .45rem;
    }.autopark-hero-tab {
        min-height: 34px;
        padding: .48rem .68rem;
        font-size: .74rem;
    }.autopark-carousel-dock {
        border-radius: 14px 14px 24px 24px;
        padding: .85rem;
    }.fleet-panel-toolbar {
        flex-direction: column;
        gap: .65rem;
    }.fleet-tonnage-tabs {
        width: 100%;
    }.fleet-slider-shell {
        padding-bottom: 50px;
    }.fleet-card {
        flex-direction: column;
        border-radius: 20px;
    }.card-image {
        width: 100%;
        min-height: 200px;
        border-right: 0;
        border-bottom: 3px solid #2d5be3;
        padding: 15px 15px 10px;
    }.card-image img {
        max-height: 190px;
    }.card-content {
        width: 100%;
        min-height: 0;
        padding: 16px;
    }.card-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }.card-specs-list {
        gap: 8px;
        margin-bottom: 12px;
    }.card-specs-list li {
        font-size: 0.84rem;
        gap: 9px;
        padding: 9px 10px;
        border-radius: 12px;
    }.purpose-title {
        font-size: 0.66rem;
    }.purpose-text {
        font-size: 0.82rem;
    }.card-button {
        padding: 10px 16px;
    }.fleet-slider-dot {
        width: 9px;
        height: 9px;
    }}.compatibility-block {
    background: #f8fafc;
    border-radius: 16px;
    padding: 12px 14px;
    margin: 0 0 14px;
}.compatibility-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    margin: 0 0 8px;
    font-weight: 800;
}.compat-chip {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    color: #2d5be3;
    background: #eef4ff;
    border: 1px solid #cbd8ff;
    font-size: 0.78rem;
    font-weight: 800;
}.fleet-card {
    min-height: 420px;
}.card-image {
    width: 42%;
}.card-content {
    width: 58%;
}.card-title {
    margin-bottom: 10px;
}.card-specs-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}.card-specs-list li {
    min-height: 58px;
    box-shadow: 0 12px 24px -22px rgba(15, 23, 42, .25);
}.card-specs-list li i {
    height: 26px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 91, 227, .09);
}.card-specs-list li span {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    color: #64748b;
    font-size: .72rem;
    line-height: 1.18;
    font-weight: 700;
}.card-specs-list li strong {
    display: block;
    color: #0f172a;
    font-size: .86rem;
    line-height: 1.22;
    font-weight: 800;
}.card-purpose {
    border: 1px solid rgba(45, 91, 227, .10);
    border-left: 4px solid #2d5be3;
}.compatibility-block {
    border: 1px solid rgba(255, 179, 71, .22);
    border-left: 4px solid #ffb347;
}.fleet-tonnage-tabs {
    max-width: 100%;
}.fleet-panel-toolbar {
    align-items: stretch;
}@media (max-width: 1024px) {.card-image {
        width: 40%;
    }.card-content {
        width: 60%;
    }.card-specs-list {
        grid-template-columns: 1fr;
    }}@media (max-width: 768px) {.fleet-card {
        min-height: 0;
    }.card-image,
    .card-content {
        width: 100%;
    }.card-specs-list li {
        min-height: 0;
    }}.card-specs-list li span {
    gap: 3px;
}.fleet-tonnage-tab.is-active,
.fleet-tonnage-tab[aria-pressed="true"] {
    box-shadow: 0 14px 28px -18px rgba(45, 91, 227, .75);
}.autopark-hero-card {
    animation: autoparkHeroReveal .55s cubic-bezier(.2,.75,.2,1) both;
}.autopark-carousel-dock {
    animation: autoparkDockReveal .62s cubic-bezier(.2,.75,.2,1) .10s both;
}.fleet-panel-toolbar {
    animation: autoparkToolbarReveal .45s cubic-bezier(.2,.75,.2,1) .18s both;
}.fleet-card {
    animation: autoparkCardReveal .55s cubic-bezier(.2,.75,.2,1) .22s both;
}.fleet-carousel-panel.is-active {
    animation: autoparkPanelReveal .28s ease-out both;
}@keyframes autoparkHeroReveal {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.985);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}@keyframes autoparkDockReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}@keyframes autoparkToolbarReveal {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}@keyframes autoparkCardReveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}@keyframes autoparkPanelReveal {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.card-specs-list li i.fa-arrows-alt-h::before {
    transform: scaleX(1.08);
}@keyframes autoparkPageSoftIn {
    from { opacity: 0; }
    to { opacity: 1; }
}@keyframes autoparkHeroSoftIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(.992);
        filter: blur(7px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}@keyframes autoparkDockSoftIn {
    from {
        opacity: 0;
        transform: translateY(18px);
        filter: blur(7px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}@keyframes autoparkToolbarSoftIn {
    from {
        opacity: 0;
        transform: translateY(9px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}@keyframes autoparkCardSoftIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.988);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}@keyframes autoparkPanelSoftIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.autopark-page {
    animation: autoparkPagePremiumFade .46s ease-out both;
}.autopark-hero-card {
    transform-origin: 50% 0;
}.autopark-eyebrow {
    animation: autoparkSmallRiseIn .50s cubic-bezier(.16, 1, .3, 1) .08s both;
}.autopark-hero-card h1 {
    animation: autoparkTitlePremiumIn .70s cubic-bezier(.16, 1, .3, 1) .12s both;
}.autopark-hero-card p:not(.autopark-eyebrow) {
    animation: autoparkTextPremiumIn .62s cubic-bezier(.16, 1, .3, 1) .18s both;
}.autopark-hero-tabs {
    animation: autoparkTabsPremiumIn .58s cubic-bezier(.16, 1, .3, 1) .25s both;
}.autopark-hero-tab,
.fleet-tonnage-tab {
    animation: autoparkChipPremiumIn .42s cubic-bezier(.16, 1, .3, 1) both;
}.autopark-hero-tab:nth-child(1) { animation-delay: .30s; }.autopark-hero-tab:nth-child(2) { animation-delay: .34s; }.autopark-hero-tab:nth-child(3) { animation-delay: .38s; }.autopark-hero-tab:nth-child(4) { animation-delay: .42s; }.autopark-hero-tab:nth-child(5) { animation-delay: .46s; }.autopark-hero-tab:nth-child(6) { animation-delay: .50s; }.autopark-hero-tab:nth-child(7) { animation-delay: .54s; }.fleet-tonnage-tab:nth-child(1) { animation-delay: .44s; }.fleet-tonnage-tab:nth-child(2) { animation-delay: .47s; }.fleet-tonnage-tab:nth-child(3) { animation-delay: .50s; }.fleet-tonnage-tab:nth-child(4) { animation-delay: .53s; }.fleet-tonnage-tab:nth-child(5) { animation-delay: .56s; }.fleet-tonnage-tab:nth-child(6) { animation-delay: .59s; }.fleet-tonnage-tab:nth-child(7) { animation-delay: .62s; }.fleet-card {
    transform-origin: 50% 45%;
}.fleet-card .card-image {
    animation: autoparkImagePremiumIn .70s cubic-bezier(.16, 1, .3, 1) .58s both;
}.fleet-card .card-content {
    animation: autoparkContentPremiumIn .66s cubic-bezier(.16, 1, .3, 1) .62s both;
}@keyframes autoparkPagePremiumFade {
    from { opacity: 0; }
    to { opacity: 1; }
}@keyframes autoparkHeroPremiumIn {
    from {
        opacity: 0;
        transform: translateY(22px) scale(.982);
        filter: blur(10px);
    }
    70% {
        opacity: 1;
        filter: blur(0);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}@keyframes autoparkTitlePremiumIn {
    from {
        opacity: 0;
        transform: translateY(16px);
        filter: blur(8px);
        letter-spacing: -.075em;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}@keyframes autoparkTextPremiumIn {
    from {
        opacity: 0;
        transform: translateY(12px);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}@keyframes autoparkTabsPremiumIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}@keyframes autoparkSmallRiseIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}@keyframes autoparkChipPremiumIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(.94);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}@keyframes autoparkDockPremiumIn {
    from {
        opacity: 0;
        transform: translateY(28px) scale(.988);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}@keyframes autoparkToolbarPremiumIn {
    from {
        opacity: 0;
        transform: translateY(14px);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}@keyframes autoparkMachinePremiumIn {
    from {
        opacity: 0;
        transform: translateY(26px) scale(.982);
        filter: blur(10px);
    }
    70% {
        opacity: 1;
        filter: blur(0);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}@keyframes autoparkImagePremiumIn {
    from {
        opacity: 0;
        transform: translateX(-18px) scale(.985);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}@keyframes autoparkContentPremiumIn {
    from {
        opacity: 0;
        transform: translateX(18px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}.card-specs-list li span {
    font-size: .70rem;
}.card-specs-list li strong {
    font-size: .82rem;
}.card-image picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
}.fleet-card {
    content-visibility: auto;
    contain-intrinsic-size: 392px 700px;
}:root {
    --page-surface: #ffffff;
    --page-surface-muted: #f8fafc;
    --page-surface-alt: #eff6ff;
    --page-border: rgba(15, 23, 42, 0.08);
    --page-text: #0f172a;
    --page-text-soft: #475569;
    --page-text-muted: #64748b;
    --page-primary: #2563eb;
    --page-primary-dark: #1d4ed8;
}.autopark-page,
.faq-page,
.legal-page {
    color: var(--page-text);
}.faq-page .faq-hero,
.legal-page {
    position: relative;
}.faq-page .faq-hero {
    padding: 48px 0 28px;
}.faq-page .faq-section,
.legal-page {
    padding-top: 64px;
    padding-bottom: 64px;
}.faq-page .section-title,
.autopark-page .section-title,
.legal-page__title {
    letter-spacing: -0.02em;
}.faq-page .faq-answer p,
.faq-page .faq-answer li,
.legal-page__lead,
.autopark-page .purpose-text,
.autopark-page .card-specs-list li {
    color: var(--page-text-soft);
}.faq-page .faq-item,
.autopark-page .fleet-card,
.legal-page__card {
    background: var(--page-surface);
    border: var(--surface-border);
    border-radius: var(--surface-radius);
    box-shadow: var(--surface-shadow);
}.faq-page .faq-item,
.autopark-page .fleet-card {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}.faq-page .faq-item:hover,
.autopark-page .fleet-card:hover {
    border-color: rgba(37, 99, 235, 0.14);
    box-shadow: var(--surface-shadow-hover);
}.autopark-page .fleet-card {
    border-radius: var(--surface-radius);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}.autopark-page .card-content {
    padding: 30px;
}.autopark-page .card-purpose,
.autopark-page .compat-chip,
.faq-page .faq-question i,
.legal-page__note {
    border-radius: 14px;
}.autopark-page .card-purpose {
    background: var(--page-surface-muted);
    border-left-color: var(--page-primary);
}.autopark-page .card-button,
.faq-page .faq-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 13px 24px;
    border-radius: 14px;
    font-size: 0.98rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}.autopark-page .card-button:hover,
.faq-page .faq-contact-btn:hover {
    transform: translateY(-2px);
}.faq-page .phone-btn {
    background: #ffffff;
    color: var(--page-primary);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
}.faq-page .phone-btn:hover {
    background: #eff6ff;
    color: var(--page-primary-dark);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.2);
}.faq-page .mail-btn {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
}.faq-page .mail-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
}.autopark-page .card-button {
    min-width: 210px;
    justify-content: space-between;
    color: #ffffff;
    background: linear-gradient(135deg, var(--page-primary) 0%, var(--page-primary-dark) 100%);
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.18);
}.autopark-page .card-button::before {
    display: none;
}.autopark-page .card-button:hover {
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.24);
}.faq-page .faq-item {
    overflow: hidden;
}.faq-page .faq-question {
    color: var(--page-text);
    padding: 22px 24px;
}.faq-page .faq-question:hover {
    background: #eff6ff;
    color: var(--page-primary);
}.faq-page .faq-question i {
    background: var(--page-surface-muted);
}.legal-page {
    margin-top: var(--page-top-offset);
    padding-top: 32px;
}.legal-page__card {
    border-radius: var(--surface-radius-lg);
    box-shadow: var(--surface-shadow);
}.legal-page__eyebrow {
    border-radius: 999px;
}.legal-page__note {
    background: #eff6ff;
}@media (max-width: 1024px) {.faq-page .faq-section,
    .legal-page {
        padding-top: 56px;
        padding-bottom: 56px;
    }.autopark-page .card-content {
        padding: 26px;
    }}@media (max-width: 768px) {.faq-page .faq-hero {
        padding: 32px 0 18px;
    }.faq-page .faq-section,
    .legal-page {
        padding-top: 44px;
        padding-bottom: 44px;
    }.faq-page .faq-item,
    .autopark-page .fleet-card,
    .legal-page__card {
        border-radius: 18px;
    }.autopark-page .card-button,
    .faq-page .faq-contact-btn {
        width: 100%;
        max-width: none;
    }.autopark-page .card-content {
        padding: 20px;
    }.faq-page .faq-question {
        padding: 16px 18px;
    }.legal-page {
        margin-top: var(--page-top-offset-mobile);
        padding-top: 24px;
    }}:root {
    --page-top-offset: 104px;
}@media (max-width: 1240px) and (min-width: 821px) {:root { --page-top-offset: 148px; }}@media (max-width: 820px) {:root {
        --page-top-offset: 182px;
        --page-top-offset-mobile: 182px;
    }}:root {
--mann-ink: #0c1f38;
    --mann-ink-soft: #334760;
    --mann-muted: #66758a;
    --mann-blue: #2257d7;
    --mann-blue-dark: #173f9f;
    --mann-blue-soft: #edf3ff;
    --mann-line: #dfe6ef;
    --mann-surface: #ffffff;
    --mann-surface-soft: #f4f7fb;
    --mann-surface-warm: #f8f9fb;
    --mann-success: #16845b;
    --mann-shadow-sm: 0 8px 24px rgba(12, 31, 56, .07);
    --mann-shadow-md: 0 18px 48px rgba(12, 31, 56, .10);
    --mann-shadow-lg: 0 28px 80px rgba(12, 31, 56, .14);
    --mann-radius-sm: 12px;
    --mann-radius: 18px;
    --mann-radius-lg: 26px;
    --mann-container: 1320px;
}html {
scroll-padding-top: 110px;
}body {
color: var(--mann-ink);
    background: var(--mann-surface);
    overflow-x: hidden;
}body,
button,
input,
select,
textarea {
font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}.container {
width: min(100%, var(--mann-container));
    max-width: var(--mann-container);
    margin-inline: auto;
    padding-inline: 28px;
}a,
button,
input,
select,
textarea,
summary {
-webkit-tap-highlight-color: transparent;
}a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
outline: 3px solid rgba(34, 87, 215, .28);
    outline-offset: 3px;
}.mann-top-header__messenger--max {
background: #5f60f5;
}.mann-top-header__messenger--tg {
background: #229ed9;
}.mann-top-header__messenger--wa {
background: #25d366;
}.mann-primary-button,
.service-btn--primary,
.services-index-hero__card a,
.card-button {
display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    color: #fff;
    background: var(--mann-blue);
    border: 1px solid var(--mann-blue);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(34, 87, 215, .22);
    text-decoration: none;
    font-size: .8rem;
    line-height: 1.2;
    font-weight: 750;
    white-space: nowrap;
    transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}.mann-primary-button:hover,
.service-btn--primary:hover,
.services-index-hero__card a:hover,
.card-button:hover {
color: #fff;
    background: var(--mann-blue-dark);
    border-color: var(--mann-blue-dark);
    box-shadow: 0 14px 32px rgba(23, 63, 159, .27);
    transform: translateY(-1px);
}.mann-static-hero {
position: relative;
    isolation: isolate;
    display: block;
    min-height: clamp(455px, 39vw, 570px);
    overflow: hidden;
    background: #e8edf4;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 28px;
    box-shadow: var(--mann-shadow-lg);
}.mann-static-hero::before {
content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .96) 25%, rgba(255, 255, 255, .78) 39%, rgba(255, 255, 255, .18) 57%, rgba(255, 255, 255, 0) 74%),
        linear-gradient(0deg, rgba(10, 27, 50, .10), transparent 32%);
}.mann-static-hero::after {
content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    height: 26%;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(7, 22, 42, .20), transparent);
}.mann-hero-media {
position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}.mann-hero-copy {
position: absolute;
    z-index: 4;
    top: 50%;
    left: clamp(34px, 4.3vw, 72px);
    width: min(45%, 590px);
    transform: translateY(-50%);
}.mann-hero-copy__eyebrow {
margin: 0 0 16px;
    color: var(--mann-blue-dark);
    font-size: .72rem;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;
}.mann-hero-copy__title {
margin: 0;
    max-width: 600px;
    color: var(--mann-ink);
    font-size: clamp(2.55rem, 4.25vw, 4.55rem);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 800;
    text-wrap: balance;
}.mann-hero-copy__text {
max-width: 550px;
    margin: 22px 0 0;
    color: var(--mann-ink-soft);
    font-size: clamp(1rem, 1.18vw, 1.16rem);
    line-height: 1.65;
    font-weight: 500;
}.calculator-intro {
display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr);
    gap: 32px;
    align-items: end;
    margin: 54px 0 20px;
}.calculator-intro span,
.mann-section-heading__eyebrow {
display: block;
    margin-bottom: 8px;
    color: var(--mann-blue);
    font-size: .72rem;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}.calculator-intro h2 {
margin: 0;
    color: var(--mann-ink);
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    line-height: 1.07;
    letter-spacing: -.04em;
    font-weight: 800;
}.calculator-intro p {
margin: 0;
    color: var(--mann-muted);
    font-size: .98rem;
    line-height: 1.65;
}.mann-home-extension {
background: #fff;
}.mann-section {
padding: clamp(70px, 7vw, 108px) 0;
}.mann-section--soft {
background: var(--mann-surface-soft);
}.mann-section--intro {
padding-top: clamp(74px, 7vw, 112px);
}.mann-home-about {
display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: clamp(48px, 7vw, 100px);
    align-items: start;
}.mann-home-about__copy {
position: sticky;
    top: 150px;
}.mann-eyebrow {
display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 6px 10px;
    color: var(--mann-blue-dark);
    background: var(--mann-blue-soft);
    border: 1px solid #d8e4ff;
    border-radius: 999px;
    font-size: .72rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}.mann-home-about h2,
.mann-section-heading h2,
.mann-form-copy h2 {
margin: 18px 0 0;
    color: var(--mann-ink);
    font-size: clamp(2rem, 3.6vw, 3.55rem);
    line-height: 1.03;
    letter-spacing: -.048em;
    font-weight: 800;
    text-wrap: balance;
}.mann-home-about__copy > p {
margin: 20px 0 0;
    color: var(--mann-muted);
    font-size: 1rem;
    line-height: 1.75;
}.mann-home-about__copy > p + p {
margin-top: 12px;
}.mann-page-hero__actions {
display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}.mann-secondary-button {
display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    color: var(--mann-ink);
    background: #fff;
    border: 1px solid var(--mann-line);
    border-radius: 12px;
    text-decoration: none;
    font-size: .8rem;
    font-weight: 750;
    transition: border-color .18s ease, color .18s ease, background-color .18s ease;
}.mann-secondary-button:hover {
color: var(--mann-blue-dark);
    background: var(--mann-blue-soft);
    border-color: #c8d8fb;
}.mann-home-about__facts {
display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}.mann-fact {
position: relative;
    display: flex;
    min-height: 190px;
    flex-direction: column;
    padding: 25px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--mann-line);
    border-radius: var(--mann-radius);
    box-shadow: var(--mann-shadow-sm);
}.mann-fact__number {
margin-bottom: auto;
    color: #9fb1c7;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .10em;
}.mann-fact strong {
display: block;
    margin-top: 20px;
    color: var(--mann-ink);
    font-size: 1rem;
    line-height: 1.28;
    font-weight: 800;
}.mann-fact > span:last-child {
display: block;
    margin-top: 8px;
    color: var(--mann-muted);
    font-size: .84rem;
    line-height: 1.55;
}.mann-section-heading {
max-width: 790px;
    margin-bottom: 34px;
}.mann-section-heading h2 {
margin-top: 0;
}.mann-section-heading p {
max-width: 720px;
    margin: 17px 0 0;
    color: var(--mann-muted);
    font-size: 1rem;
    line-height: 1.7;
}.mann-section-heading--split {
display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .7fr);
    gap: 44px;
    max-width: none;
    align-items: end;
}.mann-section-heading--split p {
margin: 0;
}.mann-service-grid {
display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}.mann-service-card {
display: flex;
    min-height: 256px;
    flex-direction: column;
    padding: 25px;
    color: inherit;
    background: #fff;
    border: 1px solid var(--mann-line);
    border-radius: var(--mann-radius);
    box-shadow: 0 8px 24px rgba(12, 31, 56, .045);
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}.mann-service-card:hover {
color: inherit;
    border-color: #bed0f5;
    box-shadow: var(--mann-shadow-md);
    transform: translateY(-4px);
}.mann-service-card__icon {
display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--mann-blue);
    background: var(--mann-blue-soft);
    border-radius: 13px;
    font-size: 1.02rem;
}.mann-service-card h3 {
margin: 22px 0 0;
    color: var(--mann-ink);
    font-size: 1.06rem;
    line-height: 1.25;
    font-weight: 800;
}.mann-service-card p {
margin: 10px 0 0;
    color: var(--mann-muted);
    font-size: .86rem;
    line-height: 1.6;
}.mann-service-card__more {
display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding-top: 22px;
    color: var(--mann-blue-dark);
    font-size: .76rem;
    font-weight: 800;
}.mann-service-card__more i {
transition: transform .18s ease;
}.mann-service-card:hover .mann-service-card__more i {
transform: translateX(3px);
}.mann-section-footer-link {
margin-top: 28px;
}.mann-section-footer-link a {
display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mann-blue-dark);
    text-decoration: none;
    font-size: .86rem;
    font-weight: 800;
}.mann-section-footer-link a:hover {
text-decoration: underline;
    text-underline-offset: 4px;
}.mann-fleet-preview-grid {
display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}.mann-fleet-preview-card {
display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    min-height: 126px;
    align-items: center;
    padding: 22px 24px;
    color: inherit;
    background: #fff;
    border: 1px solid var(--mann-line);
    border-radius: var(--mann-radius);
    text-decoration: none;
    transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}.mann-fleet-preview-card:hover {
color: inherit;
    background: var(--mann-surface-soft);
    border-color: #c6d6f6;
    transform: translateY(-2px);
}.mann-fleet-preview-card > span {
color: #a0aec0;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
}.mann-fleet-preview-card h3 {
margin: 0;
    color: var(--mann-ink);
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 800;
}.mann-fleet-preview-card p {
margin: 7px 0 0;
    color: var(--mann-muted);
    font-size: .82rem;
    line-height: 1.5;
}.mann-fleet-preview-card > i {
color: var(--mann-blue);
}.mann-doc-grid {
display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}.mann-doc-card {
display: flex;
    min-height: 238px;
    flex-direction: column;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--mann-line);
    border-radius: var(--mann-radius);
    box-shadow: var(--mann-shadow-sm);
}.mann-doc-card__top {
display: flex;
    align-items: center;
    gap: 12px;
}.mann-doc-card__icon {
display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    color: var(--mann-blue);
    background: var(--mann-blue-soft);
    border-radius: 12px;
}.mann-doc-card h3 {
margin: 0;
    color: var(--mann-ink);
    font-size: 1rem;
    font-weight: 800;
}.mann-doc-card > p {
margin: 18px 0 0;
    color: var(--mann-muted);
    font-size: .84rem;
    line-height: 1.55;
}.mann-doc-card__meta {
margin-top: auto;
    padding-top: 20px;
    color: #98a8bc;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
}.mann-doc-card__actions {
display: flex;
    gap: 8px;
    margin-top: 11px;
}.mann-doc-button {
display: inline-flex;
    min-height: 38px;
    flex: 1;
    align-items: center;
    justify-content: center;
    padding: 0 13px;
    color: var(--mann-blue-dark);
    background: var(--mann-blue-soft);
    border: 1px solid #d7e2fa;
    border-radius: 10px;
    text-decoration: none;
    font-size: .75rem;
    font-weight: 750;
}.mann-doc-button--download {
color: var(--mann-ink);
    background: #fff;
    border-color: var(--mann-line);
}.mann-section--contact {
color: #fff;
    background: var(--mann-ink);
}.mann-form-shell {
display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
    gap: clamp(42px, 7vw, 90px);
    align-items: center;
}.mann-form-copy .mann-eyebrow {
color: #dce8ff;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .14);
}.mann-form-copy h2 {
color: #fff;
}.mann-form-copy > p {
max-width: 600px;
    margin: 18px 0 0;
    color: #b9c7d8;
    font-size: 1rem;
    line-height: 1.72;
}.mann-contact-lines {
display: grid;
    gap: 10px;
    margin-top: 28px;
}.mann-contact-lines a {
display: flex;
    width: fit-content;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}.mann-contact-lines a > i {
display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    color: #bcd0ff;
    background: rgba(255, 255, 255, .08);
    border-radius: 10px;
}.mann-contact-lines span {
display: flex;
    flex-direction: column;
}.mann-contact-lines small {
color: #8fa2b8;
    font-size: .67rem;
}.mann-contact-lines strong {
font-size: .85rem;
}.mann-lead-form {
padding: 28px;
    color: var(--mann-ink);
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 20px;
    box-shadow: 0 24px 62px rgba(0, 0, 0, .24);
}.mann-lead-form__grid {
display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}.mann-field {
display: grid;
    gap: 7px;
}.mann-field > span {
color: #53647a;
    font-size: .72rem;
    font-weight: 700;
}.mann-field input {
width: 100%;
    min-height: 48px;
    padding: 0 13px;
    color: var(--mann-ink);
    background: #fff;
    border: 1px solid var(--mann-line);
    border-radius: 11px;
    font-size: .86rem;
}.mann-field input:focus {
border-color: var(--mann-blue);
    box-shadow: 0 0 0 3px rgba(34, 87, 215, .11);
    outline: none;
}.mann-consent {
display: flex;
    gap: 9px;
    align-items: flex-start;
    margin: 16px 0;
    color: var(--mann-muted);
    font-size: .7rem;
    line-height: 1.45;
}.mann-consent input {
margin-top: 2px;
}.mann-lead-form .mann-primary-button {
width: 100%;
    border: 0;
    cursor: pointer;
}.mann-form-status {
min-height: 1.2em;
    margin-top: 10px;
    font-size: .76rem;
}.mann-faq-list {
display: grid;
    gap: 10px;
}.mann-faq-list details {
overflow: hidden;
    background: #fff;
    border: 1px solid var(--mann-line);
    border-radius: 14px;
}.mann-faq-list summary {
position: relative;
    padding: 19px 54px 19px 20px;
    color: var(--mann-ink);
    cursor: pointer;
    list-style: none;
    font-size: .9rem;
    line-height: 1.4;
    font-weight: 750;
}.mann-faq-list summary::-webkit-details-marker {
display: none;
}.mann-faq-list summary::after {
content: "+";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--mann-blue);
    background: var(--mann-blue-soft);
    border-radius: 8px;
    transform: translateY(-50%);
    font-size: 1rem;
}.mann-faq-list details[open] summary::after {
content: "−";
}.mann-faq-list details p {
margin: 0;
    padding: 0 54px 20px 20px;
    color: var(--mann-muted);
    font-size: .84rem;
    line-height: 1.65;
}.services-index,
.faq-page,
.autopark-page,
.service-page {
    color: var(--mann-ink);
    background: #fff;
}.faq-hero-title {
max-width: 980px;
}.faq-question {
min-height: 58px;
}.autopark-hero-card h1 {
max-width: 800px;
}.card-button {
width: 100%;
}.service-hero__media {
overflow: hidden;
}.service-hero__media img {
width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
}@media (max-width: 1180px) {.mann-static-hero::before {
background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 34%, rgba(255,255,255,.58) 48%, rgba(255,255,255,0) 70%);
}.mann-hero-copy {
width: min(50%, 560px);
}.mann-home-about {
grid-template-columns: 1fr 1.15fr;
        gap: 48px;
}}@media (max-width: 960px) {html {
scroll-padding-top: 20px;
}.container {
padding-inline: 20px;
}.mann-static-hero {
min-height: 500px;
}.mann-hero-copy {
width: min(56%, 530px);
}.mann-hero-copy__title {
font-size: clamp(2.35rem, 5vw, 3.8rem);
}.mann-home-about {
grid-template-columns: 1fr;
}.mann-home-about__copy {
position: static;
}.mann-service-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}.mann-form-shell {
grid-template-columns: 1fr;
}.mann-doc-grid {
grid-template-columns: 1fr;
}}@media (max-width: 768px) {:root {
--mann-radius: 15px;
        --mann-radius-lg: 20px;
}body {
font-size: 14px;
}.container {
padding-inline: 14px;
}.mann-static-hero {
display: grid;
        grid-template-rows: auto auto;
        min-height: 0;
        background: #fff;
        border-radius: 18px;
        box-shadow: var(--mann-shadow-md);
}.mann-static-hero::before,
.mann-static-hero::after {
display: none;
}.mann-hero-copy {
position: relative;
        z-index: 4;
        grid-row: 1;
        top: auto;
        left: auto;
        width: 100%;
        max-width: none;
        padding: 24px 20px 22px;
        transform: none;
        background: #fff;
}.mann-hero-copy__eyebrow {
margin-bottom: 11px;
        font-size: .61rem;
        letter-spacing: .07em;
}.mann-hero-copy__title {
max-width: none;
        font-size: clamp(2rem, 10vw, 2.8rem);
        line-height: 1.01;
        letter-spacing: -.048em;
}.mann-hero-copy__text {
margin-top: 14px;
        font-size: .9rem;
        line-height: 1.58;
}.mann-hero-media {
position: relative;
        inset: auto;
        grid-row: 2;
        height: auto;
        aspect-ratio: 16 / 9;
        overflow: hidden;
}.calculator-intro {
display: block;
        margin: 36px 2px 16px;
}.calculator-intro h2 {
font-size: 1.55rem;
}.calculator-intro p {
margin-top: 10px;
        font-size: .84rem;
        line-height: 1.55;
}.mann-section {
padding: 62px 0;
}.mann-section--intro {
padding-top: 64px;
}.mann-home-about {
gap: 32px;
}.mann-home-about h2,
.mann-section-heading h2,
.mann-form-copy h2 {
font-size: 2rem;
        line-height: 1.05;
}.mann-home-about__copy > p,
.mann-section-heading p,
.mann-form-copy > p {
font-size: .88rem;
        line-height: 1.65;
}.mann-page-hero__actions {
display: grid;
        grid-template-columns: 1fr 1fr;
}.mann-primary-button,
.mann-secondary-button {
min-height: 44px;
        padding: 0 12px;
        font-size: .72rem;
}.mann-home-about__facts,
.mann-service-grid,
.mann-fleet-preview-grid,
.mann-doc-grid {
grid-template-columns: 1fr;
}.mann-fact {
min-height: 155px;
        padding: 20px;
}.mann-service-card {
min-height: 220px;
        padding: 21px;
}.mann-section-heading,
.mann-section-heading--split {
display: block;
        margin-bottom: 26px;
}.mann-section-heading--split p {
margin-top: 14px;
}.mann-fleet-preview-card {
min-height: 106px;
        padding: 18px;
}.mann-form-shell {
gap: 30px;
}.mann-lead-form {
padding: 19px;
        border-radius: 16px;
}.mann-lead-form__grid {
grid-template-columns: 1fr;
}.mann-contact-lines a {
width: 100%;
}.mann-faq-list summary {
padding: 17px 48px 17px 16px;
        font-size: .84rem;
}.mann-faq-list details p {
padding: 0 48px 18px 16px;
        font-size: .79rem;
}.autopark-hero-tabs {
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
}.autopark-hero-tabs::-webkit-scrollbar {
display: none;
}.autopark-hero-tab {
flex: 0 0 auto;
}.service-hero__media img {
min-height: 230px;
}}@media (max-width: 430px) {.mann-hero-copy {
padding-inline: 17px;
}.mann-hero-copy__title {
font-size: 1.92rem;
}.mann-page-hero__actions {
grid-template-columns: 1fr;
}.mann-doc-card__actions {
flex-direction: column;
}}.faq-hero-title {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.18em;
}@media (max-width: 820px) {.faq-hero-title {
        gap: 0.14em;
    }.mann-section-footer-link {
        margin-top: 24px;
        text-align: center;
    }.mann-section-footer-link a#allServicesLink {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        min-height: 44px;
        padding: 0 8px;
        font-size: 1rem;
        font-weight: 800;
        line-height: 1.2;
    }}.faq-hero-title {
    white-space: nowrap;
}@media (max-width: 820px) {.faq-hero-title {
        white-space: normal;
    }}.faq-page .faq-hero {
    padding-top: 22px;
}.mann-top-header {
position: fixed;
    left: 50%;
    top: clamp(12px, 1.4vw, 22px);
    z-index: 1000;
    display: grid;
    grid-template-columns: minmax(360px, 1fr) auto minmax(330px, 0.92fr);
    align-items: center;
    gap: clamp(16px, 2vw, 34px);
    width: min(1540px, calc(100% - clamp(28px, 5vw, 76px)));
    transform: translateX(-50%);
    padding: 12px clamp(16px, 1.6vw, 24px);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.13), rgba(255,255,255,0.045)),
        rgba(7, 18, 34, 0.58);
    box-shadow:
        0 22px 70px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.16);
}.mann-top-header__brand-area {
display: grid;
    gap: 8px;
}.mann-top-header__brand {
display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    color: #fff;
    text-decoration: none;
}.mann-top-header__brand img {
width: 46px;
    height: 46px;
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(37,99,235,0.30);
}.mann-top-header__brand span {
display: grid;
    line-height: 1.04;
}.mann-top-header__brand strong {
color: #fff;
    font-size: 26px;
    font-weight: 850;
    letter-spacing: 0.045em;
}.mann-top-header__brand small {
color: rgba(255,255,255,0.78);
    font-size: 12px;
    font-weight: 780;
    letter-spacing: 0.04em;
}.mann-top-header__contacts {
display: flex;
    gap: 12px;
}.mann-top-header__contact {
display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 7px 12px 7px 8px;
    border-radius: 18px;
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,0.065);
    border: 1px solid rgba(255,255,255,0.10);
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}.mann-top-header__contact:hover {
transform: translateY(-1px);
    background: rgba(255,255,255,0.11);
    border-color: rgba(255,255,255,0.20);
}.mann-top-header__contact-icon {
display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    color: #0b1830;
    background: #fff;
    box-shadow: 0 8px 20px rgba(255,255,255,0.14);
}.mann-top-header__contact span:last-child {
display: grid;
    gap: 2px;
}.mann-top-header__contact small {
color: rgba(255,255,255,0.64);
    font-size: 11px;
    font-weight: 760;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}.mann-top-header__contact strong {
color: #fff;
    font-size: clamp(14px, 1.05vw, 17px);
    font-weight: 840;
    letter-spacing: -0.02em;
    white-space: nowrap;
}.mann-top-header__actions {
display: flex;
    gap: 14px;
}.mann-top-header__messengers {
display: flex;
    align-items: center;
    gap: 8px;
}.mann-top-header__messenger {
display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.13);
    background: rgba(255,255,255,0.075);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}.mann-top-header__messenger img {
width: 22px;
    height: 22px;
    display: block;
}.mann-top-header__messenger i {
font-size: 18px;
}.mann-top-header__messenger:hover {
transform: translateY(-2px);
    border-color: rgba(255,255,255,0.30);
    box-shadow:
        0 12px 28px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.16);
}@media (max-width: 1320px) {.mann-top-header {
grid-template-columns: 1fr auto;
}.mann-top-header__contacts {
justify-content: flex-end;
}.mann-top-header__actions {
grid-column: 1 / -1;
        justify-content: center;
}}@media (max-width: 920px) {.mann-top-header {
position: absolute;
        top: 12px;
        grid-template-columns: 1fr;
        gap: 12px;
        border-radius: 22px;
}.mann-top-header__brand-area,
.mann-top-header__contacts,
.mann-top-header__actions {
justify-content: center;
        justify-items: center;
        text-align: center;
}.mann-top-header__brand {
margin: 0 auto;
}.mann-top-header__contacts,
.mann-top-header__actions {
flex-wrap: wrap;
}}.mann-top-header__brand-area {
    grid-template-columns: auto;
}.mann-top-header {
    top: 12px;
    z-index: 140;
    backdrop-filter: blur(20px);
}.mann-top-header__brand-area {
    justify-content: flex-start;
    align-items: center;
    min-width: 0;
}.mann-top-header__brand strong {
    line-height: 0.95;
    letter-spacing: -0.03em;
}.mann-top-header__brand small {
    letter-spacing: 0.01em;
    text-transform: uppercase;
}.mann-top-header__contacts {
    justify-content: center;
    align-items: center;
    max-width: 520px;
    margin: 0 auto;
}.mann-top-header__contact {
min-height: 72px;
}.mann-top-header__contact strong {
    line-height: 1.2;
}.mann-top-header__actions {
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
}.mann-hero-nav {
position: sticky;
    z-index: 130;
    width: fit-content;
    max-width: calc(100% - 32px);
    margin: 0 auto 26px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(31,62,108,0.30), rgba(255,255,255,0.12));
    border: 1px solid rgba(255,255,255,0.20);
    box-shadow: 0 18px 42px rgba(13,35,68,0.18), inset 0 1px 0 rgba(255,255,255,0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}.mann-hero-nav__link {
display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.07));
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}.mann-hero-nav__link:hover {
transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0.12));
    box-shadow: 0 10px 22px rgba(6,23,50,0.16), inset 0 1px 0 rgba(255,255,255,0.22);
}@media (max-width: 1350px) {.mann-top-header {
grid-template-columns: 1fr;
        justify-items: center;
}.mann-top-header__brand-area,
.mann-top-header__actions {
justify-content: center;
}.mann-top-header__actions {
flex-wrap: wrap;
}.mann-hero-nav {
top: 206px;
}}@media (max-width: 820px) {.mann-top-header {
top: 8px;
}.mann-top-header__contacts {
        max-width: 100%;
}.mann-top-header__actions {
flex-direction: column;
}.mann-hero-nav {
top: 250px;
        padding: 10px;
        gap: 10px;
        border-radius: 24px;
}.mann-hero-nav__link {
width: 100%;
        min-width: 220px;
}}.mann-top-header {
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}.mann-hero-nav {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}.mann-top-header__brand-area,
.mann-top-header__contacts,
.mann-top-header__actions {
width: 100%;
}.mann-hero-nav__link {
min-width: 168px;
}@media (max-width: 820px) {.mann-hero-nav__link {
min-width: 0; width: calc(100% - 10px);
}}.mann-hero-nav {
    top: 108px;
}.mann-top-header {
position: relative;
    z-index: 5;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}.mann-hero-nav {
position: relative;
    z-index: 4;
}.home-landing .mann-top-header,
.home-landing .mann-hero-nav {
  z-index: 2;
}.home-landing .mann-top-header {
margin: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}.home-landing .mann-hero-nav {
margin-top: -6px;
  padding-bottom: 8px;
}.home-landing .mann-hero-nav {
  align-items: center;
}.home-landing .mann-hero-nav__link {
  white-space: nowrap;
}.home-landing .mann-top-header,
.home-landing .mann-hero-nav {
position: relative;
  z-index: 3;
}.mann-top-header,
.mann-hero-nav {
    color: #18304f;
}@media (min-width: 1241px) {:root {
        --mann-fixed-header-clearance: 86px;
    }}@media (max-width: 1240px) and (min-width: 821px) {:root {
        --mann-fixed-header-clearance: 140px;
    }}@media (max-width: 820px) {:root {
        --mann-fixed-header-clearance: 218px;
        --mann-fixed-nav-clearance: 76px;
    }}@media (max-width: 430px) {:root {
        --mann-fixed-header-clearance: 210px;
    }}@media (max-width: 820px) {:root {
        --mann-fixed-header-clearance: 174px;
    }}@media (max-width: 430px) {:root {
        --mann-fixed-header-clearance: 172px;
    }}@media (min-width: 1241px) {:root {
        --mann-fixed-header-clearance: 82px;
    }}@media (max-width: 1240px) and (min-width: 821px) {:root {
        --mann-fixed-header-clearance: 136px;
    }}.mann-mobile-menu-toggle{
    display: none;
}@media (max-width: 820px) {html,
    body {
        touch-action: pan-y;
    }.mann-mobile-menu-toggle {
        position: relative;
        flex: 0 0 36px;
        width: 36px;
        height: 36px;
        padding: 0;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4px;
        border: 1px solid rgba(116, 145, 181, .34);
        border-radius: 12px;
        color: #173c64;
        background: rgba(255, 255, 255, .78);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.88), 0 7px 16px rgba(27, 58, 94, .08);
        cursor: pointer;
        z-index: 2;
    }.mann-mobile-menu-toggle span {
        display: block;
        width: 16px;
        height: 2px;
        border-radius: 99px;
        background: currentColor;
        transition: transform .22s ease, opacity .18s ease;
    }.mann-mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }.mann-mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }.mann-mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }body.mann-mobile-menu-open {
        overflow: hidden;
    }}@media (max-width: 370px) {.mann-mobile-menu-toggle {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
    }}body[data-client-type="private"] .autopark-page {
  --ap-bg:#f3f8fc; --ap-bg-2:#eaf4fb; --ap-surface:#fff; --ap-surface-2:#f7fbfe;
  --ap-ink:#0d3553; --ap-muted:#637f95; --ap-line:#cfe0eb; --ap-accent:#2d78d6;
  --ap-accent-2:#8bc8ef; --ap-warm:#fff6d9; --ap-yellow:#f6c51f; --ap-yellow-ink:#103654;
  --ap-shadow:0 22px 60px rgba(31,72,102,.10);
}body[data-client-type="business"] .autopark-page {
  --ap-bg:#0a3554; --ap-bg-2:#0d4164; --ap-surface:#164f74; --ap-surface-2:#1b5d85;
  --ap-ink:#fff; --ap-muted:#c6dbe9; --ap-line:rgba(255,255,255,.14); --ap-accent:#70b8e3;
  --ap-accent-2:#2e7eab; --ap-warm:#173f59; --ap-yellow:#f5c928; --ap-yellow-ink:#082c48;
  --ap-shadow:0 22px 54px rgba(2,17,29,.23);
}.autopark-page { overflow:hidden; font-family:Inter,system-ui,sans-serif; }.autopark-page *, .autopark-page *::before, .autopark-page *::after { box-sizing:border-box; }.autopark-page .container { width:min(1420px,calc(100% - 48px)); margin-inline:auto; }.autopark-hero-card { grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr); gap:clamp(28px,5vw,72px);
  position:relative; overflow:hidden;
}body[data-client-type="private"] .autopark-hero-card::after { content:""; position:absolute; width:360px; height:360px; right:-110px; top:-155px; border-radius:50%; background:rgba(139,200,239,.15); pointer-events:none; }.autopark-eyebrow, .autopark-section-heading>p { line-height:1; letter-spacing:.12em; text-transform:uppercase; }.autopark-hero-card h1 { max-width:850px; }.autopark-lead { max-width:760px; }.autopark-hero-facts { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; margin-top:34px; }.autopark-hero-facts>div { min-height:104px; padding:20px; border:1px solid var(--ap-line); border-radius:22px; background:var(--ap-surface-2); }body[data-client-type="private"] .autopark-hero-facts>div:nth-child(2) { background:var(--ap-warm); }.autopark-hero-facts strong { display:block; margin-bottom:7px; color:var(--ap-ink); font-size:1.02rem; }.autopark-hero-facts span { color:var(--ap-muted); font-size:.9rem; line-height:1.45; }.autopark-hero-guide { align-self:stretch; display:grid; grid-template-columns:auto 1fr; align-content:center; gap:12px 16px; padding:28px; border:1px solid var(--ap-line); border-radius:28px; background:var(--ap-bg-2); position:relative; z-index:1; }body[data-client-type="business"] .autopark-hero-guide { background:rgba(4,30,48,.36); }.autopark-hero-guide__step { display:grid; place-items:center; width:42px; height:42px; border-radius:50%; color:var(--ap-yellow-ink); background:var(--ap-yellow); font-weight:900; }.autopark-hero-guide strong { align-self:center; color:var(--ap-ink); font-size:1rem; }.autopark-hero-guide__arrow { grid-column:1 / -1; width:2px; height:28px; margin-left:20px; background:linear-gradient(var(--ap-accent),transparent); position:relative; }.autopark-hero-guide__arrow::after { content:""; position:absolute; bottom:0; left:-4px; width:9px; height:9px; border-right:2px solid var(--ap-accent); border-bottom:2px solid var(--ap-accent); transform:rotate(45deg); }.autopark-hero-tabs { flex-wrap:wrap; border:1px solid var(--ap-line); border-radius:24px; background:color-mix(in srgb,var(--ap-surface) 88%,transparent); }.autopark-hero-tab, .fleet-tonnage-tab { appearance:none; min-height:46px; cursor:pointer; transition:.2s ease; }.autopark-hero-tab:hover, .fleet-tonnage-tab:hover { transform:translateY(-1px); }.autopark-section-heading { display:grid; grid-template-columns:minmax(260px,.8fr) minmax(0,1.2fr); column-gap:clamp(30px,7vw,100px); align-items:start; margin-bottom:34px; }.autopark-section-heading>p { grid-column:1; }.autopark-section-heading h2 { grid-column:1; }.autopark-section-heading>span { grid-column:2; grid-row:1 / span 2; align-self:end; max-width:650px; color:var(--ap-muted); font-size:1.02rem; line-height:1.65; }.autopark-choice-grid { display:grid; grid-template-columns:repeat(12,1fr); gap:18px; }.autopark-choice-grid article { min-height:220px; padding:30px; border:1px solid var(--ap-line); border-radius:28px; background:var(--ap-surface); box-shadow:0 12px 34px rgba(14,54,82,.055); }.autopark-choice-grid article:nth-child(1), .autopark-choice-grid article:nth-child(4) { grid-column:span 7; }.autopark-choice-grid article:nth-child(2), .autopark-choice-grid article:nth-child(3) { grid-column:span 5; }body[data-client-type="private"] .autopark-choice-grid article:nth-child(2), body[data-client-type="private"] .autopark-choice-grid article:nth-child(4) { background:var(--ap-warm); }body[data-client-type="business"] .autopark-choice-grid article:nth-child(2n) { background:var(--ap-surface-2); }.autopark-choice-grid article>span { display:block; margin-bottom:36px; color:var(--ap-accent); font-size:.78rem; font-weight:900; }body[data-client-type="business"] .autopark-choice-grid article>span { color:var(--ap-yellow); }.autopark-choice-grid h3, .autopark-check-grid h3 { margin:0 0 12px; color:var(--ap-ink); font-size:1.32rem; letter-spacing:-.025em; }.autopark-choice-grid p, .autopark-check-grid p { margin:0; color:var(--ap-muted); line-height:1.58; }.autopark-fleet-section { border-block:1px solid var(--ap-line); }.autopark-section-heading--fleet { margin-bottom:22px; }.fleet-carousel-panel { display:none; }.fleet-carousel-panel.is-active { display:block; }.fleet-panel-toolbar { display:flex; justify-content:center; margin-bottom:18px; }.fleet-tonnage-tabs { display:flex; flex-wrap:wrap; justify-content:center; gap:8px; padding:10px; border:1px solid var(--ap-line); border-radius:22px; background:var(--ap-surface); }.fleet-slider-shell, .fleet-slider-viewport { width:100%; max-width:100%; overflow:hidden; }.fleet-slider-viewport { background:var(--ap-surface); border-radius:34px; }.fleet-slider-track { width:100%; transition:transform .35s ease; will-change:transform; }.fleet-card { grid-template-columns:minmax(330px,.9fr) minmax(0,1.1fr); gap:0; overflow:hidden; }.card-image { min-height:430px; padding:30px; display:flex; align-items:center; justify-content:center; background:var(--ap-surface-2); }body[data-client-type="private"] .card-image { background:linear-gradient(145deg,#f8fcff,#eaf5fb); }body[data-client-type="business"] .card-image { background:#f7fafc; }.card-image picture, .card-image img { width:100%; height:100%; max-height:390px; object-fit:contain; display:block; }.card-content { display:flex; flex-direction:column; color:var(--ap-ink); }.card-title { letter-spacing:-.04em; }.card-specs-list { list-style:none; border-top:1px solid var(--ap-line); }.card-specs-list li { min-height:48px; display:flex; align-items:center; gap:12px; padding:11px 0; border-bottom:1px solid var(--ap-line); }.card-specs-list i { width:22px; color:var(--ap-accent); text-align:center; }body[data-client-type="business"] .card-specs-list i { color:var(--ap-yellow); }.card-specs-list strong { color:var(--ap-ink); font-weight:850; }.purpose-title, .compatibility-title { text-transform:uppercase; letter-spacing:.08em; }.compatibility-block { margin-bottom:20px; }.compatibility-chips { display:flex; flex-wrap:wrap; gap:8px; }.compat-chip { padding:7px 11px; border:1px solid var(--ap-line); border-radius:999px; color:var(--ap-muted); background:var(--ap-bg-2); font-size:.82rem; }.autopark-page a.card-button, .autopark-page a.card-button:link, .autopark-page a.card-button:visited { margin-top:auto; min-height:54px; align-items:center; justify-content:center; text-decoration:none; }.autopark-page a.card-button:hover { transform:translateY(-2px); filter:brightness(1.035); }.autopark-check-layout, .autopark-faq-layout { padding:clamp(34px,5vw,64px); border:1px solid var(--ap-line); border-radius:34px; background:var(--ap-surface); box-shadow:var(--ap-shadow); }.autopark-check-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }.autopark-check-grid article { min-height:150px; padding:24px; border:1px solid var(--ap-line); border-radius:22px; background:var(--ap-bg-2); }.autopark-primary-cta { margin-top:24px; min-height:60px; display:flex; align-items:center; justify-content:space-between; gap:20px; padding:0 26px; border-radius:18px; background:var(--ap-yellow); font-weight:900; text-decoration:none; }.autopark-primary-cta span { font-size:1.5rem; }.autopark-service-links { display:grid; grid-template-columns:repeat(10,1fr); gap:14px; }.autopark-service-links a { grid-column:span 2; min-height:170px; position:relative; display:flex; flex-direction:column; padding:24px; border:1px solid var(--ap-line); border-radius:24px; color:var(--ap-ink); background:var(--ap-surface); text-decoration:none; transition:.2s ease; }.autopark-service-links a:hover { transform:translateY(-4px); box-shadow:var(--ap-shadow); }.autopark-service-links strong { font-size:1.05rem; }.autopark-service-links span { margin-top:12px; color:var(--ap-muted); line-height:1.45; }.autopark-service-links b { margin-top:auto; color:var(--ap-accent); font-size:1.4rem; font-weight:500; }body[data-client-type="business"] .autopark-service-links b { color:var(--ap-yellow); }.autopark-faq-layout { display:grid; grid-template-columns:minmax(270px,.75fr) minmax(0,1.25fr); gap:50px; }.autopark-faq-layout .autopark-section-heading { display:block; margin:0; }.autopark-faq-list { display:grid; gap:10px; }.autopark-faq-list details { border:1px solid var(--ap-line); border-radius:18px; background:var(--ap-bg-2); overflow:hidden; }.autopark-faq-list summary { cursor:pointer; padding:20px 22px; color:var(--ap-ink); font-weight:850; list-style:none; }.autopark-faq-list summary::-webkit-details-marker { display:none; }.autopark-faq-list summary::after { content:"+"; float:right; color:var(--ap-accent); font-size:1.2rem; }.autopark-faq-list details[open] summary::after { content:"−"; }.autopark-faq-list p { margin:0; padding:0 22px 22px; color:var(--ap-muted); line-height:1.6; }@media(max-width:980px){.autopark-page .container{width:min(100% - 32px,1420px)}.autopark-section-heading{grid-template-columns:1fr}.autopark-section-heading>p,.autopark-section-heading h2,.autopark-section-heading>span{grid-column:1;grid-row:auto}.autopark-section-heading>span{margin-top:16px}.card-image{min-height:330px}.autopark-service-links a{grid-column:span 5}.autopark-faq-layout{grid-template-columns:1fr}}@media(max-width:640px){.autopark-page .container{width:calc(100% - 24px)}.autopark-hero-facts{grid-template-columns:1fr}.autopark-hero-guide{padding:20px}.autopark-hero-tabs{flex-wrap:nowrap;overflow:auto;scrollbar-width:none;border-radius:18px}.autopark-hero-tab{white-space:nowrap}.autopark-choice-grid{display:grid;grid-template-columns:1fr}.autopark-choice-grid article{min-height:0}.fleet-tonnage-tabs{justify-content:flex-start;flex-wrap:nowrap;overflow:auto;scrollbar-width:none}.card-image{min-height:250px;padding:18px}.autopark-check-layout,.autopark-faq-layout{padding:26px 20px;border-radius:26px}.autopark-check-grid{grid-template-columns:1fr}.autopark-service-links{grid-template-columns:1fr}.autopark-service-links a{grid-column:1;min-height:145px}}}