* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #f3f1ef;
    --bg-soft: #faf8f7;
    --white: #ffffff;
    --text: #1f1f1f;
    --muted: #6f6f6f;
    --line: #e7e1dd;
    --red: #b62025;
    --red-dark: #971b1f;
    --red-soft: #f6e3e3;
    --shadow: 0 12px 30px rgba(30, 20, 20, 0.08);
    --shadow-soft: 0 8px 20px rgba(30, 20, 20, 0.05);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1240px;
}


html {
    scroll-behavior: smooth;
}

#home,
#fleet,
#about,
#contact {
    scroll-margin-top: 60px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(180deg, #f6f3f1 0%, #f1eeeb 100%);
    color: var(--text);
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(246, 243, 241, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(182, 32, 37, 0.06);
    box-shadow: 0 8px 24px rgba(30, 20, 20, 0.05);
    overflow: visible;
}

.header-wrap {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    position: relative;
}

.brand-area {
    position: relative;
    display: flex;
    align-items: center;
    flex: 0 0 360px;
    min-width: 360px;
    max-width: 360px;
    height: 84px;
}

.logo {
    position: absolute;
    left: 0;
    top: -34px;
    display: flex;
    align-items: center;
    z-index: 5;
}

.logo img {
    width: 290px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(182, 32, 37, 0.14));
}



.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex: 1;
}

.main-nav a {
    color: var(--muted);
    font-size: 15px;
    transition: 0.25s ease;
}

.main-nav a:hover {
    color: var(--red);
}

.main-nav .nav-contact {
    color: #fff;
    margin-left: 6px;
}

.main-nav .nav-contact:hover {
    color: #fff;
}

.btn {
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: 0.25s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 10px 24px rgba(182, 32, 37, 0.18);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.7);
    color: var(--text);
    border: 1px solid var(--line);
}

.btn-secondary:hover {
    background: #fff;
}

.hero-section {
    padding: 95px 0 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-left h1 {
    font-size: 68px;
    line-height: 1.02;
    letter-spacing: -1.8px;
    margin-bottom: 20px;
    max-width: 720px;
}

.mini-badge {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    background: var(--red-soft);
    color: var(--red);
    border: 1px solid #ebcaca;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
}

.hero-left h1 {
    font-size: 58px;
    line-height: 1.04;
    letter-spacing: -1.4px;
    margin-bottom: 18px;
    max-width: 680px;
}

.hero-text {
    font-size: 20px;
    color: var(--muted);
    max-width: 580px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 620px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
}

.stat-card strong {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
}

.stat-card span {
    font-size: 14px;
    color: var(--muted);
}

.hero-right {
    position: relative;
}

.hero-right::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    top: -40px;
    right: -40px;
    background: radial-gradient(circle, rgba(182,32,37,0.12) 0%, rgba(182,32,37,0.03) 45%, rgba(182,32,37,0) 75%);
    z-index: 0;
    pointer-events: none;
}

.car-showcase {
    z-index: 1;
}

.car-showcase {
    position: relative;
    background: linear-gradient(180deg, #f8f6f4 0%, #f2eeea 100%);
    border: 1px solid #ebe4df;
    border-radius: 36px;
    box-shadow: 0 20px 50px rgba(30, 20, 20, 0.10);
    padding: 34px 34px 115px;
    overflow: hidden;
    min-height: 640px;
}

.top-chip {
    position: absolute;
    top: 22px;
    right: 22px;
    background: rgba(255,255,255,0.85);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    color: var(--muted);
    box-shadow: var(--shadow-soft);
}

.car-info h2 {
    font-size: 34px;
    margin-bottom: 6px;
}

.car-info p {
    color: var(--muted);
    margin-bottom: 26px;
}

.car-showcase img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: 24px;
    background: #ece7e3;
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 16px 18px;
    box-shadow: var(--shadow-soft);
    min-width: 150px;
}

.floating-card strong {
    display: block;
    font-size: 16px;
    margin-top: 4px;
}

.floating-label {
    font-size: 13px;
    color: var(--muted);
}

.floating-card-1 {
    left: 24px;
    bottom: 26px;
}

.floating-card-2 {
    left: 200px;
    bottom: 26px;
}

.floating-card-3 {
    right: 24px;
    bottom: 26px;
    background: linear-gradient(180deg, #fff 0%, #f9ebeb 100%);
    border-color: #edd3d3;
}

.features-section {
    padding: 22px 0 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--red-soft);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--muted);
}

.fleet-section,
.about-section,
.contact-section {
    padding: 56px 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.section-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--red);
    font-size: 14px;
    font-weight: 700;
}

.section-head h2,
.about-card h2,
.contact-left h2 {
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: -0.8px;
}

.section-head p {
    max-width: 430px;
    color: var(--muted);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.fleet-card {
    background: rgba(255,255,255,0.8);
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: 0.25s ease;
}

.fleet-card:hover {
    transform: translateY(-4px);
}

.fleet-image {
    height: 220px;
    overflow: hidden;
    background: #ece8e4;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fleet-body {
    padding: 22px;
}

.fleet-body h3 {
    font-size: 26px;
    margin-bottom: 8px;
}

.fleet-body p {
    color: var(--muted);
    margin-bottom: 16px;
}

.fleet-body ul {
    list-style: none;
    display: grid;
    gap: 8px;
    margin-bottom: 20px;
}

.fleet-body li {
    position: relative;
    padding-left: 18px;
}

.fleet-body li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    position: absolute;
    left: 0;
    top: 8px;
}

