
.autopark-page .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.autopark-hero {
    min-height: calc(100vh - 92px);
    padding: 52px 0 60px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at top center, rgba(45, 91, 227, 0.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.autopark-hero-layout {
    display: block;
    width: 100%;
}

.autopark-hero-copy {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}

.autopark-hero-title,
.autopark-hero-subtitle,
.autopark-hero-tags {
    opacity: 0;
    transform: translateY(24px);
    animation: autoparkHeroReveal 0.82s cubic-bezier(.2,.8,.2,1) forwards;
}

.autopark-hero-title { animation-delay: 0.06s; }
.autopark-hero-subtitle { animation-delay: 0.18s; }
.autopark-hero-tags { animation-delay: 0.30s; }

.autopark-hero-kicker {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(45, 91, 227, 0.10);
    color: #2d5be3;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.autopark-hero-title {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.06;
    color: #0f172a;
    font-weight: 800;
}

.autopark-hero-subtitle {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.72;
    color: #475569;
    max-width: 860px;
}

.autopark-hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
}

.autopark-hero-tag {
    padding: 10px 17px;
    border-radius: 999px;
    border: 1px solid rgba(45, 91, 227, 0.16);
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    font-size: 0.94rem;
    font-weight: 700;
    box-shadow: 0 14px 26px -22px rgba(15, 23, 42, 0.45);
    opacity: 0;
    transform: translateY(12px) scale(0.97);
    animation: autoparkTagReveal 0.65s cubic-bezier(.2,.8,.2,1) forwards, autoparkTagGlow 4.2s ease-in-out infinite;
}

.autopark-hero-tag:nth-child(1) { animation-delay: 0.06s, 0.85s; }
.autopark-hero-tag:nth-child(2) { animation-delay: 0.14s, 1.0s; }
.autopark-hero-tag:nth-child(3) { animation-delay: 0.22s, 1.15s; }
.autopark-hero-tag:nth-child(4) { animation-delay: 0.30s, 1.3s; }
.autopark-hero-tag:nth-child(5) { animation-delay: 0.38s, 1.45s; }

.autopark-hero-tag:hover {
    border-color: rgba(45, 91, 227, 0.34);
    box-shadow: 0 18px 30px -24px rgba(45, 91, 227, 0.45);
}

@keyframes autoparkTagReveal {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes autoparkTagGlow {
    0%, 100% { box-shadow: 0 14px 26px -22px rgba(15, 23, 42, 0.45); }
    50% { box-shadow: 0 20px 34px -24px rgba(45, 91, 227, 0.34); }
}

@keyframes autoparkHeroReveal {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .autopark-hero-title,
    .autopark-hero-subtitle,
    .autopark-hero-tags,
    .autopark-hero-tag {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.fleet-showcase {
    padding: 78px 0 88px;
    background: #ffffff;
}

.fleet-section-head {
    max-width: 840px;
    margin: 0 auto 32px;
    text-align: center;
}

.fleet-showcase .section-title {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.15;
    color: #0f172a;
    font-weight: 800;
}

.fleet-showcase .section-subtitle {
    margin: 14px auto 0;
    max-width: 740px;
    font-size: 1.04rem;
    line-height: 1.68;
    color: #64748b;
}

.fleet-slider-shell {
    position: relative;
    padding: 34px 82px 78px;
    border-radius: 34px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(45, 91, 227, 0.10);
    box-shadow: 0 30px 60px -42px rgba(15, 23, 42, 0.38);
    overflow: hidden;
}

.fleet-slider-shell::before {
    content: '';
    position: absolute;
    inset: auto auto -140px -90px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 91, 227, 0.08), transparent 72%);
    pointer-events: none;
}

.fleet-slider-shell::after {
    content: '';
    position: absolute;
    inset: -120px -70px auto auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 179, 71, 0.08), transparent 70%);
    pointer-events: none;
}

.fleet-slider-viewport {
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    position: relative;
    z-index: 1;
}

.fleet-slider-viewport::-webkit-scrollbar {
    display: none;
}

.fleet-grid {
    display: flex;
    gap: 24px;
    align-items: stretch;
    margin: 0;
    padding: 0;
}

.fleet-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 18px 36px -20px rgba(15, 23, 42, 0.28);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    border: 1px solid rgba(45, 91, 227, 0.11);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: row;
    min-height: 448px;
}

.fleet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 46px -24px rgba(45, 91, 227, 0.26);
    border-color: rgba(45, 91, 227, 0.26);
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #2d5be3;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    z-index: 3;
    box-shadow: 0 10px 22px -14px rgba(45, 91, 227, 0.75);
}

.card-image {
    width: 48%;
    min-height: 448px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6edff 100%);
    position: relative;
    border-right: 4px solid #2d5be3;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 24px 18px;
}

.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-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.45s ease;
    position: relative;
    z-index: 0;
}

.fleet-card:hover .card-image img {
    transform: scale(1.04);
}

.card-content {
    width: 52%;
    padding: 24px 26px 22px 28px;
    display: flex;
    flex-direction: column;
    min-height: 448px;
    background: #ffffff;
}

.card-title {
    margin: 0 0 14px;
    font-size: clamp(1.34rem, 1.7vw, 1.82rem);
    font-weight: 800;
    line-height: 1.14;
    color: #0f172a;
}

.card-specs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-specs-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.94rem;
    color: #334155;
    line-height: 1.45;
    padding: 11px 13px;
    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 {
    color: #0f172a;
    font-weight: 800;
}

