body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #fff;
    color: #343434;
}

/* Основной header */
.main-header {
    background: #232323;
    border-bottom: 2px solid #dedede;
    box-shadow: 0 1px 8px rgba(30,30,30,0.06);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
    padding: 10px 30px;
    position: relative;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* Меню и ссылки */
.main-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.06rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.2s;
    padding: 6px 2px;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: #ff8200;
}

.header-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}

.worktime {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.1;
}

.phone {
    color: #fff;
    font-weight: 700;
    font-size: 1.12rem;
    text-decoration: none;
    transition: color 0.2s;
}

.phone:hover {
    color: #ff8200;
}

/* Адаптив: планшеты */
@media (max-width: 900px) {
    .header-top {
        padding: 10px 12px;
    }
    .main-nav {
        gap: 18px;
    }
    .logo img {
        height: 34px;
    }
    .phone {
        font-size: 1rem;
    }
}

/* Адаптив: мобильные */
@media (max-width: 600px) {
    .header-top {
        flex-direction: row;
        align-items: center;
        padding: 8px 8px;
    }
    .logo img {
        height: 29px;
    }
    .main-nav {
        display: none; /* Скрыто, появляется по кнопке-гамбургеру */
        flex-direction: column;
        background: #232323;
        position: absolute;
        top: 54px;
        left: 0;
        width: 100%;
        z-index: 50;
        padding: 16px 0 10px 0;
        gap: 16px;
    }
    .main-nav.open {
        display: flex;
    }
    .header-contacts {
        align-items: flex-end;
        font-size: 0.94rem;
    }
    /* Гамбургер */
    .burger {
        display: inline-block;
        cursor: pointer;
        width: 32px;
        height: 32px;
        position: relative;
        margin-left: 16px;
        z-index: 101;
    }
    .burger span,
    .burger span:before,
    .burger span:after {
        display: block;
        background: #fff;
        height: 3px;
        width: 24px;
        border-radius: 2px;
        position: absolute;
        left: 4px;
        transition: all .25s;
    }
    .burger span {
        top: 14px;
    }
    .burger span:before {
        content: '';
        top: -9px;
    }
    .burger span:after {
        content: '';
        top: 9px;
    }
    .burger.open span {
        background: transparent;
    }
    .burger.open span:before {
        top: 0;
        transform: rotate(45deg);
    }
    .burger.open span:after {
        top: 0;
        transform: rotate(-45deg);
    }
}
.main-footer {
    background: #232323;
    color: #d7d7d7;
    padding-top: 32px;
    margin-top: 60px;
    font-size: 1rem;
}
.footer-content {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    padding: 0 30px 18px 30px;
}
.footer-logo-col {
    flex: 1 1 210px;
    min-width: 180px;
}
.footer-logo img {
    height: 38px;
    margin-bottom: 8px;
}
.footer-desc {
    font-size: 1rem;
    color: #bbbbbb;
    margin-bottom: 12px;
}
.footer-socials {
    display: flex;
    gap: 12px;
}
.social-link img {
    width: 22px;
    height: 22px;
    filter: grayscale(1) brightness(1.3);
    transition: filter 0.2s;
}
.social-link:hover img {
    filter: none;
}
.footer-menu-col {
    flex: 1 1 160px;
    min-width: 150px;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.03rem;
    transition: color 0.2s;
}
.footer-link:hover {
    color: #ff8200;
}
.footer-contact-col {
    flex: 1 1 210px;
    min-width: 170px;
}
.footer-phone a {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-phone a:hover {
    color: #ff8200;
}
.footer-time,
.footer-email,
.footer-address {
    color: #bbb;
    margin: 4px 0;
    font-size: 0.97rem;
}

.footer-objects-col {
    flex: 1 1 220px;
    min-width: 190px;
}
.footer-objects-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
    font-size: 1.06rem;
}
.footer-objects-gallery {
    display: flex;
    gap: 8px;
}
.footer-object-thumb img {
    width: 60px;
    height: 48px;
    object-fit: cover;
    border-radius: 7px;
    background: #343434;
    transition: box-shadow 0.2s;
}
.footer-object-thumb:hover img {
    box-shadow: 0 0 0 2px #ff8200;
}