.fleet-link {
    color: var(--red);
    font-weight: 700;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
    gap: 20px;
}

.about-card {
    background: rgba(255,255,255,0.78);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.about-card p {
    color: var(--muted);
}

.big-card h2 {
    margin-bottom: 14px;
}

.small-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.small-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: start;
}

.contact-left p {
    color: var(--muted);
    max-width: 520px;
    margin: 14px 0 24px;
}

.contact-boxes {
    display: grid;
    gap: 14px;
}

.contact-box {
    background: rgba(255,255,255,0.78);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px 20px;
    box-shadow: var(--shadow-soft);
}

.contact-box strong {
    display: block;
    margin-bottom: 6px;
}

.contact-box span {
    color: var(--muted);
}

.contact-form {
    background: linear-gradient(180deg, #ffffff 0%, #fbf8f6 100%);
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 28px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 14px;
}

.contact-form h3 {
    font-size: 26px;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #e2dbd6;
    background: #fff;
    border-radius: 16px;
    padding: 15px 16px;
    font-size: 15px;
    color: var(--text);
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #dba3a5;
    box-shadow: 0 0 0 4px rgba(182, 32, 37, 0.08);
}

.form-btn {
    width: 100%;
}

.site-footer {
    padding: 24px 0 34px;
}

.footer-wrap {
    border-top: 1px solid var(--line);
    padding-top: 24px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}



@media (max-width: 1180px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        align-items: center;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-left h1 {
        font-size: 46px;
        line-height: 1.08;
    }

    .hero-text {
        font-size: 18px;
    }

    .car-showcase {
        min-height: auto;
        padding: 28px 28px 100px;
    }

    .car-showcase img {
        height: 250px;
        object-fit: cover;
    }

    .fleet-image {
        height: 240px;
    }
}

@media (max-width: 860px) {

    #home,
    #fleet,
    #about,
    #contact {
        scroll-margin-top: 140px;
    }

    .container {
        width: min(94%, var(--container));
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        overflow: hidden;
    }

    .header-wrap {
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 8px 0 10px;
    }

    .brand-area {
        flex: none;
        width: 100%;
        min-width: 0;
        max-width: none;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo {
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        margin-bottom: -30px;
    }

    .logo img {
        width: 210px;
        height: auto;
        max-width: 100%;
    }

    .logo-line {
        display: none;
    }

    .main-nav {
        position: relative;
        z-index: 3;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        padding-top: 0;
    }

    .main-nav a {
        position: relative;
        z-index: 4;
        font-size: 14px;
    }

    .main-nav .nav-contact {
        min-height: 42px;
        padding: 0 18px;
        color: #fff;
        white-space: nowrap;
        margin-left: 0;
    }

    .main-nav .nav-contact:hover {
        color: #fff;
    }

    .hero-section {
        padding: 36px 0 40px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-left,
    .hero-right {
        position: relative;
        z-index: 1;
    }

    .mini-badge {
        margin-bottom: 18px;
    }

    .hero-left h1 {
        font-size: 34px;
        line-height: 1.08;
        letter-spacing: -1px;
        max-width: 100%;
        margin-bottom: 16px;
    }

    .hero-text {
        font-size: 17px;
        max-width: 100%;
        margin-bottom: 26px;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 28px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .btn {
        min-height: 46px;
        padding: 0 18px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        max-width: 100%;
    }

    .stat-card {
        padding: 14px;
        border-radius: 18px;
    }

    .stat-card strong {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .stat-card span {
        font-size: 12px;
    }

    .hero-right::before {
        width: 220px;
        height: 220px;
        top: -20px;
        right: -10px;
    }

    .car-showcase {
        min-height: auto;
        padding: 20px;
        border-radius: 26px;
    }

    .top-chip {
        top: 16px;
        right: 16px;
        font-size: 12px;
        padding: 8px 14px;
    }

    .car-info h2 {
        font-size: 28px;
        margin-bottom: 4px;
    }

    .car-info p {
        margin-bottom: 18px;
    }

    .car-showcase img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        object-position: center center;
        border-radius: 18px;
    }

    .floating-card-1,
    .floating-card-2,
    .floating-card-3 {
        position: static;
        margin-top: 12px;
        width: 100%;
        min-width: 0;
    }

    .features-section {
        padding: 10px 0 24px;
    }

    .features-grid,
    .fleet-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .about-card {
        padding: 22px;
    }

    .fleet-section,
    .about-section,
    .contact-section {
        padding: 42px 0;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 22px;
    }

    .section-head h2,
    .about-card h2,
    .contact-left h2 {
        font-size: 28px;
        line-height: 1.08;
    }

    .section-head p,
    .contact-left p,
    .about-card p {
        max-width: 100%;
    }

    .fleet-card {
        border-radius: 24px;
    }

    .fleet-image {
        height: 240px;
        overflow: hidden;
    }

    .fleet-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .fleet-card:nth-child(1) .fleet-image img {
        object-position: center 62%;
    }

    .fleet-card:nth-child(2) .fleet-image img {
        object-position: center 72%;
    }

    .fleet-card:nth-child(3) .fleet-image img {
        object-position: center 68%;
    }

    .fleet-body {
        padding: 20px;
    }

    .fleet-body h3 {
        font-size: 22px;
    }

    .contact-form {
        padding: 22px;
        border-radius: 24px;
    }

    .contact-form h3 {
        font-size: 24px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
    }

    .form-btn {
        width: 100%;
    }

    .site-footer {
        padding: 18px 0 28px;
    }

}