* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 92%;
    max-width: 1250px;
    margin: 0 auto;
}

/* HEADER */

.header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo b {
    color: #c91f2c;
}

.logo-image {
    width: 43px;
    height: 43px;
    object-fit: contain;
    border-radius: 11px;
    display: block;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    font-size: 15px;
    color: #555;
    transition: 0.2s;
}

.nav a:hover {
    color: #c91f2c;
}

.header-call {
    background: #c91f2c;
    color: #fff;
    padding: 12px 22px;
    border-radius: 13px;
    font-weight: 600;
    transition: 0.2s;
}

.header-call:hover {
    background: #a81723;
}

/* HERO */

.hero {
    background: #fff;
    min-height: 850px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 55px;
    align-items: center;
    padding: 70px 0;
}

.badge {
    display: inline-block;
    padding: 9px 17px;
    background: #fff0f1;
    color: #c91f2c;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: 61px;
    line-height: 1.06;
    letter-spacing: -2.5px;
}

.hero h1 span {
    color: #c91f2c;
}

.hero-description {
    max-width: 600px;
    margin-top: 25px;
    font-size: 19px;
    color: #666;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 35px;
}

.btn {
    padding: 16px 24px;
    border-radius: 14px;
    font-weight: 700;
    transition: 0.2s;
}

.btn-primary {
    background: #c91f2c;
    color: #fff;
}

.btn-primary:hover {
    background: #a81723;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
}

.btn-secondary:hover {
    border-color: #c91f2c;
    color: #c91f2c;
}

.small-text {
    margin-top: 14px;
    color: #999;
    font-size: 13px;
}

/* PHOTOS */

.hero-photos {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.hero-photos img:first-child {
    width: 100%;
    height: 430px;
    object-fit: contain;
    background: #fff;
    border-radius: 40px;
    padding: 10px;
    border: 1px solid #eee;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    display: block;
    transition: 0.25s;
}

.hero-photos img:last-child {
    width: 72%;
    height: 250px;
    object-fit: contain;
    background: #fff;
    border-radius: 32px;
    padding: 10px;
    border: 1px solid #eee;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    display: block;
    transition: 0.25s;
}

.hero-photos img:hover {
    transform: translateY(-5px);
}

/* SECTIONS */

.section {
    padding: 105px 0;
}

.section-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.section-title span,
.advantages-title span,
.contact-text span {
    color: #c91f2c;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-title h2 {
    margin-top: 12px;
    font-size: 41px;
    line-height: 1.15;
}

.section-title p {
    margin-top: 18px;
    color: #666;
    font-size: 17px;
}

/* DESCRIPTION */

.description-section {
    background: #fafafa;
}

.description-box {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

.description-intro {
    font-size: 19px;
    color: #555;
    margin-bottom: 35px;
}

.description-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.description-item {
    display: flex;
    gap: 20px;
    padding: 22px;
    background: #fafafa;
    border-radius: 20px;
    border: 1px solid #eee;
}

.description-icon {
    min-width: 52px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #fff0f1;
    color: #c91f2c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.description-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.description-item p {
    color: #666;
    font-size: 15px;
}

.description-bottom {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    text-align: center;
}

.description-bottom strong {
    display: block;
    color: #c91f2c;
    font-size: 21px;
    margin-bottom: 8px;
}

.description-bottom p {
    color: #666;
}

.description-final {
    margin-top: 18px;
    font-weight: 700;
    color: #222 !important;
}

/* ABOUT */

.about {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-card {
    border: 1px solid #eee;
    border-radius: 22px;
    padding: 30px 25px;
    background: #fff;
    transition: 0.25s;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.card-icon {
    width: 58px;
    height: 58px;
    border-radius: 17px;
    background: #fff0f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 14px;
    color: #666;
}

/* SERVICES */

.services {
    background: #c91f2c;
    color: #fff;
}

.section-title.light h2 {
    color: #fff;
}

.section-title.light span {
    color: #ffd9dc;
}

.service-list {
    max-width: 900px;
    margin: auto;
}

.service-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 25px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.service-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.service-number {
    font-size: 22px;
    font-weight: 700;
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 7px;
}

.service-item p {
    color: #ffe5e7;
    font-size: 15px;
}

/* ADVANTAGES */

.advantages {
    background: #fff;
}

.advantages-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.advantages-title h2 {
    margin-top: 15px;
    font-size: 43px;
    line-height: 1.15;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.advantage {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: #fafafa;
    border-radius: 16px;
    border: 1px solid #eee;
}

.advantage span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff0f1;
    color: #c91f2c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.advantage p {
    color: #444;
}

/* CONTACTS */

.contacts {
    background: #fafafa;
}

.contact-box {
    background: #c91f2c;
    border-radius: 32px;
    padding: 65px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    color: #fff;
}

.contact-text span {
    color: #ffd9dc;
}

.contact-text h2 {
    font-size: 46px;
    margin: 10px 0;
    line-height: 1.1;
}

.contact-text p {
    color: #ffe5e7;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-phone {
    background: #fff;
    color: #222;
    border-radius: 18px;
    padding: 19px 23px;
    font-size: 23px;
    font-weight: 700;
    transition: 0.2s;
}

.contact-phone:hover {
    transform: translateX(5px);
}

.contact-phone small {
    display: block;
    color: #999;
    font-size: 12px;
    font-weight: 500;
}

/* FOOTER */

.footer {
    background: #222;
    color: #fff;
    padding: 35px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-logo b {
    color: #c91f2c;
}

.footer-inner p {
    color: #bbb;
    font-size: 13px;
}

/* TABLET */

@media (max-width: 1000px) {

    .nav {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero {
        min-height: auto;
    }

    .hero h1 {
        font-size: 50px;
    }

    .hero-photos img:first-child {
        height: 420px;
    }

    .hero-photos img:last-child {
        width: 60%;
        height: 230px;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-box {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* MOBILE */

@media (max-width: 600px) {

    .container {
        width: 92%;
    }

    .header-inner {
        height: 68px;
    }

    .logo {
        font-size: 18px;
    }

    .logo-image {
        width: 35px;
        height: 35px;
    }

    .header-call {
        padding: 9px 12px;
        font-size: 12px;
    }

    .hero-content {
        padding: 55px 0;
    }

    .hero h1 {
        font-size: 39px;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-photos {
        gap: 20px;
    }

    .hero-photos img:first-child {
        width: 100%;
        height: 330px;
        border-radius: 30px;
    }

    .hero-photos img:last-child {
        width: 85%;
        height: 190px;
        border-radius: 27px;
    }

    .section {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 31px;
    }

    .description-box {
        padding: 25px 18px;
        border-radius: 24px;
    }

    .description-intro {
        font-size: 17px;
    }

    .description-item {
        padding: 18px;
        gap: 14px;
    }

    .description-icon {
        min-width: 44px;
        width: 44px;
        height: 44px;
        font-size: 21px;
        border-radius: 13px;
    }

    .description-item h3 {
        font-size: 16px;
    }

    .description-item p {
        font-size: 14px;
    }

    .description-bottom strong {
        font-size: 18px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        grid-template-columns: 50px 1fr;
        gap: 15px;
    }

    .service-item h3 {
        font-size: 18px;
    }

    .advantages-title h2 {
        font-size: 34px;
    }

    .contact-box {
        padding: 35px 25px;
    }

    .contact-text h2 {
        font-size: 35px;
    }

    .contact-phone {
        font-size: 18px;
    }
}