:root {
    --black: #050b10;
    --black-2: #07131b;
    --panel: #081119;
    --panel-2: #0c1821;
    --red: #f31c24;
    --red-2: #c90f18;
    --white: #ffffff;
    --muted: #aab3bb;
    --line: rgba(255, 255, 255, 0.16);
    --light: #f6f7f8;
    --text: #0b1117;
    --shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.55;
}

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

img {
    max-width: 100%;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 26px clamp(22px, 5vw, 70px);
    color: var(--white);
}

.logo img {
    width: 190px;
    display: block;
}

.nav {
    display: flex;
    justify-content: center;
    gap: clamp(16px, 2.4vw, 34px);
    font-size: 0.9rem;
    font-weight: 800;
}

.nav a:first-child,
.nav a:hover {
    color: var(--red);
}

.phone {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 5px;
    background: var(--red);
    color: var(--white);
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(243, 28, 36, 0.32);
}

.phone::before {
    content: "☎";
    margin-right: 10px;
}

.hero {
    position: relative;
    min-height: 760px;
    color: var(--white);
    background: var(--black);
    overflow: visible;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 11, 16, 0.96) 0%, rgba(5, 11, 16, 0.76) 36%, rgba(5, 11, 16, 0.08) 70%),
        linear-gradient(180deg, rgba(5, 11, 16, 0.12) 0%, rgba(5, 11, 16, 0.98) 100%),
        url("hero-van.png") center right / cover no-repeat;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    min-height: 650px;
    padding: 136px clamp(22px, 5vw, 70px) 120px;
}

.hero-copy {
    max-width: 660px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(3rem, 6vw, 5.45rem);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: 0;
}

.hero h1 span,
.section-title span,
.about-copy span,
.contact-info span {
    color: var(--red);
}

.hero p {
    max-width: 450px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.22rem;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 5px;
    border: 1px solid transparent;
    font-weight: 900;
    cursor: pointer;
}

.btn-red {
    color: var(--white);
    background: linear-gradient(135deg, var(--red), var(--red-2));
    box-shadow: 0 14px 30px rgba(243, 28, 36, 0.28);
}

.btn-red::after {
    content: "→";
    margin-left: 10px;
}

.btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(5, 11, 16, 0.26);
}

.usp-bar {
    position: absolute;
    z-index: 2;
    left: clamp(22px, 5vw, 70px);
    right: clamp(22px, 5vw, 70px);
    bottom: -44px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 26px 28px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(5, 11, 16, 0.94);
    box-shadow: var(--shadow);
}

.usp-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 16px;
    align-items: center;
    padding: 0 24px;
    border-right: 1px solid var(--line);
}

.usp-item:last-child {
    border-right: 0;
}

.usp-icon {
    grid-row: span 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid var(--red);
    border-radius: 999px;
    color: var(--red);
    font-size: 0.82rem;
    font-weight: 950;
}

.usp-item strong {
    font-weight: 900;
}

.usp-item small {
    color: var(--white);
}

.section {
    padding: 86px clamp(22px, 5vw, 70px);
}

.light {
    background: var(--light);
}

.section-title {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-title span,
.about-copy span,
.contact-info span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.86rem;
    font-weight: 950;
    text-transform: uppercase;
}

.section-title h2,
.about-copy h2,
.contact-info h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.1;
    font-weight: 950;
}

.section-title p {
    max-width: 720px;
    margin: 18px auto 0;
    color: #38434b;
    font-weight: 650;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    border: 1px solid #d8dde1;
    border-radius: 6px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.06);
}

.service-card img {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
}

.service-body {
    position: relative;
    padding: 50px 30px 30px;
}

.round-icon {
    position: absolute;
    top: -30px;
    left: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    color: var(--white);
    background: var(--red);
    font-size: 1.45rem;
    font-weight: 950;
}

.service-body h3 {
    margin: 0 0 12px;
    font-size: 1.7rem;
}

.service-body p {
    margin: 0 0 22px;
    color: #29343c;
    font-weight: 650;
}

.service-body ul,
.rate-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-body li,
.rate-card li {
    position: relative;
    padding-left: 24px;
    font-weight: 750;
}

.service-body li::before,
.rate-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 950;
}

.rates-section {
    padding-top: 24px;
}

.rate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.rate-card {
    position: relative;
    min-height: 315px;
    padding: 30px;
    border-radius: 7px;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 34%, rgba(255, 255, 255, 0.09), transparent 30%),
        linear-gradient(145deg, #081019, #0d1820);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.rate-card::after {
    content: "";
    position: absolute;
    inset: auto -24px 16px auto;
    width: 190px;
    height: 170px;
    opacity: 0.08;
    background: var(--white);
    clip-path: polygon(26% 8%, 76% 0, 98% 36%, 76% 96%, 22% 82%, 0 42%);
}