/* Нижний подвал */
.footer-bottom {
    border-top: 1px solid #353535;
    padding: 13px 20px 9px 20px;
    text-align: center;
    font-size: 0.97rem;
    color: #ababab;
}

/* Адаптив футера */
@media (max-width: 900px) {
    .footer-content {
        flex-wrap: wrap;
        gap: 22px;
        padding: 0 12px 16px 12px;
    }
    .footer-logo-col,
    .footer-menu-col,
    .footer-contact-col,
    .footer-objects-col {
        min-width: 145px;
        flex-basis: 48%;
    }
    .footer-desc {
        font-size: 0.98rem;
    }
}
@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        gap: 18px;
        padding: 0 7px 13px 7px;
    }
    .footer-logo-col,
    .footer-menu-col,
    .footer-contact-col,
    .footer-objects-col {
        min-width: unset;
        flex-basis: 100%;
        margin-bottom: 10px;
    }
    .footer-logo-col {
        order: 1;
        align-items: flex-start;
    }
    .footer-menu-col {
        order: 3;
    }
    .footer-contact-col {
        order: 2;
    }
    .footer-objects-col {
        order: 4;
    }
    .footer-object-thumb img {
        width: 52px;
        height: 36px;
    }
    .footer-bottom {
        font-size: 0.93rem;
        padding: 10px 4px 8px 4px;
    }
}
/* Hero */
.hero {
    position: relative;
    background: #212121;
    min-height: 430px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}
.hero-bg img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0.28; z-index: 1;
}
.hero-content {
    z-index: 2;
    padding: 64px 0 64px 40px;
    max-width: 650px;
}
.hero-small {
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    color: #ff8200;
    margin-bottom: 17px;
}
.hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.16;
}
.hero-desc {
    font-size: 1.13rem;
    color: #efefef;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .hero-content {
        padding: 36px 0 36px 12px;
        max-width: 98vw;
    }
    .hero h1 { font-size: 1.35rem; }
    .hero { min-height: 280px; }
}
@media (max-width: 600px) {
    .hero-content {
        padding: 20px 5vw 20px 8px;
        max-width: 97vw;
    }
    .hero h1 { font-size: 1.01rem; }
    .hero-small { font-size: 0.93rem; }
}

/* Опыт и качество */
.about-qual {
    background: #f8f6f2;
    padding: 44px 0 24px 0;
}
.section-title {
    text-align: center;
    font-size: 1.19rem;
    font-weight: 600;
    color: #ff8200;
    margin-bottom: 27px;
}
.qual-grid {
    display: flex;
    justify-content: center;
    gap: 54px;
}
.qual-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 14px rgba(20,20,20,0.08);
    padding: 26px 30px 18px 30px;
    min-width: 210px;
    max-width: 340px;
    text-align: center;
}
.qual-ico {
    font-size: 2.0rem;
    color: #ff8200;
    margin-bottom: 8px;
    display: block;
}
.qual-label {
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.qual-desc {
    color: #646464;
    font-size: 0.99rem;
}
@media (max-width: 900px) {
    .qual-grid { gap: 18px; }
    .qual-item { padding: 17px 10px; min-width: 120px; }
}
@media (max-width: 600px) {
    .about-qual { padding: 24px 0 13px 0; }
    .qual-grid { flex-direction: column; gap: 16px; }
    .qual-item { margin: 0 auto; max-width: 99vw; }
}

/* Реализованные объекты */
.realized-objects {
    background: #fff;
    padding: 35px 0 25px 0;
    max-width: 840px;
    margin: 0 auto;
}
.objects-title {
    font-weight: 600;
    color: #ff8200;
    font-size: 1.14rem;
    margin-bottom: 19px;
    text-align: left;
}
.objects-list {
    color: #232323;
    font-size: 1.06rem;
    margin-left: 22px;
}
.objects-list b {
    color: #232323;
}
.objects-list ul {
    margin: 2px 0 7px 18px;
    font-size: 0.97rem;
}

/* Сервис и преимущества */
.service-benefits {
    position: relative;
    background: #232323;
    color: #fff;
    padding: 44px 0 37px 0;
    overflow: hidden;
}
.benefits-bg img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0.13; z-index: 1;
}
.benefits-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}
.benefits-content h2 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.benefits-content p {
    color: #ff8200;
    font-size: 1.09rem;
    margin-bottom: 18px;
}
.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 46px;
    flex-wrap: wrap;
}
.benefit {
    background: rgba(40,40,40,0.98);
    border-radius: 10px;
    padding: 15px 22px 13px 22px;
    font-size: 1.07rem;
    min-width: 150px;
    margin-bottom: 10px;
    box-shadow: 0 2px 7px rgba(40,40,40,0.11);
    display: flex;
    align-items: center;
    gap: 7px;
}
.benefit span {
    font-size: 1.32em;
    color: #ff8200;
}
@media (max-width: 900px) {
    .benefits-grid { gap: 13px; }
    .benefit { padding: 11px 10px; min-width: 90px; font-size: 0.97rem; }
}
@media (max-width: 600px) {
    .service-benefits { padding: 21px 0 14px 0; }
    .benefits-content h2 { font-size: 1.04rem; }
    .benefits-grid { flex-direction: column; gap: 9px; }
    .benefit { margin: 0 auto 7px auto; max-width: 97vw; }
}