.card-purpose {
    background: #f8fafc;
    border-radius: 16px;
    padding: 14px 16px;
    margin: 0 0 18px;
    border-left: 4px solid #2d5be3;
}

.purpose-title,
.compatibility-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    margin: 0 0 6px;
    font-weight: 700;
}

.purpose-text {
    font-size: 0.9rem;
    color: #0f172a;
    margin: 0;
    line-height: 1.45;
    font-weight: 600;
}

.compatibility-block {
    margin: 0 0 18px;
}

.compatibility-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.compat-chip {
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}

.card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    margin-top: auto;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    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 {
    color: #ffffff;
    background: #2d5be3;
    transform: translateY(-2px);
    box-shadow: 0 18px 30px -20px rgba(45, 91, 227, 0.7);
}

.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);
}

.card-special:hover {
    border-color: rgba(255, 179, 71, 0.72);
    box-shadow: 0 24px 46px -24px rgba(255, 179, 71, 0.38);
}

.card-badge-special {
    background: #ffb347;
    color: #1e293b;
    box-shadow: 0 10px 22px -14px rgba(255, 179, 71, 0.8);
}

.fleet-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: 1px solid rgba(45, 91, 227, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    color: #2d5be3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.fleet-slider-arrow:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.fleet-slider-arrow svg {
    width: 22px;
    height: 22px;
}

.fleet-slider-prev { left: 18px; }
.fleet-slider-next { right: 18px; }

.fleet-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

.fleet-slider-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.36);
    cursor: pointer;
    transition: transform 0.22s ease, background 0.22s ease;
}

.fleet-slider-dot.active {
    background: #2d5be3;
    transform: scale(1.15);
}

@media (max-width: 1024px) {
    .autopark-hero {
        min-height: calc(100vh - 84px);
    }

    .fleet-showcase {
        padding-top: 64px;
    }

    .fleet-slider-shell {
        padding: 24px 22px 70px;
    }

    .fleet-slider-arrow {
        top: auto;
        bottom: 18px;
        transform: none;
        width: 46px;
        height: 46px;
    }

    .fleet-slider-arrow:hover {
        background: var(--gradient-primary);
        border-color: var(--primary-blue);
        color: var(--white);
        transform: scale(1.1);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }

    .fleet-slider-prev { left: 22px; }
    .fleet-slider-next { right: 22px; }

    .fleet-card,
    .card-content,
    .card-image {
        min-height: 390px;
    }

    .card-image {
        width: 46%;
        padding: 22px 18px 14px;
    }

    .card-content {
        width: 54%;
        padding: 22px 22px 20px;
    }
}

@media (max-width: 768px) {
    .autopark-page .container {
        padding: 0 15px;
    }

    .autopark-hero {
        min-height: auto;
        padding: 34px 0 28px;
    }

    .autopark-hero-copy {
        gap: 14px;
    }

    .autopark-hero-kicker {
        font-size: 0.74rem;
        padding: 7px 12px;
    }

    .autopark-hero-title {
        font-size: 2rem;
    }

    .autopark-hero-subtitle {
        font-size: 0.97rem;
        line-height: 1.62;
    }

    .autopark-hero-tags {
        gap: 8px;
    }

    .autopark-hero-tag {
        font-size: 0.82rem;
        padding: 7px 12px;
    }

    .fleet-showcase {
        padding: 42px 0 42px;
    }

    .fleet-section-head {
        margin-bottom: 20px;
    }

    .fleet-showcase .section-subtitle {
        font-size: 0.96rem;
        line-height: 1.58;
    }

    .fleet-slider-shell {
        padding: 14px 14px 58px;
        border-radius: 22px;
    }

    .fleet-grid {
        gap: 16px;
    }

    .fleet-card {
        flex-direction: column;
        border-radius: 20px;
        min-height: 0;
    }

    .card-image {
        width: 100%;
        min-height: 210px;
        border-right: 0;
        border-bottom: 3px solid #2d5be3;
        padding: 16px 16px 10px;
    }

    .card-content {
        width: 100%;
        min-height: 0;
        padding: 18px;
    }

    .card-title {
        font-size: 1.24rem;
        margin-bottom: 12px;
    }

    .card-specs-list {
        gap: 10px;
        margin-bottom: 16px;
    }

    .card-specs-list li {
        font-size: 0.88rem;
        gap: 10px;
        padding: 10px 11px;
        border-radius: 12px;
    }

    .card-specs-list li i {
        width: 18px;
        font-size: 0.95rem;
    }

    .card-purpose {
        border-radius: 14px;
        padding: 12px 14px;
        margin-bottom: 16px;
    }

    .purpose-title,
    .compatibility-title {
        font-size: 0.68rem;
        margin-bottom: 5px;
    }

    .purpose-text {
        font-size: 0.84rem;
    }

    .compatibility-chips {
        gap: 6px;
    }

    .compat-chip {
        font-size: 0.76rem;
        padding: 5px 10px;
    }

    .card-button {
        padding: 12px 18px;
    }

    .fleet-slider-arrow {
        width: 42px;
        height: 42px;
        bottom: 12px;
    }

    .fleet-slider-prev { left: 14px; }
    .fleet-slider-next { right: 14px; }

    .fleet-slider-dots {
        bottom: 17px;
        gap: 8px;
    }

    .fleet-slider-dot {
        width: 10px;
        height: 10px;
    }

    .card-badge {
        top: 12px;
        left: 12px;
        font-size: 0.63rem;
        padding: 4px 10px;
    }
}