.flag {
    font-size: 1.45rem;
}

.rate-card h3 {
    margin: 8px 0 12px;
    font-size: 1.9rem;
}

.rate-card small {
    display: block;
    color: var(--white);
}

.rate-card strong {
    display: block;
    margin: 0 0 20px;
    color: var(--red);
    font-size: 3.3rem;
    line-height: 1;
}

.rate-card li {
    font-size: 0.95rem;
}

.btn-center {
    width: max-content;
    margin: 0 auto;
    color: var(--text);
    border-color: #0e151c;
    background: transparent;
}

.about {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    color: var(--white);
    background: var(--black);
}

.about-image {
    min-height: 410px;
    background:
        linear-gradient(90deg, rgba(5, 11, 16, 0), rgba(5, 11, 16, 0.55)),
        url("hero-van.png") center / cover no-repeat;
}

.about-copy {
    padding: clamp(48px, 6vw, 76px) clamp(28px, 6vw, 84px);
    background:
        linear-gradient(90deg, rgba(5, 11, 16, 0.78), rgba(5, 11, 16, 0.96)),
        radial-gradient(circle at 90% 30%, rgba(243, 28, 36, 0.12), transparent 32%);
}

.about-copy p {
    max-width: 850px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 650;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 36px;
}

.about-features div {
    border-top: 2px solid var(--red);
    padding-top: 16px;
}

.about-features b,
.about-features small {
    display: block;
}

.about-features small {
    margin-top: 6px;
    color: var(--muted);
}

.faq {
    padding-top: 70px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
}

details {
    padding: 22px;
    border: 1px solid #d8dde1;
    border-radius: 6px;
    background: var(--white);
}

summary {
    cursor: pointer;
    font-weight: 950;
}

details p {
    margin: 14px 0 0;
    color: #414c55;
}

.contact {
    display: grid;
    grid-template-columns: 0.72fr 1fr;
    gap: 54px;
    padding: 80px clamp(22px, 5vw, 70px);
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(5, 11, 16, 0.98), rgba(8, 19, 27, 0.96)),
        radial-gradient(circle at 12% 22%, rgba(243, 28, 36, 0.12), transparent 24%);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info p {
    max-width: 450px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
    font-weight: 650;
}

.contact-info a {
    display: block;
    margin-top: 28px;
    font-size: 1.08rem;
    font-weight: 850;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 4px;
    padding: 0 16px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.035);
    font: inherit;
}

.contact-form textarea {
    min-height: 118px;
    padding-top: 14px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.76);
}

.contact-form select {
    color: rgba(255, 255, 255, 0.76);
}

.contact-form option {
    color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(243, 28, 36, 0.34);
    border-color: var(--red);
}

.wide,
.notice {
    grid-column: 1 / -1;
}

.notice {
    padding: 14px 16px;
    border-radius: 4px;
    font-weight: 850;
}

.success {
    color: #dff8e8;
    background: rgba(24, 139, 79, 0.36);
}

.error {
    color: #ffe3e4;
    background: rgba(243, 28, 36, 0.26);
}

.hidden-field {
    position: absolute;
    left: -9999px;
}

.footer {
    padding: 26px 22px;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
    background: #03070b;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer p {
    margin: 4px 0;
}

@media (max-width: 1100px) {
    .header {
        position: relative;
        grid-template-columns: 1fr;
        gap: 18px;
        background: var(--black);
    }

    .nav {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .phone {
        width: max-content;
    }

    .hero-inner {
        padding-top: 70px;
    }

    .usp-bar,
    .service-grid,
    .rate-grid,
    .about,
    .contact,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .usp-bar {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin: -70px 22px 0;
    }

    .usp-item {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 18px 0;
    }

    .usp-item:last-child {
        border-bottom: 0;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .logo img {
        width: 170px;
    }

    .hero {
        min-height: auto;
    }

    .hero-bg {
        background:
            linear-gradient(180deg, rgba(5, 11, 16, 0.72), rgba(5, 11, 16, 0.98)),
            url("hero-van.png") center / cover no-repeat;
    }

    .hero-inner {
        min-height: 560px;
        padding: 58px 22px 120px;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero-actions,
    .btn,
    .phone {
        width: 100%;
    }

    .section {
        padding: 62px 22px;
    }

    .contact {
        padding: 62px 22px;
    }

    .contact-form,
    .about-features {
        grid-template-columns: 1fr;
    }

    .wide {
        grid-column: auto;
    }
}