/* Контакты и "от первого лица" */
.contacts-short {
    display: flex;
    gap: 42px;
    max-width: 1100px;
    margin: 0 auto 30px auto;
    padding: 38px 0 7px 0;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.contacts-col { flex: 1 1 330px; min-width: 220px; }
.contacts-list { margin: 0 0 0 18px; padding: 0; color: #343434; font-size: 1.04rem; }
.contacts-list li { margin-bottom: 5px; }

.owner-col { flex: 1 1 320px; min-width: 220px; }
.owner-quote {
    background: #f4f2ef;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(140,140,140,0.10);
    padding: 22px 23px 15px 23px;
}
.owner-quote-text {
    font-size: 1.09rem;
    margin-bottom: 16px;
    color: #333;
}
.owner-person {
    display: flex;
    align-items: center;
    gap: 12px;
}
.owner-person img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    background: #ddd;
}
.owner-info {
    font-size: 1.04rem;
    color: #333;
}
.owner-info span {
    color: #818181;
    font-size: 0.97em;
}
@media (max-width: 900px) {
    .contacts-short { gap: 13px; padding: 17px 0 2px 0; }
    .contacts-col, .owner-col { min-width: 130px; }
}
@media (max-width: 600px) {
    .contacts-short {
        flex-direction: column;
        gap: 18px;
        padding: 13px 0 2px 0;
        max-width: 98vw;
    }
    .owner-quote { padding: 12px 11px 9px 11px; }
}
/* Заголовочный блок about */
.about-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f6f5f3;
    padding: 36px 0 22px 0;
    gap: 32px;
    flex-wrap: wrap;
}
.about-header-content {
    flex: 1 1 380px;
    padding-left: 40px;
}
.about-header-content h1 {
    font-size: 1.7rem;
    color: #232323;
    margin: 0 0 19px 0;
    font-weight: 700;
}
.about-header-content p {
    font-size: 1.13rem;
    color: #3c3c3c;
    margin: 0;
}
.about-header-img {
    flex: 1 1 320px;
    min-width: 200px;
    padding-right: 35px;
}
.about-header-img img {
    width: 320px;
    max-width: 96vw;
    border-radius: 14px;
    box-shadow: 0 3px 16px rgba(30,30,30,0.08);
}

