:root {
                --ink: #111827;
                --muted: #64748b;
                --line: #dbe3ef;
                --panel: #ffffff;
                --soft: #f3f6fa;
                --brand: #d71920;
                --brand-dark: #95171c;
                --accent: #0f766e;
                --night: #0b1220;
            }

            * {
                box-sizing: border-box;
            }

            html {
                scroll-behavior: smooth;
            }

            body {
                margin: 0;
                background: var(--soft);
                color: var(--ink);
                font-family: "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            }

            a {
                color: inherit;
                text-decoration: none;
            }

            img {
                display: block;
                max-width: 100%;
            }

            button {
                font: inherit;
            }

            .site-shell {
                min-height: 100vh;
            }

            .topbar {
                position: sticky;
                top: 0;
                z-index: 20;
                background: rgba(255, 255, 255, .92);
                border-bottom: 1px solid var(--line);
                backdrop-filter: blur(16px);
            }

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

            .navbar-toggler {
                border-color: var(--line);
                border-radius: 8px;
            }

            .navbar-toggler:focus {
                box-shadow: 0 0 0 .18rem rgba(215, 25, 32, .2);
            }

            .brand-lockup {
                display: flex;
                align-items: center;
                gap: 14px;
                font-weight: 800;
                letter-spacing: 0;
                color: var(--ink);
                font-size: 17px;
            }

            .brand-mark {
                width: 42px;
                height: 42px;
                display: grid;
                place-items: center;
                border-radius: 8px;
                background: var(--brand);
                color: #fff;
                font-weight: 800;
            }

            .brand-logo {
                width: 108px;
                height: 66px;
                display: grid;
                place-items: center;
                overflow: visible;
                border-radius: 6px;
                background: transparent;
                padding: 0;
            }

            .brand-logo img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }

            .nav-links {
                display: flex;
                align-items: center;
                gap: 20px;
                color: var(--muted);
                font-size: 14px;
                font-weight: 700;
            }

            .nav-links .nav-link {
                color: var(--muted);
                padding: 8px 0;
            }

            .nav-links .nav-link:hover,
            .nav-links .nav-link:focus {
                color: var(--brand);
            }

            .nav-cta,
            .primary-button {
                min-height: 44px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                border: 0;
                border-radius: 8px;
                background: var(--brand);
                color: #fff;
                padding: 0 18px;
                font-weight: 800;
                box-shadow: 0 12px 24px rgba(215, 25, 32, .22);
                cursor: pointer;
            }

            .secondary-button {
                min-height: 44px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border: 1px solid rgba(255, 255, 255, .54);
                border-radius: 8px;
                color: #fff;
                padding: 0 18px;
                font-weight: 800;
            }

            .section {
                width: min(1180px, calc(100% - 32px));
                margin: 0 auto;
            }

            .hero {
                position: relative;
                min-height: 620px;
                display: grid;
                align-items: end;
                overflow: hidden;
                background: var(--night);
                color: #fff;
            }

            .hero-image {
                position: absolute;
                inset: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .hero::after {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(90deg, rgba(11, 18, 32, .92), rgba(11, 18, 32, .45) 48%, rgba(11, 18, 32, .18));
            }

            .hero-content {
                position: relative;
                z-index: 1;
                width: min(1180px, calc(100% - 32px));
                margin: 0 auto;
                padding: 96px 0 56px;
            }

            .hero-logo {
                width: min(300px, 72vw);
                max-height: 180px;
                object-fit: contain;
                margin-bottom: 18px;
            }

            .hero-kicker {
                display: inline-flex;
                align-items: center;
                min-height: 32px;
                padding: 0 12px;
                border-radius: 8px;
                background: rgba(255, 255, 255, .14);
                font-size: 13px;
                font-weight: 800;
                text-transform: uppercase;
            }

            .hero h1 {
                max-width: 760px;
                margin: 18px 0 16px;
                font-size: clamp(42px, 7vw, 78px);
                line-height: .98;
                letter-spacing: 0;
            }

            .hero p {
                max-width: 620px;
                margin: 0;
                color: rgba(255, 255, 255, .82);
                font-size: 18px;
                line-height: 1.6;
            }

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

            .banner-strip {
                display: grid;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 16px;
                margin-top: -32px;
                position: relative;
                z-index: 2;
            }

            .banner-mini {
                position: relative;
                min-height: 220px;
                display: grid;
                align-items: end;
                overflow: hidden;
                border-radius: 8px;
                background: var(--night);
                border: 1px solid var(--line);
                box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
            }

            .banner-mini::after {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(180deg, rgba(11, 18, 32, .08), rgba(11, 18, 32, .84));
            }

            .banner-mini-without-image::after {
                display: none;
            }

            .banner-mini-image {
                position: absolute;
                inset: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .banner-mini-content {
                position: relative;
                z-index: 1;
                padding: 22px;
                color: #fff;
            }

            .banner-mini strong {
                display: block;
                margin-bottom: 8px;
                font-size: 18px;
            }

            .banner-mini span {
                display: block;
                color: rgba(255, 255, 255, .82);
                line-height: 1.5;
            }

            .banner-mini a {
                min-height: 38px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                margin-top: 14px;
                border-radius: 8px;
                background: var(--brand);
                color: #fff;
                padding: 0 14px;
                font-size: 14px;
                font-weight: 800;
            }

            .banner-mini-without-image {
                background: #fff;
            }

            .banner-mini-without-image .banner-mini-content,
            .banner-mini-without-image strong {
                color: var(--ink);
            }

            .banner-mini-without-image .banner-mini-content span {
                color: var(--muted);
            }

            .section-heading {
                display: flex;
                align-items: end;
                justify-content: space-between;
                gap: 24px;
                margin: 74px 0 26px;
            }

            .section-heading h2 {
                margin: 0;
                font-size: clamp(30px, 4vw, 46px);
                line-height: 1.05;
                letter-spacing: 0;
            }

            .section-heading p {
                max-width: 520px;
                margin: 8px 0 0;
                color: var(--muted);
                line-height: 1.6;
            }

            .brand-filter {
                display: flex;
                flex-wrap: wrap;
                gap: 10px;
                margin-bottom: 24px;
            }

            .brand-button {
                min-height: 42px;
                border: 1px solid var(--line);
                border-radius: 8px;
                background: #fff;
                color: var(--ink);
                padding: 0 16px;
                font-weight: 800;
                cursor: pointer;
            }

            .brand-button.is-active {
                border-color: var(--brand);
                background: var(--brand);
                color: #fff;
            }

            .vehicle-grid {
                --bs-gutter-x: 18px;
                --bs-gutter-y: 18px;
            }

            .vehicle-card {
                overflow: hidden;
                border: 1px solid var(--line);
                border-radius: 8px;
                background: #fff;
                box-shadow: 0 16px 34px rgba(15, 23, 42, .07);
            }

            .vehicle-photo {
                width: 100%;
                aspect-ratio: 4 / 3;
                object-fit: cover;
                background: #dbe3ef;
            }

            .vehicle-body {
                padding: 18px;
            }

            .vehicle-meta {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 12px;
                color: var(--muted);
                font-size: 13px;
                font-weight: 800;
                text-transform: uppercase;
            }

            .vehicle-card h3 {
                margin: 10px 0 12px;
                font-size: 22px;
                line-height: 1.15;
            }

            .vehicle-specs {
                display: grid;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 8px;
                margin: 0 0 18px;
                padding: 0;
                list-style: none;
            }

            .vehicle-specs li {
                min-height: 54px;
                display: grid;
                align-content: center;
                border-radius: 8px;
                background: var(--soft);
                padding: 8px;
                color: var(--muted);
                font-size: 12px;
                font-weight: 700;
            }

            .vehicle-specs strong {
                display: block;
                color: var(--ink);
                font-size: 14px;
            }

            .price-row {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 12px;
                border-top: 1px solid var(--line);
                padding-top: 16px;
            }

            .price {
                color: var(--brand-dark);
                font-size: 22px;
                font-weight: 900;
            }

            .whatsapp-button {
                min-height: 40px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border-radius: 8px;
                background: var(--accent);
                color: #fff;
                padding: 0 14px;
                font-size: 14px;
                font-weight: 800;
            }

            .empty-state {
                border: 1px dashed var(--line);
                border-radius: 8px;
                background: #fff;
                padding: 32px;
                color: var(--muted);
                text-align: center;
            }

            .footer {
                margin-top: 76px;
                background: var(--night);
                color: #fff;
            }

            .footer-inner {
                width: min(1180px, calc(100% - 32px));
                margin: 0 auto;
                padding: 46px 0 34px;
                color: rgba(255, 255, 255, .86);
            }

            .footer-brand-block {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 24px;
                margin-bottom: 34px;
                color: rgba(255, 255, 255, .86);
            }

            .footer-brand-block span {
                display: block;
            }

            .footer-brand-logo {
                display: flex;
                align-items: center;
                gap: 14px;
            }

            .footer-brand-logo img {
                width: 96px;
                height: 64px;
                object-fit: contain;
            }

            .footer-brand-logo strong {
                color: #fff;
                font-size: 18px;
            }

            .footer-columns {
                --bs-gutter-x: 34px;
                --bs-gutter-y: 34px;
            }

            .footer-column h3 {
                display: flex;
                align-items: center;
                gap: 10px;
                margin: 0 0 18px;
                color: #fff;
                font-size: 18px;
            }

            .footer-column h3 span {
                width: 34px;
                height: 34px;
                display: inline-grid;
                place-items: center;
                border-radius: 8px;
                background: rgba(255, 255, 255, .12);
                font-size: 13px;
                font-weight: 900;
            }

            .footer-column p {
                margin: 0;
                color: rgba(255, 255, 255, .64);
                font-size: 14px;
            }

            .footer-links {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .footer-links a {
                color: #fff;
                font-size: 15px;
                font-weight: 700;
                text-decoration: underline;
                text-underline-offset: 3px;
            }

            .footer-links a:hover {
                color: #f8fafc;
            }

            .social-links {
                display: flex;
                flex-direction: column;
                gap: 10px;
            }

            .social-links a {
                display: inline-flex;
                align-items: center;
                gap: 10px;
                color: #fff;
                font-weight: 800;
            }

            .social-links span {
                width: 34px;
                height: 34px;
                display: inline-grid;
                place-items: center;
                border: 1px solid rgba(255, 255, 255, .26);
                border-radius: 8px;
                font-size: 12px;
            }

            @media (max-width: 900px) {
                .nav {
                    align-items: flex-start;
                    flex-direction: column;
                    padding: 16px 0;
                }

                .navbar-collapse {
                    width: 100%;
                }

                .brand-logo {
                    width: 96px;
                    height: 60px;
                }

                .nav-links {
                    width: 100%;
                    align-items: flex-start;
                    gap: 10px;
                    padding-bottom: 4px;
                }

                .hero {
                    min-height: 560px;
                }

                .banner-strip {
                    grid-template-columns: 1fr;
                }

                .section-heading {
                    align-items: flex-start;
                    flex-direction: column;
                }

                .footer-inner {
                    padding-bottom: 42px;
                }

                .footer-brand-block {
                    align-items: flex-start;
                    flex-direction: column;
                }

            }

            [data-reveal] {
                opacity: 0;
                transform: translateY(18px);
                transition: opacity .45s ease, transform .45s ease;
            }

            [data-reveal].is-visible {
                opacity: 1;
                transform: translateY(0);
            }

            @media (max-width: 520px) {
                .hero-content {
                    padding-top: 72px;
                }

                .hero-logo {
                    width: min(230px, 78vw);
                    max-height: 138px;
                }

                .hero p {
                    font-size: 16px;
                }

                .vehicle-specs {
                    grid-template-columns: 1fr;
                }

                .price-row {
                    align-items: flex-start;
                    flex-direction: column;
                }
            }


.catalog-page-head {
    padding: 72px 0 10px;
}

.catalog-page-head h1 {
    max-width: 720px;
    margin: 12px 0 12px;
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1;
    letter-spacing: 0;
}

.catalog-page-head p {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.catalog-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    border-radius: 8px;
    background: #e2e8f0;
    color: #334155;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}