@media (max-width: 900px) {
    .about-header { gap: 12px; padding: 22px 0 13px 0; }
    .about-header-content { padding-left: 14px; }
    .about-header-img { padding-right: 11px; }
    .about-header-img img { width: 220px; }
    .about-header-content h1 { font-size: 1.23rem; }
}
@media (max-width: 600px) {
    .about-header { flex-direction: column; align-items: stretch; gap: 9px; }
    .about-header-content { padding-left: 8px; }
    .about-header-img { padding-right: 0; }
    .about-header-img img { width: 99vw; border-radius: 8px; }
}

/* Миссия */
.about-mission {
    background: #fff;
    padding: 32px 0 18px 0;
    text-align: center;
}
.about-mission-content h2 {
    font-size: 1.23rem;
    font-weight: 600;
    color: #ff8200;
    margin-bottom: 10px;
}
.about-mission-content p {
    color: #434343;
    font-size: 1.08rem;
    margin: 0 auto;
    max-width: 670px;
}

/* Принципы */
.about-principles {
    background: #f8f7f5;
    padding: 38px 0 24px 0;
}
.principles-list {
    display: flex;
    justify-content: center;
    gap: 39px;
    flex-wrap: wrap;
    margin-top: 19px;
}
.principle-item {
    background: #fff;
    border-radius: 11px;
    box-shadow: 0 2px 13px rgba(22,22,22,0.08);
    padding: 24px 22px 15px 22px;
    text-align: center;
    min-width: 170px;
    max-width: 310px;
}
.principle-ico {
    font-size: 1.85rem;
    color: #ff8200;
    margin-bottom: 7px;
    display: block;
}
.principle-label {
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.principle-desc {
    font-size: 0.99rem;
    color: #656565;
}
@media (max-width: 900px) {
    .principles-list { gap: 15px; }
    .principle-item { padding: 13px 6px; min-width: 100px; }
}
@media (max-width: 600px) {
    .about-principles { padding: 18px 0 12px 0; }
    .principles-list { flex-direction: column; gap: 9px; }
    .principle-item { margin: 0 auto; max-width: 98vw; }
}

/* Клиенты */
.about-clients {
    background: #fff;
    padding: 30px 0 11px 0;
    text-align: center;
}
.clients-title {
    color: #232323;
    font-weight: 600;
    font-size: 1.06rem;
    margin-bottom: 9px;
}
.clients-list {
    display: inline-block;
    text-align: left;
    color: #3a3a3a;
    font-size: 1.04rem;
    margin: 0;
    padding: 0 0 0 24px;
    list-style: disc;
}
.clients-list li { margin-bottom: 5px; }

/* Почему выбирают */
.about-why {
    background: #f6f5f3;
    padding: 35px 0 20px 0;
    text-align: center;
}
.why-list {
    display: flex;
    justify-content: center;
    gap: 33px;
    flex-wrap: wrap;
    margin-top: 14px;
}
.why-item {
    background: #fff;
    border-radius: 11px;
    box-shadow: 0 2px 13px rgba(22,22,22,0.08);
    padding: 19px 22px 13px 22px;
    text-align: center;
    min-width: 120px;
    max-width: 240px;
    font-size: 1.04rem;
    color: #383838;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.why-ico {
    font-size: 1.6rem;
    color: #ff8200;
    margin-bottom: 7px;
    display: block;
}
@media (max-width: 900px) {
    .why-list { gap: 12px; }
    .why-item { padding: 10px 8px; min-width: 80px; }
}
@media (max-width: 600px) {
    .about-why { padding: 14px 0 8px 0; }
    .why-list { flex-direction: column; gap: 7px; }
    .why-item { margin: 0 auto; max-width: 97vw; }
}
/* Заголовок и описание страницы */
.products-header {
    background: #f8f7f5;
    padding: 36px 0 18px 0;
    text-align: center;
}
.products-header h1 {
    font-size: 1.43rem;
    color: #232323;
    margin: 0 0 17px 0;
    font-weight: 700;
}
.products-header p {
    font-size: 1.09rem;
    color: #3c3c3c;
    margin: 0 auto;
    max-width: 730px;
}

/* Список продукции */
.products-list-section {
    background: #fff;
    padding: 34px 0 17px 0;
}
.products-list {
    display: flex;
    justify-content: center;
    gap: 38px;
    flex-wrap: wrap;
}
.product-card {
    background: #f7f6f4;
    border-radius: 11px;
    box-shadow: 0 2px 13px rgba(22,22,22,0.07);
    padding: 22px 20px 15px 20px;
    text-align: left;
    width: 300px;
    max-width: 98vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 16px;
}
.product-card img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 7px;
    background: #f1f1f1;
}
.product-title {
    font-size: 1.13rem;
    font-weight: 600;
    margin-bottom: 7px;
    color: #ff8200;
}
.product-card ul {
    margin: 0 0 0 17px;
    font-size: 0.98rem;
    color: #444;
    padding-left: 0;
}
.product-card ul li { margin-bottom: 4px; }

@media (max-width: 900px) {
    .products-list { gap: 14px; }
    .product-card { width: 240px; padding: 14px 7px; }
    .product-card img { width: 58px; height: 58px; }
}

/* Услуги */
.service-types {
    background: #f6f5f3;
    padding: 32px 0 16px 0;
}
.service-types-list {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
    margin-top: 13px;
}
.service-type {
    background: #fff;
    border-radius: 9px;
    box-shadow: 0 2px 13px rgba(22,22,22,0.06);
    padding: 13px 19px 9px 19px;
    font-size: 1.04rem;
    color: #333;
    min-width: 162px;
    display: flex;
    align-items: center;
    gap: 9px;
}
.service-ico {
    font-size: 1.43rem;
    color: #ff8200;
}
@media (max-width: 900px) {
    .service-types-list { gap: 9px; }
    .service-type { min-width: 90px; padding: 9px 7px 7px 7px; }
}

/* Преимущества */
.products-benefits {
    background: #fff;
    padding: 32px 0 10px 0;
    text-align: center;
}
.benefits-inner {
    display: flex;
    justify-content: center;
    gap: 33px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.benefits-block {
    background: #f6f5f3;
    border-radius: 9px;
    box-shadow: 0 2px 11px rgba(22,22,22,0.07);
    padding: 17px 16px 10px 16px;
    min-width: 140px;
    max-width: 280px;
    margin-bottom: 13px;
}
.benefit-ico {
    font-size: 1.26rem;
    color: #ff8200;
    margin-bottom: 6px;
    display: block;
}
.benefit-title {
    font-weight: 600;
    margin-bottom: 4px;
    color: #232323;
    font-size: 1.05rem;
}
.benefit-desc {
    color: #444;
    font-size: 0.97rem;
}
@media (max-width: 900px) {
    .benefits-inner { gap: 9px; }
    .benefits-block { padding: 11px 8px 7px 8px; min-width: 90px; }
}

/* Схема работы */
.workflow-section {
    background: #f8f7f5;
    padding: 30px 0 17px 0;
}
.workflow-list {
    display: flex;
    justify-content: center;
    gap: 27px;
    flex-wrap: wrap;
    margin-top: 15px;
}
.workflow-step {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 9px rgba(22,22,22,0.07);
    padding: 12px 15px 8px 15px;
    text-align: center;
    min-width: 95px;
    max-width: 170px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.workflow-num {
    display: block;
    font-size: 1.29rem;
    font-weight: 700;
    color: #ff8200;
    margin-bottom: 4px;
}
@media (max-width: 900px) {
    .workflow-list { gap: 8px; }
    .workflow-step { min-width: 61px; padding: 7px 5px 5px 5px; }
}

/* Примечание с ссылкой на morsika.ru */
.product-note {
    background: #f8f7f5;
    color: #666;
    padding: 18px 16px 11px 16px;
    margin: 0 auto 0 auto;
    font-size: 0.99rem;
    max-width: 700px;
    text-align: center;
    border-radius: 9px;
    border-top: 1px solid #ececec;
}
.product-note a {
    color: #ff8200;
    text-decoration: underline;
    transition: color 0.2s;
}
.product-note a:hover {
    color: #e25d00;
}

/* Адаптив для всех секций */
@media (max-width: 600px) {
    .products-header, .products-list-section, .service-types,
    .products-benefits, .workflow-section { padding-left: 0; padding-right: 0; }
    .products-list { flex-direction: column; gap: 7px; }
    .service-types-list, .benefits-inner, .workflow-list { flex-direction: column; gap: 7px; }
    .product-card, .service-type, .benefits-block, .workflow-step { width: 98vw; max-width: 99vw; min-width: 0; }
    .product-note { padding: 11px 5vw 7px 5vw; }
}
/* Заголовок */
.contacts-page-header {
    background: #f8f7f5;
    padding: 32px 0 18px 0;
    text-align: center;
}
.contacts-page-header h1 {
    font-size: 1.39rem;
    color: #232323;
    margin: 0 0 13px 0;
    font-weight: 700;
}
.contacts-page-header p {
    font-size: 1.06rem;
    color: #3c3c3c;
    margin: 0 auto;
    max-width: 640px;
}

/* Блок контактов и карта */
.contacts-main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 44px;
    max-width: 1060px;
    margin: 0 auto;
    padding: 36px 0 14px 0;
    flex-wrap: wrap;
}
.contacts-info {
    flex: 1 1 330px;
    min-width: 210px;
    background: #fff;
    border-radius: 11px;
    box-shadow: 0 2px 13px rgba(22,22,22,0.07);
    padding: 24px 25px 17px 25px;
}
.contacts-block {
    margin-bottom: 15px;
}
.contact-label {
    font-size: 0.97rem;
    color: #888;
    margin-bottom: 3px;
}
.contact-value {
    font-size: 1.12rem;
    font-weight: 600;
    color: #232323;
    text-decoration: none;
    transition: color 0.2s;
}
.contact-value:hover { color: #ff8200; }

.contacts-map {
    flex: 1 1 370px;
    min-width: 220px;
    max-width: 420px;
    margin-top: 9px;
}

/* Форма */
.contacts-form-section {
    background: #fff;
    padding: 34px 0 18px 0;
}
.contacts-form-wrap {
    max-width: 480px;
    margin: 0 auto;
    background: #f7f6f4;
    border-radius: 11px;
    box-shadow: 0 2px 13px rgba(22,22,22,0.07);
    padding: 32px 22px 19px 22px;
    text-align: center;
}
.contacts-form-wrap h2 {
    font-size: 1.09rem;
    color: #ff8200;
    font-weight: 600;
    margin-bottom: 14px;
}
.contacts-form .form-row {
    margin-bottom: 13px;
}
.contacts-form input,
.contacts-form textarea {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 13px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    color: #232323;
    resize: none;
    box-sizing: border-box;
    transition: border 0.2s;
}
.contacts-form textarea {
    min-height: 75px;
}
.contacts-form input:focus,
.contacts-form textarea:focus {
    border-color: #ff8200;
    outline: none;
}
.contacts-submit-btn {
    width: 100%;
    background: #ff8200;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 11px 0;
    cursor: pointer;
    transition: background 0.2s;
}
.contacts-submit-btn:hover {
    background: #f77000;
}
.contacts-form-note {
    color: #888;
    font-size: 0.91rem;
    margin-top: 13px;
}
.contacts-form-note a {
    color: #ff8200;
    text-decoration: underline;
}
.contacts-form-note a:hover {
    color: #e25d00;
}

/* Адаптив */
@media (max-width: 900px) {
    .contacts-main { gap: 14px; padding: 19px 0 6px 0; }
    .contacts-info, .contacts-map { min-width: 120px; }
    .contacts-form-wrap { padding: 17px 8px 12px 8px; }
}
@media (max-width: 600px) {
    .contacts-main { flex-direction: column; gap: 7px; max-width: 97vw; }
    .contacts-info, .contacts-map { width: 99vw; max-width: 99vw; min-width: unset; }
    .contacts-form-wrap { padding: 13px 4vw 8px 4vw; }
}
