/* --- Базовые стили и сброс --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    height: 100%;
}
body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}
input, button, textarea, select {
    font: inherit;
}
button {
    cursor: pointer;
    border: none;
    background-color: transparent;
}
a {
    text-decoration: none;
    color: #E53935;
    transition: color 0.3s ease;
}
a:hover {
    color: #c62828;
}
ul, ol {
    list-style: none;
}
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #212121;
}
p {
    margin-bottom: 16px;
}
/* --- Общие классы и лэйаут --- */
.wrapper {
    flex-grow: 1;
    width: 100%;
    overflow-x: hidden;
}
.main {
    flex-grow: 1;
}
.container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    line-height: 1.2;
}
.btn--primary {
    background-color: #E53935;
    color: #fff;
    border-color: #E53935;
}
.btn--primary:hover {
    background-color: #c62828;
    border-color: #c62828;
    color: #fff;
}
.btn--secondary {
    background-color: #333;
    color: #fff;
    border-color: #333;
}
.btn--secondary:hover {
    background-color: #4d4d4d;
    border-color: #4d4d4d;
    color: #fff;
}
.btn--outline {
    background-color: transparent;
    color: #E53935;
    border-color: #E53935;
}
.btn--outline:hover {
    background-color: #E53935;
    color: #fff;
}
.btn--large {
    padding: 16px 32px;
    font-size: 18px;
}
@media (max-width: 767px) {
    .btn--large {
        padding: 14px 24px;
        font-size: 16px;
    }
}
.logo {
    display: inline-block;
}
.logo img {
    display: block;
}
.logo__text {
    font-size: 24px;
    font-weight: 700;
    color: #212121;
    text-transform: uppercase;
}
.text-center {
    text-align: center;
}
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
/* --- Общие стили для секций --- */
.section {
    padding-top: 60px;
    padding-bottom: 60px;
}
.section--grey {
    background-color: #f9f9f9;
}
.section__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #212121;
}
/* --- Стили Шапки (Header) --- */
.header {
    padding: 16px 0;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__logo {
    flex-shrink: 0;
}
.header__phone {
    font-weight: 700;
    color: #333;
    white-space: nowrap;
    margin-left: 24px;
}
.header__phone:hover {
    color: #E53935;
}
.nav__list {
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav__link {
    color: #333;
    font-weight: 400;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}
.nav__link:hover {
    color: #E53935;
}
.nav__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #E53935;
    transition: width 0.3s ease;
}
.nav__link:hover::after, .nav__link.is-active::after {
    width: 100%;
}
.nav__toggle {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 110;
    margin-left: 16px;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
    border-radius: 1px;
}
.nav__toggle span { top: 50%; transform: translateY(-50%); }
.nav__toggle span::before { top: -8px; }
.nav__toggle span::after { top: 8px; }

/* --- Стили секции Hero --- */
.hero {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #333; /* Фоновый цвет на случай, если изображение не загрузится */
    /* ИЗМЕНЕНО: Указан АБСОЛЮТНЫЙ путь к фону от корня сайта */
    background-image: url('/images/hero-new.jpg'); /* Путь к вашему новому изображению */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Важно, чтобы увеличенный фон не вылезал */

    /* Применение анимации */
    animation: kenburns 25s ease-in-out infinite alternate; /* Название, длительность, плавность, бесконечно, реверс */
}

/* Определение анимации Ken Burns */
@keyframes kenburns {
    0% {
        transform: scale(1.0) translate(0, 0); /* Начальное состояние */
        /* Можно добавить легкий сдвиг, например: transform: scale(1.0) translate(-2%, -1%); */
    }
    100% {
        transform: scale(1.15) translate(0, 0); /* Конечное состояние - легкое увеличение */
         /* Можно добавить сдвиг в другую сторону: transform: scale(1.15) translate(2%, 1%); */
    }
}


.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Затемнение остается */
    z-index: 1;
}

.hero__container {
    position: relative;
    z-index: 2; /* Контент поверх фона и затемнения */
    max-width: 800px;
}

.hero__title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.hero__subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.hero__btn--phone {
    color: #fff;
    border-color: #fff;
}

.hero__btn--phone:hover {
    background-color: #fff;
    color: #E53935;
    border-color: #fff;
}

/* --- Адаптивность для Hero (остается как было) --- */
@media (max-width: 991px) {
    .hero { padding-top: 60px; padding-bottom: 60px; min-height: 50vh; }
    .hero__title { font-size: 40px; }
    .hero__subtitle { font-size: 18px; }
}

@media (max-width: 767px) {
    .hero { padding-top: 40px; padding-bottom: 40px; min-height: auto; text-align: left; }
    .hero__container { text-align: left; }
    .hero__title { font-size: 32px; margin-bottom: 16px; }
    .hero__subtitle { font-size: 16px; margin-bottom: 24px; }
    .hero__actions { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hero__btn { width: 100%; text-align: center; }
    /* Можно отключить анимацию на мобильных, если она будет мешать или тормозить */
    /* .hero { animation: none; } */
}
@media (max-width: 575px) {
    .hero__title { font-size: 28px; }
}

/* --- Стили секции "Типы носителей" --- */
.media-types__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.media-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.media-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}
.media-card__icon {
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.media-card__icon svg {
    width: 64px;
    height: 64px;
}
.media-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}
.media-card__description {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
}
.media-card__link {
    font-size: 15px;
    font-weight: 700;
    color: #E53935;
    text-decoration: none;
    margin-top: auto;
    transition: color 0.3s ease;
}
.media-card__link:hover {
    color: #c62828;
}
/* --- Стили секции "Как мы работаем" --- */
.process {
    position: relative;
}
.process__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    position: relative;
    counter-reset: process-counter;
}
.process-step {
    background-color: #fff;
    padding: 30px 24px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    z-index: 2;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s ease;
}
.process-step:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}
.process-step__number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background-color: #E53935;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    border: 3px solid #f9f9f9;
}
.process-step__icon {
    margin-bottom: 16px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #E53935;
}
.process-step__icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}
.process-step__title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
    margin-bottom: 10px;
}
.process-step__description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}
.process .btn--secondary {
    margin-top: 40px;
}
.process .btn--secondary:hover {
    background-color: #4d4d4d;
    border-color: #4d4d4d;
    color: #fff;
}
/* --- Стили секции "Ваши выгоды" --- */
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
}
.benefit-item__icon {
    flex-shrink: 0;
    color: #E53935;
    margin-top: 3px;
}
.benefit-item__icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}
.benefit-item__title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-top: 0;
    margin-bottom: 8px;
}
.benefit-item__description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}
/* --- Стили секции "Отзывы" --- */
.yandex-rating-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 45px;
}
.yandex-rating-widget__link {
    font-size: 14px;
    color: #555;
    text-decoration: underline;
    transition: color 0.3s ease;
}
.yandex-rating-widget__link:hover {
    color: #E53935;
    text-decoration: none;
}
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.review-card {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
}
.review-card__rating {
    font-size: 16px;
    color: #f5a623;
    margin-bottom: 15px;
    line-height: 1;
}
.review-card__text {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: normal;
    flex-grow: 1;
    position: relative;
    padding-left: 25px;
    padding-right: 0;
}
.review-card__text::before {
    content: '“';
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 36px;
    color: #e8e8e8;
    line-height: 1;
    font-style: normal;
}
.review-card__text::after {
    display: none;
}
.review-card__footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    text-align: right;
}
.review-card__author {
    font-style: normal;
    font-weight: 700;
    color: #555;
    font-size: 14px;
}
/* --- Стили секции "Партнерство" --- */
.partnership__container {
    display: flex;
    align-items: center;
    gap: 40px;
}
.partnership__content {
    flex: 1 1 55%;
}
.partnership__image {
    flex: 1 1 45%;
    text-align: center;
}
.partnership__image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.partnership__content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 16px;
    margin-bottom: 24px;
}
.partnership__content li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}
.partnership__content li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: #E53935;
    font-weight: bold;
    font-size: 16px;
}
.partnership__content .btn {
    margin-top: 16px;
}
/* --- Стили секции CTA --- */
.cta {
    background-color: #E53935;
    color: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}
.cta__container {
    max-width: 700px;
}
.cta__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #fff;
}
.cta__text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}
.cta .btn--primary {
    background-color: #fff;
    color: #E53935;
    border-color: #fff;
}
.cta .btn--primary:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
    color: #c62828;
}
/* --- Стили страницы 404 --- */
.error-page {
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.error-page__container {
    max-width: 600px;
}
.error-page__icon {
    margin-bottom: 30px;
    color: #E53935;
}
.error-page__icon svg {
    width: 80px;
    height: 80px;
    stroke-width: 1.5;
    display: inline-block;
}
.error-page__subtitle {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}
.error-page__text {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}
.error-page__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.error-page__btn {
    min-width: 200px;
}
/* --- Стили секции "Контакты" --- */
.contacts__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: flex-start;
}
.contacts__map {
    border-radius: 8px;
    overflow: hidden;
    min-height: 241px;
    height: 100%;
    background-color: #e0e0e0;
}
.contacts__map iframe {
    width: 100%;
    height: 100%;
    min-height: 241px;
    border: none;
    display: block;
}
.contacts__info-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #333;
}
.contacts__address {
    font-style: normal;
    margin-bottom: 20px;
}
.contacts__address p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    line-height: 1.5;
    color: #555;
}
.contacts__address svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: #E53935;
}
.contacts__note {
    font-size: 14px;
    color: #777;
    margin-left: 26px;
    margin-top: -4px;
    margin-bottom: 16px;
}
.contacts__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
}
.contacts__item svg {
    flex-shrink: 0;
    color: #E53935;
    margin-top: 3px;
}
.contacts__item a {
    color: #E53935;
    text-decoration: none;
    border-bottom: 1px dashed #E53935;
    transition: color 0.3s ease, border-color 0.3s ease;
}
.contacts__item a:hover {
    color: #c62828;
    border-bottom-color: #c62828;
}
.contacts__hours {
    display: flex;
    flex-direction: column;
}
.contacts__hours-note {
    font-size: 13px;
    color: #777;
    margin-top: 4px;
    font-style: italic;
}
.contacts__item--delivery {
    margin-top: 16px;
}
/* --- Адаптивность --- */
@media (max-width: 991px) {
    .section { padding-top: 50px; padding-bottom: 50px; }
    .section__title { font-size: 32px; margin-bottom: 30px; }
    .hero { padding-top: 60px; padding-bottom: 60px; min-height: 50vh; }
    .hero__title { font-size: 40px; } .hero__subtitle { font-size: 18px; }
    .media-types__grid { gap: 20px; }
    .media-card__title { font-size: 18px; min-height: 44px; }
    .media-card__description { font-size: 14px; } .media-card__link { font-size: 14px; }
    .media-card__icon svg { width: 56px; height: 56px; }
    .process__steps { gap: 20px; }
    .process-step { padding: 24px 20px; } .process-step__title { font-size: 17px; }
    .benefits__grid { gap: 24px; }
    .benefit-item__title { font-size: 18px; } .benefit-item__description { font-size: 14px; }
    .benefit-item__icon svg { width: 44px; height: 44px; }
    .reviews__grid { gap: 20px; }
    .partnership__container { gap: 30px; }
    .partnership__content { flex-basis: 60%; } .partnership__image { flex-basis: 40%; }
    .contacts__wrapper { gap: 30px; } .contacts__info-title { font-size: 22px; }
    .contacts__map { height: 300px; min-height: 241px; } .contacts__map iframe { min-height: 241px; }
}
@media (max-width: 767px) {
    .section { padding-top: 40px; padding-bottom: 40px; }
    .section__title { font-size: 28px; margin-bottom: 24px; }
    .nav__toggle { display: block; } .header__phone { display: none; }
    .nav__list { display: none; position: absolute; top: 100%; left: 0; width: 100%; background-color: #fff; flex-direction: column; padding: 16px; box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); border-top: 1px solid #f0f0f0; gap: 0; }
    .nav__list.is-active { display: flex; }
    .nav__item { width: 100%; border-bottom: 1px solid #f0f0f0; } .nav__item:last-child { border-bottom: none; }
    .nav__link { display: block; padding: 12px 0; text-align: center; } .nav__link::after { display: none; }
    .nav__toggle.is-active span { transform: rotate(45deg); top: 50%; transform-origin: center; }
    .nav__toggle.is-active span::before { top: 0; opacity: 0; transform: translateX(-100%); }
    .nav__toggle.is-active span::after { top: 0; transform: rotate(-90deg); transform-origin: center; }
    .hero { padding-top: 40px; padding-bottom: 40px; min-height: auto; text-align: left; }
    .hero__container { text-align: left; }
    .hero__title { font-size: 32px; margin-bottom: 16px; } .hero__subtitle { font-size: 16px; margin-bottom: 24px; }
    .hero__actions { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hero__btn { width: 100%; text-align: center; }
    .media-types__grid { grid-template-columns: 1fr; gap: 16px; }
    .media-card { padding: 20px; } .media-card__title { min-height: auto; }
    .media-card__icon svg { width: 48px; height: 48px; }
    .process__steps { grid-template-columns: 1fr; gap: 40px; }
    .process .btn--secondary { margin-top: 30px; }
    .benefits__grid { grid-template-columns: 1fr; gap: 20px; }
    .benefit-item { padding: 16px; gap: 16px; }
    .benefit-item__icon svg { width: 40px; height: 40px; }
    .reviews__grid { grid-template-columns: 1fr; gap: 16px; }
    .review-card { padding: 24px; }
    .review-card__text { font-size: 14px; padding-left: 22px; }
    .review-card__text::before { font-size: 32px; }
    .review-card__footer { text-align: left; }
    .partnership__container { flex-direction: column; gap: 30px; }
    .partnership__content { flex-basis: auto; order: 2; text-align: center; }
    .partnership__image { flex-basis: auto; order: 1; max-width: 350px; margin-left: auto; margin-right: auto; }
    .partnership__content .section__title { text-align: center; }
    .partnership__content ul { text-align: left; display: inline-block; margin-left: auto; margin-right: auto; }
    .partnership__content .btn { width: 100%; max-width: 300px; }
    .cta { padding-top: 40px; padding-bottom: 40px; }
    .cta__title { font-size: 28px; }
    .cta__text { font-size: 16px; margin-bottom: 24px; }
    .cta__btn { width: 100%; max-width: 320px; }
    .error-page { padding-top: 50px; padding-bottom: 50px; }
    .error-page__icon svg { width: 60px; height: 60px; }
    .error-page__subtitle { font-size: 28px; }
    .error-page__text { font-size: 16px; }
    .error-page__actions { flex-direction: column; align-items: center; gap: 12px; }
    .error-page__btn { width: 100%; max-width: 300px; min-width: auto; }
    .contacts__wrapper { grid-template-columns: 1fr; gap: 30px; }
    .contacts__map { height: 300px; min-height: 241px; order: 2; }
    .contacts__map iframe { min-height: 241px; }
    .contacts__info { order: 1; text-align: center; }
    .contacts__address p, .contacts__item { justify-content: center; text-align: left; }
    .contacts__note { text-align: center; margin-left: 0; }
    .contacts__item { align-items: center; } .contacts__item svg { margin-top: 0; }
    .contacts__hours { align-items: center; }
}
@media (max-width: 575px) {
    .header { padding: 12px 0; }
    .footer { padding: 32px 0 16px; }
    .footer__top { gap: 24px; padding-bottom: 24px; margin-bottom: 24px; }
    .footer__bottom { padding-top: 16px; }
     .hero__title { font-size: 28px; }
}
/* --- Стили Подвала (Footer) --- */
.footer { flex-shrink: 0; background-color: #212121; color: #e0e0e0; padding: 48px 0 24px; font-size: 14px; }
.footer a { color: #e0e0e0; } .footer a:hover { color: #E53935; }
.footer__top { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid #424242; }
.footer__title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer__list li { margin-bottom: 8px; }
.footer__address { font-style: normal; line-height: 1.7; margin-bottom: 16px; }
.socials { display: flex; flex-wrap: wrap; gap: 12px; }
.socials a { display: flex; justify-content: center; align-items: center; width: 36px; height: 36px; border: 1px solid #616161; border-radius: 50%; font-size: 16px; transition: background-color 0.3s ease, border-color 0.3s ease; }
.socials a:hover { background-color: #E53935; border-color: #E53935; color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; padding-top: 24px; font-size: 13px; color: #bdbdbd; }
.footer__copy { margin-bottom: 0; }
.footer__legal { margin-bottom: 0; max-width: 500px; text-align: right; }
.footer__credits { margin-bottom: 0; width: 100%; text-align: center; margin-top: 8px; font-size: 12px; color: #757575; }
.footer__credits a { color: #9e9e9e; } .footer__credits a:hover { color: #E53935; }
@media (max-width: 767px) {
    .footer__bottom { flex-direction: column; align-items: center; text-align: center; }
    .footer__legal { text-align: center; max-width: none; }
    .footer__credits { margin-top: 16px; }
}

/* --- Стили для внутренних страниц (Общее) --- */

/* Секция заголовка страницы */
.page-title-section {
    padding-top: 40px; /* Уменьшенные отступы */
    padding-bottom: 40px;
    text-align: center;
    /* background-color задан через .section--grey */
}

.page-title {
    font-size: 40px; /* Размер заголовка H1 */
    font-weight: 900;
    margin-bottom: 12px;
    color: #212121;
}

.page-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px; /* Ограничиваем ширину подзаголовка */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0; /* Убираем нижний отступ */
}

/* --- Стили для страницы Услуги --- */
.services-list {
    /* Стили для секции списка услуг, если нужны */
}

/* Стили для вводного текста перед сеткой */
.services-list .text-center { /* Уточняем селектор */
    color: #555;
    line-height: 1.7;
}


/* --- Адаптивность для заголовка страницы --- */
@media (max-width: 767px) {
    .page-title-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .page-title {
        font-size: 32px;
    }
    .page-subtitle {
        font-size: 16px;
    }
}


/* --- Полный CSS (включая все предыдущие секции) --- */
/* ... (весь предыдущий CSS код) ... */

/* --- Стили для внутренних страниц (Общее) --- */
.page-title-section { padding-top: 40px; padding-bottom: 40px; text-align: center; }
.page-title { font-size: 40px; font-weight: 900; margin-bottom: 12px; color: #212121; }
.page-subtitle { font-size: 18px; color: #666; max-width: 700px; margin-left: auto; margin-right: auto; margin-bottom: 0; }
/* --- Стили для страницы Услуги --- */
.services-list .text-center { color: #555; line-height: 1.7; }
/* --- Адаптивность для заголовка страницы --- */
@media (max-width: 767px) {
    .page-title-section { padding-top: 30px; padding-bottom: 30px; }
    .page-title { font-size: 32px; }
    .page-subtitle { font-size: 16px; }
}
/* ... (остальной CSS код адаптивности и подвала) ... */

/* --- Стили для страницы отдельной услуги --- */

.service-content {
    /* Основная секция с контентом */
}

.service-layout {
    /* Пока без сайдбара, можно добавить позже */
    /* display: grid; */
    /* grid-template-columns: 3fr 1fr; */
    /* gap: 40px; */
}

.service-article {
    /* Стили для основного текста статьи */
    max-width: 800px; /* Ограничиваем ширину для читаемости */
    margin-left: auto; /* Центрируем, если нет сайдбара */
    margin-right: auto;
}

.service-article h2 {
    font-size: 28px;
    margin-top: 40px; /* Отступ перед подзаголовками */
    margin-bottom: 20px;
    color: #333;
}

.service-article h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #444;
}

.service-article p {
    line-height: 1.7; /* Улучшаем читаемость текста */
    color: #555;
}

/* Стили для списков внутри статьи */
.service-article ul,
.service-article ol {
    margin-bottom: 20px;
    padding-left: 25px; /* Отступ для маркеров */
    color: #555;
}
.service-article ul {
    list-style: none; /* Убираем стандартные маркеры */
}
.service-article ul li {
    position: relative;
    padding-left: 20px; /* Место для кастомного маркера */
    margin-bottom: 10px;
}
.service-article ul li::before {
    content: '›'; /* Кастомный маркер (стрелка) */
    position: absolute;
    left: 0;
    top: 0;
    color: #E53935; /* Красный цвет маркера */
    font-weight: bold;
    font-size: 18px;
    line-height: 1.6;
}

.service-article ol {
    list-style: none; /* Убираем стандартные маркеры */
    counter-reset: ordered-list-counter; /* Запускаем счетчик */
}
.service-article ol li {
    position: relative;
    padding-left: 35px; /* Место для номера */
    margin-bottom: 12px;
    counter-increment: ordered-list-counter; /* Увеличиваем счетчик */
}
.service-article ol li::before {
    content: counter(ordered-list-counter) "."; /* Отображаем номер */
    position: absolute;
    left: 0;
    top: 0;
    color: #E53935;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.6;
    min-width: 20px; /* Минимальная ширина для номера */
    text-align: right; /* Выравнивание номера по правому краю */
    padding-right: 10px; /* Отступ после номера */
}


/* Стили для блока предупреждения */
.alert {
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-style: solid;
    border-width: 1px;
    position: relative;
    padding-left: 50px; /* Место для иконки */
}
.alert::before { /* Псевдоэлемент для иконки */
    content: '';
    position: absolute;
    left: 15px;
    top: 20px;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.alert--warning {
    background-color: #fff8e1; /* Светло-желтый фон */
    border-color: #ffecb3; /* Желтая граница */
    color: #6d5b0f; /* Темно-желтый текст */
}
.alert--warning::before {
    /* Иконка предупреждения (треугольник) */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffb300' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-alert-triangle'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'%3E%3C/path%3E%3Cline x1='12' y1='9' x2='12' y2='13'%3E%3C/line%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'%3E%3C/line%3E%3C/svg%3E");
}
.alert h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    color: #c79100; /* Цвет заголовка в предупреждении */
}
.alert p {
    margin-bottom: 0; /* Убираем отступ у последнего параграфа в блоке */
    line-height: 1.6;
}
.alert strong, .alert b {
     color: #a07600; /* Выделение жирного текста */
}


/* Кнопки в конце статьи */
.service-article__cta {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}


/* --- Адаптивность для страницы услуги --- */
@media (max-width: 767px) {
    .service-article h2 {
        font-size: 24px;
    }
    .service-article h3 {
        font-size: 20px;
    }
    .service-article__cta {
        flex-direction: column;
    }
    .service-article__cta .btn { /* Кнопки на всю ширину */
        width: 100%;
        max-width: 320px; /* Ограничиваем ширину */
        margin-left: auto;
        margin-right: auto;
    }
}


/* --- Полный CSS (включая все предыдущие секции) --- */
/* --- Базовые стили и сброс --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { line-height: 1.6; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; height: 100%; }
body { font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 16px; color: #333; background-color: #fff; min-height: 100%; display: flex; flex-direction: column; }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; }
button { cursor: pointer; border: none; background-color: transparent; }
a { text-decoration: none; color: #E53935; transition: color 0.3s ease; }
a:hover { color: #c62828; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { margin-bottom: 16px; font-weight: 700; line-height: 1.3; color: #212121; }
p { margin-bottom: 16px; }
/* --- Общие классы и лэйаут --- */
.wrapper { flex-grow: 1; width: 100%; overflow-x: hidden; }
.main { flex-grow: 1; }
.container { max-width: 1140px; margin-left: auto; margin-right: auto; padding-left: 15px; padding-right: 15px; }
.btn { display: inline-block; padding: 12px 24px; font-size: 16px; font-weight: 700; text-align: center; text-decoration: none; border: 1px solid transparent; border-radius: 4px; cursor: pointer; transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease; line-height: 1.2; }
.btn--primary { background-color: #E53935; color: #fff; border-color: #E53935; }
.btn--primary:hover { background-color: #c62828; border-color: #c62828; color: #fff; }
.btn--secondary { background-color: #333; color: #fff; border-color: #333; }
.btn--secondary:hover { background-color: #4d4d4d; border-color: #4d4d4d; color: #fff; }
.btn--outline { background-color: transparent; color: #E53935; border-color: #E53935; }
.btn--outline:hover { background-color: #E53935; color: #fff; }
.btn--large { padding: 16px 32px; font-size: 18px; }
@media (max-width: 767px) { .btn--large { padding: 14px 24px; font-size: 16px; } }
.logo { display: inline-block; } .logo img { display: block; }
.logo__text { font-size: 24px; font-weight: 700; color: #212121; text-transform: uppercase; }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
/* --- Общие стили для секций --- */
.section { padding-top: 60px; padding-bottom: 60px; }
.section--grey { background-color: #f9f9f9; }
.section__title { font-size: 36px; font-weight: 700; margin-bottom: 40px; color: #212121; }
/* --- Стили Шапки (Header) --- */
.header { padding: 16px 0; background-color: #fff; border-bottom: 1px solid #f0f0f0; position: sticky; top: 0; left: 0; width: 100%; z-index: 100; }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.header__logo { flex-shrink: 0; }
.header__phone { font-weight: 700; color: #333; white-space: nowrap; margin-left: 24px; }
.header__phone:hover { color: #E53935; }
.nav__list { display: flex; align-items: center; gap: 24px; }
.nav__link { color: #333; font-weight: 400; padding: 8px 0; position: relative; transition: color 0.3s ease; }
.nav__link:hover { color: #E53935; }
.nav__link::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background-color: #E53935; transition: width 0.3s ease; }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__toggle { display: none; width: 30px; height: 24px; position: relative; z-index: 110; margin-left: 16px; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content: ''; display: block; width: 100%; height: 3px; background-color: #333; position: absolute; left: 0; transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease; border-radius: 1px; }
.nav__toggle span { top: 50%; transform: translateY(-50%); } .nav__toggle span::before { top: -8px; } .nav__toggle span::after { top: 8px; }
/* --- Стили секции Hero --- */
.hero { position: relative; padding-top: 80px; padding-bottom: 80px; background-color: #333; background-image: url('../images/hero-background.jpg'); background-size: cover; background-position: center center; background-repeat: no-repeat; color: #fff; text-align: center; min-height: 60vh; display: flex; align-items: center; justify-content: center; }
.hero__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: 1; }
.hero__container { position: relative; z-index: 2; max-width: 800px; }
.hero__title { font-size: 48px; font-weight: 900; line-height: 1.2; margin-bottom: 24px; color: #fff; text-transform: uppercase; text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.hero__subtitle { font-size: 20px; margin-bottom: 32px; color: rgba(255, 255, 255, 0.9); text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.hero__btn--phone { color: #fff; border-color: #fff; }
.hero__btn--phone:hover { background-color: #fff; color: #E53935; border-color: #fff; }
/* --- Стили секции "Типы носителей" --- */
.media-types__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.media-card { background-color: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 24px; text-align: center; transition: box-shadow 0.3s ease, transform 0.3s ease; display: flex; flex-direction: column; height: 100%; }
.media-card:hover { box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); transform: translateY(-5px); }
.media-card__icon { margin-bottom: 20px; height: 80px; display: flex; justify-content: center; align-items: center; }
.media-card__icon svg { width: 64px; height: 64px; }
.media-card__title { font-size: 20px; font-weight: 700; color: #333; margin-bottom: 12px; min-height: 48px; display: flex; align-items: center; justify-content: center; flex-grow: 1; }
.media-card__description { font-size: 15px; color: #666; line-height: 1.5; margin-bottom: 16px; }
.media-card__link { font-size: 15px; font-weight: 700; color: #E53935; text-decoration: none; margin-top: auto; transition: color 0.3s ease; }
.media-card__link:hover { color: #c62828; }
/* --- Стили секции "Как мы работаем" --- */
.process { position: relative; }
.process__steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; position: relative; counter-reset: process-counter; }
.process-step { background-color: #fff; padding: 30px 24px; border-radius: 8px; text-align: center; position: relative; z-index: 2; border: 1px solid #e0e0e0; transition: box-shadow 0.3s ease; }
.process-step:hover { box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08); }
.process-step__number { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); width: 36px; height: 36px; background-color: #E53935; color: #fff; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 16px; font-weight: 700; line-height: 1; border: 3px solid #f9f9f9; }
.process-step__icon { margin-bottom: 16px; height: 48px; display: flex; justify-content: center; align-items: center; color: #E53935; }
.process-step__icon svg { width: 48px; height: 48px; stroke-width: 1.5; }
.process-step__title { font-size: 18px; font-weight: 700; color: #333; margin-top: 10px; margin-bottom: 10px; }
.process-step__description { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 0; }
.process .btn--secondary { margin-top: 40px; }
.process .btn--secondary:hover { background-color: #4d4d4d; border-color: #4d4d4d; color: #fff; }
/* --- Стили секции "Ваши выгоды" --- */
.benefits__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.benefit-item { display: flex; align-items: flex-start; gap: 20px; padding: 20px; background-color: #fff; border-radius: 8px; }
.benefit-item__icon { flex-shrink: 0; color: #E53935; margin-top: 3px; }
.benefit-item__icon svg { width: 48px; height: 48px; stroke-width: 1.5; }
.benefit-item__title { font-size: 20px; font-weight: 700; color: #333; margin-top: 0; margin-bottom: 8px; }
.benefit-item__description { font-size: 15px; color: #666; line-height: 1.6; margin-bottom: 0; }
/* --- Стили секции "Отзывы" --- */
.yandex-rating-widget { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 45px; }
.yandex-rating-widget__link { font-size: 14px; color: #555; text-decoration: underline; transition: color 0.3s ease; }
.yandex-rating-widget__link:hover { color: #E53935; text-decoration: none; }
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { background-color: #fff; border: 1px solid #e8e8e8; border-radius: 8px; padding: 30px; display: flex; flex-direction: column; height: 100%; box-shadow: 0 5px 15px rgba(0,0,0,0.07); }
.review-card__rating { font-size: 16px; color: #f5a623; margin-bottom: 15px; line-height: 1; }
.review-card__text { font-size: 15px; color: #333; line-height: 1.7; margin-bottom: 20px; font-style: normal; flex-grow: 1; position: relative; padding-left: 25px; padding-right: 0; }
.review-card__text::before { content: '“'; position: absolute; left: 0; top: -2px; font-size: 36px; color: #e8e8e8; line-height: 1; font-style: normal; }
.review-card__text::after { display: none; }
.review-card__footer { margin-top: auto; padding-top: 16px; border-top: 1px solid #f0f0f0; text-align: right; }
.review-card__author { font-style: normal; font-weight: 700; color: #555; font-size: 14px; }
/* --- Стили секции "Партнерство" --- */
.partnership__container { display: flex; align-items: center; gap: 40px; }
.partnership__content { flex: 1 1 55%; }
.partnership__image { flex: 1 1 45%; text-align: center; }
.partnership__image img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
.partnership__content ul { list-style: none; padding-left: 0; margin-top: 16px; margin-bottom: 24px; }
.partnership__content li { position: relative; padding-left: 24px; margin-bottom: 10px; color: #555; line-height: 1.6; }
.partnership__content li::before { content: '✔'; position: absolute; left: 0; top: 0; color: #E53935; font-weight: bold; font-size: 16px; }
.partnership__content .btn { margin-top: 16px; }
/* --- Стили секции CTA --- */
.cta { background-color: #E53935; color: #fff; padding-top: 50px; padding-bottom: 50px; text-align: center; }
.cta__container { max-width: 700px; }
.cta__title { font-size: 32px; font-weight: 700; line-height: 1.3; margin-bottom: 16px; color: #fff; }
.cta__text { font-size: 18px; line-height: 1.6; margin-bottom: 30px; color: rgba(255, 255, 255, 0.9); }
.cta .btn--primary { background-color: #fff; color: #E53935; border-color: #fff; }
.cta .btn--primary:hover { background-color: #f0f0f0; border-color: #f0f0f0; color: #c62828; }
/* --- Стили страницы 404 --- */
.error-page { padding-top: 80px; padding-bottom: 80px; min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.error-page__container { max-width: 600px; }
.error-page__icon { margin-bottom: 30px; color: #E53935; }
.error-page__icon svg { width: 80px; height: 80px; stroke-width: 1.5; display: inline-block; }
.error-page__subtitle { font-size: 36px; font-weight: 700; color: #333; margin-bottom: 16px; }
.error-page__text { font-size: 18px; color: #666; line-height: 1.7; margin-bottom: 30px; }
.error-page__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.error-page__btn { min-width: 200px; }
/* --- Стили секции "Контакты" --- */
.contacts__wrapper { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: flex-start; }
.contacts__map { border-radius: 8px; overflow: hidden; min-height: 241px; height: 100%; background-color: #e0e0e0; }
.contacts__map iframe { width: 100%; height: 100%; min-height: 241px; border: none; display: block; }
.contacts__info-title { font-size: 24px; font-weight: 700; margin-bottom: 24px; color: #333; }
.contacts__address { font-style: normal; margin-bottom: 20px; }
.contacts__address p { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; line-height: 1.5; color: #555; }
.contacts__address svg { flex-shrink: 0; margin-top: 3px; color: #E53935; }
.contacts__note { font-size: 14px; color: #777; margin-left: 26px; margin-top: -4px; margin-bottom: 16px; }
.contacts__item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 16px; color: #555; }
.contacts__item svg { flex-shrink: 0; color: #E53935; margin-top: 3px; }
.contacts__item a { color: #E53935; text-decoration: none; border-bottom: 1px dashed #E53935; transition: color 0.3s ease, border-color 0.3s ease; }
.contacts__item a:hover { color: #c62828; border-bottom-color: #c62828; }
.contacts__hours { display: flex; flex-direction: column; }
.contacts__hours-note { font-size: 13px; color: #777; margin-top: 4px; font-style: italic; }
.contacts__item--delivery { margin-top: 16px; }
/* --- Стили для страницы отдельной услуги --- */
.service-content { /* Основная секция с контентом */ }
.service-layout { /* Пока без сайдбара */ }
.service-article { max-width: 800px; margin-left: auto; margin-right: auto; }
.service-article h2 { font-size: 28px; margin-top: 40px; margin-bottom: 20px; color: #333; }
.service-article h3 { font-size: 22px; margin-top: 30px; margin-bottom: 16px; color: #444; }
.service-article p { line-height: 1.7; color: #555; }
.service-article ul, .service-article ol { margin-bottom: 20px; padding-left: 25px; color: #555; }
.service-article ul { list-style: none; }
.service-article ul li { position: relative; padding-left: 20px; margin-bottom: 10px; }
.service-article ul li::before { content: '›'; position: absolute; left: 0; top: 0; color: #E53935; font-weight: bold; font-size: 18px; line-height: 1.6; }
.service-article ol { list-style: none; counter-reset: ordered-list-counter; }
.service-article ol li { position: relative; padding-left: 35px; margin-bottom: 12px; counter-increment: ordered-list-counter; }
.service-article ol li::before { content: counter(ordered-list-counter) "."; position: absolute; left: 0; top: 0; color: #E53935; font-weight: bold; font-size: 16px; line-height: 1.6; min-width: 20px; text-align: right; padding-right: 10px; }
.alert { padding: 20px; margin-top: 30px; margin-bottom: 30px; border-radius: 8px; border-style: solid; border-width: 1px; position: relative; padding-left: 50px; }
.alert::before { content: ''; position: absolute; left: 15px; top: 20px; width: 24px; height: 24px; background-repeat: no-repeat; background-position: center center; background-size: contain; }
.alert--warning { background-color: #fff8e1; border-color: #ffecb3; color: #6d5b0f; }
.alert--warning::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffb300' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-alert-triangle'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'%3E%3C/path%3E%3Cline x1='12' y1='9' x2='12' y2='13'%3E%3C/line%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'%3E%3C/line%3E%3C/svg%3E"); }
.alert h3 { margin-top: 0; margin-bottom: 10px; font-size: 18px; color: #c79100; }
.alert p { margin-bottom: 0; line-height: 1.6; }
.alert strong, .alert b { color: #a07600; }
.service-article__cta { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; }
/* --- Адаптивность --- */
@media (max-width: 991px) {
    .section { padding-top: 50px; padding-bottom: 50px; }
    .section__title { font-size: 32px; margin-bottom: 30px; }
    .hero { padding-top: 60px; padding-bottom: 60px; min-height: 50vh; }
    .hero__title { font-size: 40px; } .hero__subtitle { font-size: 18px; }
    .media-types__grid { gap: 20px; }
    .media-card__title { font-size: 18px; min-height: 44px; }
    .media-card__description { font-size: 14px; } .media-card__link { font-size: 14px; }
    .media-card__icon svg { width: 56px; height: 56px; }
    .process__steps { gap: 20px; }
    .process-step { padding: 24px 20px; } .process-step__title { font-size: 17px; }
    .benefits__grid { gap: 24px; }
    .benefit-item__title { font-size: 18px; } .benefit-item__description { font-size: 14px; }
    .benefit-item__icon svg { width: 44px; height: 44px; }
    .reviews__grid { gap: 20px; }
    .partnership__container { gap: 30px; }
    .partnership__content { flex-basis: 60%; } .partnership__image { flex-basis: 40%; }
    .contacts__wrapper { gap: 30px; } .contacts__info-title { font-size: 22px; }
    .contacts__map { height: 300px; min-height: 241px; } .contacts__map iframe { min-height: 241px; }
}
@media (max-width: 767px) {
    .section { padding-top: 40px; padding-bottom: 40px; }
    .section__title { font-size: 28px; margin-bottom: 24px; }
    .nav__toggle { display: block; } .header__phone { display: none; }
    .nav__list { display: none; position: absolute; top: 100%; left: 0; width: 100%; background-color: #fff; flex-direction: column; padding: 16px; box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); border-top: 1px solid #f0f0f0; gap: 0; }
    .nav__list.is-active { display: flex; }
    .nav__item { width: 100%; border-bottom: 1px solid #f0f0f0; } .nav__item:last-child { border-bottom: none; }
    .nav__link { display: block; padding: 12px 0; text-align: center; } .nav__link::after { display: none; }
    .nav__toggle.is-active span { transform: rotate(45deg); top: 50%; transform-origin: center; }
    .nav__toggle.is-active span::before { top: 0; opacity: 0; transform: translateX(-100%); }
    .nav__toggle.is-active span::after { top: 0; transform: rotate(-90deg); transform-origin: center; }
    .hero { padding-top: 40px; padding-bottom: 40px; min-height: auto; text-align: left; }
    .hero__container { text-align: left; }
    .hero__title { font-size: 32px; margin-bottom: 16px; } .hero__subtitle { font-size: 16px; margin-bottom: 24px; }
    .hero__actions { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hero__btn { width: 100%; text-align: center; }
    .media-types__grid { grid-template-columns: 1fr; gap: 16px; }
    .media-card { padding: 20px; } .media-card__title { min-height: auto; }
    .media-card__icon svg { width: 48px; height: 48px; }
    .process__steps { grid-template-columns: 1fr; gap: 40px; }
    .process .btn--secondary { margin-top: 30px; }
    .benefits__grid { grid-template-columns: 1fr; gap: 20px; }
    .benefit-item { padding: 16px; gap: 16px; }
    .benefit-item__icon svg { width: 40px; height: 40px; }
    .reviews__grid { grid-template-columns: 1fr; gap: 16px; }
    .review-card { padding: 24px; }
    .review-card__text { font-size: 14px; padding-left: 22px; }
    .review-card__text::before { font-size: 32px; }
    .review-card__footer { text-align: left; }
    .partnership__container { flex-direction: column; gap: 30px; }
    .partnership__content { flex-basis: auto; order: 2; text-align: center; }
    .partnership__image { flex-basis: auto; order: 1; max-width: 350px; margin-left: auto; margin-right: auto; }
    .partnership__content .section__title { text-align: center; }
    .partnership__content ul { text-align: left; display: inline-block; margin-left: auto; margin-right: auto; }
    .partnership__content .btn { width: 100%; max-width: 300px; }
    .cta { padding-top: 40px; padding-bottom: 40px; }
    .cta__title { font-size: 28px; }
    .cta__text { font-size: 16px; margin-bottom: 24px; }
    .cta__btn { width: 100%; max-width: 320px; }
    .error-page { padding-top: 50px; padding-bottom: 50px; }
    .error-page__icon svg { width: 60px; height: 60px; }
    .error-page__subtitle { font-size: 28px; }
    .error-page__text { font-size: 16px; }
    .error-page__actions { flex-direction: column; align-items: center; gap: 12px; }
    .error-page__btn { width: 100%; max-width: 300px; min-width: auto; }
    .contacts__wrapper { grid-template-columns: 1fr; gap: 30px; }
    .contacts__map { height: 300px; min-height: 241px; order: 2; }
    .contacts__map iframe { min-height: 241px; }
    .contacts__info { order: 1; text-align: center; }
    .contacts__address p, .contacts__item { justify-content: center; text-align: left; }
    .contacts__note { text-align: center; margin-left: 0; }
    .contacts__item { align-items: center; } .contacts__item svg { margin-top: 0; }
    .contacts__hours { align-items: center; }
    .service-article h2 { font-size: 24px; }
    .service-article h3 { font-size: 20px; }
    .service-article__cta { flex-direction: column; }
    .service-article__cta .btn { width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 575px) {
    .header { padding: 12px 0; }
    .footer { padding: 32px 0 16px; }
    .footer__top { gap: 24px; padding-bottom: 24px; margin-bottom: 24px; }
    .footer__bottom { padding-top: 16px; }
     .hero__title { font-size: 28px; }
}
/* --- Стили Подвала (Footer) --- */
.footer { flex-shrink: 0; background-color: #212121; color: #e0e0e0; padding: 48px 0 24px; font-size: 14px; }
.footer a { color: #e0e0e0; } .footer a:hover { color: #E53935; }
.footer__top { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid #424242; }
.footer__title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer__list li { margin-bottom: 8px; }
.footer__address { font-style: normal; line-height: 1.7; margin-bottom: 16px; }
.socials { display: flex; flex-wrap: wrap; gap: 12px; }
.socials a { display: flex; justify-content: center; align-items: center; width: 36px; height: 36px; border: 1px solid #616161; border-radius: 50%; font-size: 16px; transition: background-color 0.3s ease, border-color 0.3s ease; }
.socials a:hover { background-color: #E53935; border-color: #E53935; color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; padding-top: 24px; font-size: 13px; color: #bdbdbd; }
.footer__copy { margin-bottom: 0; }
.footer__legal { margin-bottom: 0; max-width: 500px; text-align: right; }
.footer__credits { margin-bottom: 0; width: 100%; text-align: center; margin-top: 8px; font-size: 12px; color: #757575; }
.footer__credits a { color: #9e9e9e; } .footer__credits a:hover { color: #E53935; }
@media (max-width: 767px) {
    .footer__bottom { flex-direction: column; align-items: center; text-align: center; }
    .footer__legal { text-align: center; max-width: none; }
    .footer__credits { margin-top: 16px; }
}

/* --- Стили для страницы отдельной услуги --- */

.service-content {
    /* Основная секция с контентом */
}

.service-layout {
    /* Пока без сайдбара, можно добавить позже */
    /* display: grid; */
    /* grid-template-columns: 3fr 1fr; */
    /* gap: 40px; */
}

.service-article {
    /* Стили для основного текста статьи */
    max-width: 800px; /* Ограничиваем ширину для читаемости */
    margin-left: auto; /* Центрируем, если нет сайдбара */
    margin-right: auto;
}

.service-article h2 {
    font-size: 28px;
    margin-top: 40px; /* Отступ перед подзаголовками */
    margin-bottom: 20px;
    color: #333;
}

.service-article h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #444;
}

.service-article p {
    line-height: 1.7; /* Улучшаем читаемость текста */
    color: #555;
}

/* Стили для списков внутри статьи */
.service-article ul,
.service-article ol {
    margin-bottom: 20px;
    padding-left: 25px; /* Отступ для маркеров */
    color: #555;
}
.service-article ul {
    list-style: none; /* Убираем стандартные маркеры */
}
.service-article ul li {
    position: relative;
    padding-left: 20px; /* Место для кастомного маркера */
    margin-bottom: 10px;
}
.service-article ul li::before {
    content: '›'; /* Кастомный маркер (стрелка) */
    position: absolute;
    left: 0;
    top: 0;
    color: #E53935; /* Красный цвет маркера */
    font-weight: bold;
    font-size: 18px;
    line-height: 1.6;
}

.service-article ol {
    list-style: none; /* Убираем стандартные маркеры */
    counter-reset: ordered-list-counter; /* Запускаем счетчик */
}
.service-article ol li {
    position: relative;
    padding-left: 35px; /* Место для номера */
    margin-bottom: 12px;
    counter-increment: ordered-list-counter; /* Увеличиваем счетчик */
}
.service-article ol li::before {
    content: counter(ordered-list-counter) "."; /* Отображаем номер */
    position: absolute;
    left: 0;
    top: 0;
    color: #E53935;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.6;
    min-width: 20px; /* Минимальная ширина для номера */
    text-align: right; /* Выравнивание номера по правому краю */
    padding-right: 10px; /* Отступ после номера */
}
/* Стили для тега <strong> внутри ol li */
.service-article ol li strong {
    font-weight: 700; /* Стандартное жирное начертание */
    color: #333; /* Можно сделать цвет чуть темнее */
}


/* Стили для блока предупреждения */
.alert {
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-style: solid;
    border-width: 1px;
    position: relative;
    padding-left: 50px; /* Место для иконки */
}
.alert::before { /* Псевдоэлемент для иконки */
    content: '';
    position: absolute;
    left: 15px;
    top: 20px;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.alert--warning {
    background-color: #fff8e1; /* Светло-желтый фон */
    border-color: #ffecb3; /* Желтая граница */
    color: #6d5b0f; /* Темно-желтый текст */
}
.alert--warning::before {
    /* Иконка предупреждения (треугольник) */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffb300' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-alert-triangle'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'%3E%3C/path%3E%3Cline x1='12' y1='9' x2='12' y2='13'%3E%3C/line%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'%3E%3C/line%3E%3C/svg%3E");
}
.alert h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    color: #c79100; /* Цвет заголовка в предупреждении */
}
.alert p {
    margin-bottom: 0; /* Убираем отступ у последнего параграфа в блоке */
    line-height: 1.6;
    color: #6d5b0f; /* Цвет текста в предупреждении */
}

/* Кнопки в конце статьи */
.service-article__cta {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}


/* --- Адаптивность для страницы услуги --- */
@media (max-width: 767px) {
    .service-article h2 {
        font-size: 24px;
    }
    .service-article h3 {
        font-size: 20px;
    }
    .service-article__cta {
        flex-direction: column;
    }
    .service-article__cta .btn { /* Кнопки на всю ширину */
        width: 100%;
        max-width: 320px; /* Ограничиваем ширину */
        margin-left: auto;
        margin-right: auto;
    }
}


/* --- Полный CSS (включая все предыдущие секции) --- */
/* --- Базовые стили и сброс --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { line-height: 1.6; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; height: 100%; }
body { font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 16px; color: #333; background-color: #fff; min-height: 100%; display: flex; flex-direction: column; }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; }
button { cursor: pointer; border: none; background-color: transparent; }
a { text-decoration: none; color: #E53935; transition: color 0.3s ease; }
a:hover { color: #c62828; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { margin-bottom: 16px; font-weight: 700; line-height: 1.3; color: #212121; }
p { margin-bottom: 16px; }
/* --- Общие классы и лэйаут --- */
.wrapper { flex-grow: 1; width: 100%; overflow-x: hidden; }
.main { flex-grow: 1; }
.container { max-width: 1140px; margin-left: auto; margin-right: auto; padding-left: 15px; padding-right: 15px; }
.btn { display: inline-block; padding: 12px 24px; font-size: 16px; font-weight: 700; text-align: center; text-decoration: none; border: 1px solid transparent; border-radius: 4px; cursor: pointer; transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease; line-height: 1.2; }
.btn--primary { background-color: #E53935; color: #fff; border-color: #E53935; }
.btn--primary:hover { background-color: #c62828; border-color: #c62828; color: #fff; }
.btn--secondary { background-color: #333; color: #fff; border-color: #333; }
.btn--secondary:hover { background-color: #4d4d4d; border-color: #4d4d4d; color: #fff; }
.btn--outline { background-color: transparent; color: #E53935; border-color: #E53935; }
.btn--outline:hover { background-color: #E53935; color: #fff; }
.btn--large { padding: 16px 32px; font-size: 18px; }
@media (max-width: 767px) { .btn--large { padding: 14px 24px; font-size: 16px; } }
.logo { display: inline-block; } .logo img { display: block; }
.logo__text { font-size: 24px; font-weight: 700; color: #212121; text-transform: uppercase; }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
/* --- Общие стили для секций --- */
.section { padding-top: 60px; padding-bottom: 60px; }
.section--grey { background-color: #f9f9f9; }
.section__title { font-size: 36px; font-weight: 700; margin-bottom: 40px; color: #212121; }
/* --- Стили Шапки (Header) --- */
.header { padding: 16px 0; background-color: #fff; border-bottom: 1px solid #f0f0f0; position: sticky; top: 0; left: 0; width: 100%; z-index: 100; }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.header__logo { flex-shrink: 0; }
.header__phone { font-weight: 700; color: #333; white-space: nowrap; margin-left: 24px; }
.header__phone:hover { color: #E53935; }
.nav__list { display: flex; align-items: center; gap: 24px; }
.nav__link { color: #333; font-weight: 400; padding: 8px 0; position: relative; transition: color 0.3s ease; }
.nav__link:hover { color: #E53935; }
.nav__link::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background-color: #E53935; transition: width 0.3s ease; }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__toggle { display: none; width: 30px; height: 24px; position: relative; z-index: 110; margin-left: 16px; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content: ''; display: block; width: 100%; height: 3px; background-color: #333; position: absolute; left: 0; transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease; border-radius: 1px; }
.nav__toggle span { top: 50%; transform: translateY(-50%); } .nav__toggle span::before { top: -8px; } .nav__toggle span::after { top: 8px; }
/* --- Стили секции Hero --- */
.hero { position: relative; padding-top: 80px; padding-bottom: 80px; background-color: #333; background-image: url('../images/hero-background.jpg'); background-size: cover; background-position: center center; background-repeat: no-repeat; color: #fff; text-align: center; min-height: 60vh; display: flex; align-items: center; justify-content: center; }
.hero__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: 1; }
.hero__container { position: relative; z-index: 2; max-width: 800px; }
.hero__title { font-size: 48px; font-weight: 900; line-height: 1.2; margin-bottom: 24px; color: #fff; text-transform: uppercase; text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.hero__subtitle { font-size: 20px; margin-bottom: 32px; color: rgba(255, 255, 255, 0.9); text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.hero__btn--phone { color: #fff; border-color: #fff; }
.hero__btn--phone:hover { background-color: #fff; color: #E53935; border-color: #fff; }
/* --- Стили секции "Типы носителей" --- */
.media-types__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.media-card { background-color: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 24px; text-align: center; transition: box-shadow 0.3s ease, transform 0.3s ease; display: flex; flex-direction: column; height: 100%; }
.media-card:hover { box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); transform: translateY(-5px); }
.media-card__icon { margin-bottom: 20px; height: 80px; display: flex; justify-content: center; align-items: center; }
.media-card__icon svg { width: 64px; height: 64px; }
.media-card__title { font-size: 20px; font-weight: 700; color: #333; margin-bottom: 12px; min-height: 48px; display: flex; align-items: center; justify-content: center; flex-grow: 1; }
.media-card__description { font-size: 15px; color: #666; line-height: 1.5; margin-bottom: 16px; }
.media-card__link { font-size: 15px; font-weight: 700; color: #E53935; text-decoration: none; margin-top: auto; transition: color 0.3s ease; }
.media-card__link:hover { color: #c62828; }
/* --- Стили секции "Как мы работаем" --- */
.process { position: relative; }
.process__steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; position: relative; counter-reset: process-counter; }
.process-step { background-color: #fff; padding: 30px 24px; border-radius: 8px; text-align: center; position: relative; z-index: 2; border: 1px solid #e0e0e0; transition: box-shadow 0.3s ease; }
.process-step:hover { box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08); }
.process-step__number { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); width: 36px; height: 36px; background-color: #E53935; color: #fff; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 16px; font-weight: 700; line-height: 1; border: 3px solid #f9f9f9; }
.process-step__icon { margin-bottom: 16px; height: 48px; display: flex; justify-content: center; align-items: center; color: #E53935; }
.process-step__icon svg { width: 48px; height: 48px; stroke-width: 1.5; }
.process-step__title { font-size: 18px; font-weight: 700; color: #333; margin-top: 10px; margin-bottom: 10px; }
.process-step__description { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 0; }
.process .btn--secondary { margin-top: 40px; }
.process .btn--secondary:hover { background-color: #4d4d4d; border-color: #4d4d4d; color: #fff; }
/* --- Стили секции "Ваши выгоды" --- */
.benefits__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.benefit-item { display: flex; align-items: flex-start; gap: 20px; padding: 20px; background-color: #fff; border-radius: 8px; }
.benefit-item__icon { flex-shrink: 0; color: #E53935; margin-top: 3px; }
.benefit-item__icon svg { width: 48px; height: 48px; stroke-width: 1.5; }
.benefit-item__title { font-size: 20px; font-weight: 700; color: #333; margin-top: 0; margin-bottom: 8px; }
.benefit-item__description { font-size: 15px; color: #666; line-height: 1.6; margin-bottom: 0; }
/* --- Стили секции "Отзывы" --- */
.yandex-rating-widget { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 45px; }
.yandex-rating-widget__link { font-size: 14px; color: #555; text-decoration: underline; transition: color 0.3s ease; }
.yandex-rating-widget__link:hover { color: #E53935; text-decoration: none; }
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { background-color: #fff; border: 1px solid #e8e8e8; border-radius: 8px; padding: 30px; display: flex; flex-direction: column; height: 100%; box-shadow: 0 5px 15px rgba(0,0,0,0.07); }
.review-card__rating { font-size: 16px; color: #f5a623; margin-bottom: 15px; line-height: 1; }
.review-card__text { font-size: 15px; color: #333; line-height: 1.7; margin-bottom: 20px; font-style: normal; flex-grow: 1; position: relative; padding-left: 25px; padding-right: 0; }
.review-card__text::before { content: '“'; position: absolute; left: 0; top: -2px; font-size: 36px; color: #e8e8e8; line-height: 1; font-style: normal; }
.review-card__text::after { display: none; }
.review-card__footer { margin-top: auto; padding-top: 16px; border-top: 1px solid #f0f0f0; text-align: right; }
.review-card__author { font-style: normal; font-weight: 700; color: #555; font-size: 14px; }
/* --- Стили секции "Партнерство" --- */
.partnership__container { display: flex; align-items: center; gap: 40px; }
.partnership__content { flex: 1 1 55%; }
.partnership__image { flex: 1 1 45%; text-align: center; }
.partnership__image img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
.partnership__content ul { list-style: none; padding-left: 0; margin-top: 16px; margin-bottom: 24px; }
.partnership__content li { position: relative; padding-left: 24px; margin-bottom: 10px; color: #555; line-height: 1.6; }
.partnership__content li::before { content: '✔'; position: absolute; left: 0; top: 0; color: #E53935; font-weight: bold; font-size: 16px; }
.partnership__content .btn { margin-top: 16px; }
/* --- Стили секции CTA --- */
.cta { background-color: #E53935; color: #fff; padding-top: 50px; padding-bottom: 50px; text-align: center; }
.cta__container { max-width: 700px; }
.cta__title { font-size: 32px; font-weight: 700; line-height: 1.3; margin-bottom: 16px; color: #fff; }
.cta__text { font-size: 18px; line-height: 1.6; margin-bottom: 30px; color: rgba(255, 255, 255, 0.9); }
.cta .btn--primary { background-color: #fff; color: #E53935; border-color: #fff; }
.cta .btn--primary:hover { background-color: #f0f0f0; border-color: #f0f0f0; color: #c62828; }
/* --- Стили страницы 404 --- */
.error-page { padding-top: 80px; padding-bottom: 80px; min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.error-page__container { max-width: 600px; }
.error-page__icon { margin-bottom: 30px; color: #E53935; }
.error-page__icon svg { width: 80px; height: 80px; stroke-width: 1.5; display: inline-block; }
.error-page__subtitle { font-size: 36px; font-weight: 700; color: #333; margin-bottom: 16px; }
.error-page__text { font-size: 18px; color: #666; line-height: 1.7; margin-bottom: 30px; }
.error-page__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.error-page__btn { min-width: 200px; }
/* --- Стили секции "Контакты" --- */
.contacts__wrapper { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: flex-start; }
.contacts__map { border-radius: 8px; overflow: hidden; min-height: 241px; height: 100%; background-color: #e0e0e0; }
.contacts__map iframe { width: 100%; height: 100%; min-height: 241px; border: none; display: block; }
.contacts__info-title { font-size: 24px; font-weight: 700; margin-bottom: 24px; color: #333; }
.contacts__address { font-style: normal; margin-bottom: 20px; }
.contacts__address p { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; line-height: 1.5; color: #555; }
.contacts__address svg { flex-shrink: 0; margin-top: 3px; color: #E53935; }
.contacts__note { font-size: 14px; color: #777; margin-left: 26px; margin-top: -4px; margin-bottom: 16px; }
.contacts__item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 16px; color: #555; }
.contacts__item svg { flex-shrink: 0; color: #E53935; margin-top: 3px; }
.contacts__item a { color: #E53935; text-decoration: none; border-bottom: 1px dashed #E53935; transition: color 0.3s ease, border-color 0.3s ease; }
.contacts__item a:hover { color: #c62828; border-bottom-color: #c62828; }
.contacts__hours { display: flex; flex-direction: column; }
.contacts__hours-note { font-size: 13px; color: #777; margin-top: 4px; font-style: italic; }
.contacts__item--delivery { margin-top: 16px; }
/* --- Стили для страницы отдельной услуги --- */
.service-content { /* Основная секция с контентом */ }
.service-layout { /* Пока без сайдбара */ }
.service-article { max-width: 800px; margin-left: auto; margin-right: auto; }
.service-article h2 { font-size: 28px; margin-top: 40px; margin-bottom: 20px; color: #333; }
.service-article h3 { font-size: 22px; margin-top: 30px; margin-bottom: 16px; color: #444; }
.service-article p { line-height: 1.7; color: #555; }
.service-article ul, .service-article ol { margin-bottom: 20px; padding-left: 25px; color: #555; }
.service-article ul { list-style: none; }
.service-article ul li { position: relative; padding-left: 20px; margin-bottom: 10px; }
.service-article ul li::before { content: '›'; position: absolute; left: 0; top: 0; color: #E53935; font-weight: bold; font-size: 18px; line-height: 1.6; }
.service-article ol { list-style: none; counter-reset: ordered-list-counter; }
.service-article ol li { position: relative; padding-left: 35px; margin-bottom: 12px; counter-increment: ordered-list-counter; }
.service-article ol li::before { content: counter(ordered-list-counter) "."; position: absolute; left: 0; top: 0; color: #E53935; font-weight: bold; font-size: 16px; line-height: 1.6; min-width: 20px; text-align: right; padding-right: 10px; }
.service-article ol li strong { font-weight: 700; color: #333; }
.alert { padding: 20px; margin-top: 30px; margin-bottom: 30px; border-radius: 8px; border-style: solid; border-width: 1px; position: relative; padding-left: 50px; }
.alert::before { content: ''; position: absolute; left: 15px; top: 20px; width: 24px; height: 24px; background-repeat: no-repeat; background-position: center center; background-size: contain; }
.alert--warning { background-color: #fff8e1; border-color: #ffecb3; color: #6d5b0f; }
.alert--warning::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffb300' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-alert-triangle'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'%3E%3C/path%3E%3Cline x1='12' y1='9' x2='12' y2='13'%3E%3C/line%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'%3E%3C/line%3E%3C/svg%3E"); }
.alert h3 { margin-top: 0; margin-bottom: 10px; font-size: 18px; color: #c79100; }
.alert p { margin-bottom: 0; line-height: 1.6; color: #6d5b0f; }
.service-article__cta { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; }
/* --- Адаптивность --- */
@media (max-width: 991px) {
    .section { padding-top: 50px; padding-bottom: 50px; }
    .section__title { font-size: 32px; margin-bottom: 30px; }
    .hero { padding-top: 60px; padding-bottom: 60px; min-height: 50vh; }
    .hero__title { font-size: 40px; } .hero__subtitle { font-size: 18px; }
    .media-types__grid { gap: 20px; }
    .media-card__title { font-size: 18px; min-height: 44px; }
    .media-card__description { font-size: 14px; } .media-card__link { font-size: 14px; }
    .media-card__icon svg { width: 56px; height: 56px; }
    .process__steps { gap: 20px; }
    .process-step { padding: 24px 20px; } .process-step__title { font-size: 17px; }
    .benefits__grid { gap: 24px; }
    .benefit-item__title { font-size: 18px; } .benefit-item__description { font-size: 14px; }
    .benefit-item__icon svg { width: 44px; height: 44px; }
    .reviews__grid { gap: 20px; }
    .partnership__container { gap: 30px; }
    .partnership__content { flex-basis: 60%; } .partnership__image { flex-basis: 40%; }
    .contacts__wrapper { gap: 30px; } .contacts__info-title { font-size: 22px; }
    .contacts__map { height: 300px; min-height: 241px; } .contacts__map iframe { min-height: 241px; }
}
@media (max-width: 767px) {
    .section { padding-top: 40px; padding-bottom: 40px; }
    .section__title { font-size: 28px; margin-bottom: 24px; }
    .nav__toggle { display: block; } .header__phone { display: none; }
    .nav__list { display: none; position: absolute; top: 100%; left: 0; width: 100%; background-color: #fff; flex-direction: column; padding: 16px; box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); border-top: 1px solid #f0f0f0; gap: 0; }
    .nav__list.is-active { display: flex; }
    .nav__item { width: 100%; border-bottom: 1px solid #f0f0f0; } .nav__item:last-child { border-bottom: none; }
    .nav__link { display: block; padding: 12px 0; text-align: center; } .nav__link::after { display: none; }
    .nav__toggle.is-active span { transform: rotate(45deg); top: 50%; transform-origin: center; }
    .nav__toggle.is-active span::before { top: 0; opacity: 0; transform: translateX(-100%); }
    .nav__toggle.is-active span::after { top: 0; transform: rotate(-90deg); transform-origin: center; }
    .hero { padding-top: 40px; padding-bottom: 40px; min-height: auto; text-align: left; }
    .hero__container { text-align: left; }
    .hero__title { font-size: 32px; margin-bottom: 16px; } .hero__subtitle { font-size: 16px; margin-bottom: 24px; }
    .hero__actions { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hero__btn { width: 100%; text-align: center; }
    .media-types__grid { grid-template-columns: 1fr; gap: 16px; }
    .media-card { padding: 20px; } .media-card__title { min-height: auto; }
    .media-card__icon svg { width: 48px; height: 48px; }
    .process__steps { grid-template-columns: 1fr; gap: 40px; }
    .process .btn--secondary { margin-top: 30px; }
    .benefits__grid { grid-template-columns: 1fr; gap: 20px; }
    .benefit-item { padding: 16px; gap: 16px; }
    .benefit-item__icon svg { width: 40px; height: 40px; }
    .reviews__grid { grid-template-columns: 1fr; gap: 16px; }
    .review-card { padding: 24px; }
    .review-card__text { font-size: 14px; padding-left: 22px; }
    .review-card__text::before { font-size: 32px; }
    .review-card__footer { text-align: left; }
    .partnership__container { flex-direction: column; gap: 30px; }
    .partnership__content { flex-basis: auto; order: 2; text-align: center; }
    .partnership__image { flex-basis: auto; order: 1; max-width: 350px; margin-left: auto; margin-right: auto; }
    .partnership__content .section__title { text-align: center; }
    .partnership__content ul { text-align: left; display: inline-block; margin-left: auto; margin-right: auto; }
    .partnership__content .btn { width: 100%; max-width: 300px; }
    .cta { padding-top: 40px; padding-bottom: 40px; }
    .cta__title { font-size: 28px; }
    .cta__text { font-size: 16px; margin-bottom: 24px; }
    .cta__btn { width: 100%; max-width: 320px; }
    .error-page { padding-top: 50px; padding-bottom: 50px; }
    .error-page__icon svg { width: 60px; height: 60px; }
    .error-page__subtitle { font-size: 28px; }
    .error-page__text { font-size: 16px; }
    .error-page__actions { flex-direction: column; align-items: center; gap: 12px; }
    .error-page__btn { width: 100%; max-width: 300px; min-width: auto; }
    .contacts__wrapper { grid-template-columns: 1fr; gap: 30px; }
    .contacts__map { height: 300px; min-height: 241px; order: 2; }
    .contacts__map iframe { min-height: 241px; }
    .contacts__info { order: 1; text-align: center; }
    .contacts__address p, .contacts__item { justify-content: center; text-align: left; }
    .contacts__note { text-align: center; margin-left: 0; }
    .contacts__item { align-items: center; } .contacts__item svg { margin-top: 0; }
    .contacts__hours { align-items: center; }
    .service-article h2 { font-size: 24px; }
    .service-article h3 { font-size: 20px; }
    .service-article__cta { flex-direction: column; }
    .service-article__cta .btn { width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 575px) {
    .header { padding: 12px 0; }
    .footer { padding: 32px 0 16px; }
    .footer__top { gap: 24px; padding-bottom: 24px; margin-bottom: 24px; }
    .footer__bottom { padding-top: 16px; }
     .hero__title { font-size: 28px; }
}
/* --- Стили Подвала (Footer) --- */
.footer { flex-shrink: 0; background-color: #212121; color: #e0e0e0; padding: 48px 0 24px; font-size: 14px; }
.footer a { color: #e0e0e0; } .footer a:hover { color: #E53935; }
.footer__top { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid #424242; }
.footer__title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer__list li { margin-bottom: 8px; }
.footer__address { font-style: normal; line-height: 1.7; margin-bottom: 16px; }
.socials { display: flex; flex-wrap: wrap; gap: 12px; }
.socials a { display: flex; justify-content: center; align-items: center; width: 36px; height: 36px; border: 1px solid #616161; border-radius: 50%; font-size: 16px; transition: background-color 0.3s ease, border-color 0.3s ease; }
.socials a:hover { background-color: #E53935; border-color: #E53935; color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; padding-top: 24px; font-size: 13px; color: #bdbdbd; }
.footer__copy { margin-bottom: 0; }
.footer__legal { margin-bottom: 0; max-width: 500px; text-align: right; }
.footer__credits { margin-bottom: 0; width: 100%; text-align: center; margin-top: 8px; font-size: 12px; color: #757575; }
.footer__credits a { color: #9e9e9e; } .footer__credits a:hover { color: #E53935; }
@media (max-width: 767px) {
    .footer__bottom { flex-direction: column; align-items: center; text-align: center; }
    .footer__legal { text-align: center; max-width: none; }
    .footer__credits { margin-top: 16px; }
}

/* --- Стили для страницы "Цены" --- */

/* Секция факторов ценообразования */
.pricing-factors {
    display: grid;
    /* Адаптивная сетка: 1 колонка на мобильных, 2 на планшетах, 4 на десктопе */
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 30px; /* Отступ под факторами */
}

.pricing-factor {
    text-align: center;
    padding: 20px;
    background-color: #fff; /* Белый фон для карточки фактора */
    border-radius: 8px;
    border: 1px solid #eee;
    /* box-shadow: 0 4px 10px rgba(0,0,0,0.05); */ /* Можно добавить тень */
}

.pricing-factor__icon {
    margin-bottom: 16px;
    color: #E53935; /* Цвет иконки */
}
.pricing-factor__icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
    display: inline-block; /* Центрирование иконки */
}

.pricing-factor__title {
    font-size: 18px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 8px;
    color: #333;
}

.pricing-factor p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Стили для таблицы цен */
.price-table {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden; /* Скрываем углы */
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.price-table__row {
    display: grid;
    /* Две колонки: услуга и цена */
    grid-template-columns: 3fr 1fr; /* Услуга занимает больше места */
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}
.price-table__row:last-child {
    border-bottom: none; /* Убираем границу у последней строки */
}
.price-table__row:hover {
    background-color: #f9f9f9; /* Легкий фон при наведении */
}

.price-table__col {
    padding: 16px 20px;
    font-size: 15px;
    color: #555;
    display: flex; /* Для выравнивания иконки и текста */
    align-items: center;
    gap: 10px;
}

.price-table__col--service {
    /* Стили для колонки с услугой */
    font-weight: 500; /* Немного жирнее */
    color: #333;
}
.price-table__col--service svg {
    width: 20px; /* Размер иконки */
    height: 20px;
    flex-shrink: 0;
    color: #E53935; /* Цвет иконки */
    stroke-width: 1.5;
}

.price-table__col--price {
    font-weight: 700; /* Жирный шрифт для цены */
    color: #E53935; /* Красный цвет цены */
    justify-content: flex-end; /* Выравнивание цены по правому краю */
    text-align: right;
    white-space: nowrap; /* Запрет переноса цены */
}


/* --- Адаптивность для страницы "Цены" --- */
@media (max-width: 767px) {
    .pricing-factors {
        /* 1 или 2 колонки на мобильных */
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }
    .price-table__row {
        /* Колонки друг под другом на мобильных */
        grid-template-columns: 1fr;
        gap: 5px; /* Небольшой отступ между услугой и ценой */
        padding-top: 12px;
        padding-bottom: 12px;
    }
     .price-table__col {
        padding: 5px 16px; /* Уменьшаем отступы */
        font-size: 14px;
    }
    .price-table__col--service {
        /* Можно убрать иконку на мобильных для экономии места */
        /* svg { display: none; } */
    }
    .price-table__col--price {
        justify-content: flex-start; /* Выравнивание по левому краю */
        text-align: left;
        padding-left: 34px; /* Отступ слева, как у текста услуги */
        padding-top: 0;
    }
}


/* --- Полный CSS (включая все предыдущие секции) --- */
/* --- Базовые стили и сброс --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { line-height: 1.6; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; height: 100%; }
body { font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 16px; color: #333; background-color: #fff; min-height: 100%; display: flex; flex-direction: column; }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; }
button { cursor: pointer; border: none; background-color: transparent; }
a { text-decoration: none; color: #E53935; transition: color 0.3s ease; }
a:hover { color: #c62828; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { margin-bottom: 16px; font-weight: 700; line-height: 1.3; color: #212121; }
p { margin-bottom: 16px; }
/* --- Общие классы и лэйаут --- */
.wrapper { flex-grow: 1; width: 100%; overflow-x: hidden; }
.main { flex-grow: 1; }
.container { max-width: 1140px; margin-left: auto; margin-right: auto; padding-left: 15px; padding-right: 15px; }
.btn { display: inline-block; padding: 12px 24px; font-size: 16px; font-weight: 700; text-align: center; text-decoration: none; border: 1px solid transparent; border-radius: 4px; cursor: pointer; transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease; line-height: 1.2; }
.btn--primary { background-color: #E53935; color: #fff; border-color: #E53935; }
.btn--primary:hover { background-color: #c62828; border-color: #c62828; color: #fff; }
.btn--secondary { background-color: #333; color: #fff; border-color: #333; }
.btn--secondary:hover { background-color: #4d4d4d; border-color: #4d4d4d; color: #fff; }
.btn--outline { background-color: transparent; color: #E53935; border-color: #E53935; }
.btn--outline:hover { background-color: #E53935; color: #fff; }
.btn--large { padding: 16px 32px; font-size: 18px; }
@media (max-width: 767px) { .btn--large { padding: 14px 24px; font-size: 16px; } }
.logo { display: inline-block; } .logo img { display: block; }
.logo__text { font-size: 24px; font-weight: 700; color: #212121; text-transform: uppercase; }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
/* --- Общие стили для секций --- */
.section { padding-top: 60px; padding-bottom: 60px; }
.section--grey { background-color: #f9f9f9; }
.section__title { font-size: 36px; font-weight: 700; margin-bottom: 40px; color: #212121; }
/* --- Стили Шапки (Header) --- */
.header { padding: 16px 0; background-color: #fff; border-bottom: 1px solid #f0f0f0; position: sticky; top: 0; left: 0; width: 100%; z-index: 100; }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.header__logo { flex-shrink: 0; }
.header__phone { font-weight: 700; color: #333; white-space: nowrap; margin-left: 24px; }
.header__phone:hover { color: #E53935; }
.nav__list { display: flex; align-items: center; gap: 24px; }
.nav__link { color: #333; font-weight: 400; padding: 8px 0; position: relative; transition: color 0.3s ease; }
.nav__link:hover { color: #E53935; }
.nav__link::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background-color: #E53935; transition: width 0.3s ease; }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__toggle { display: none; width: 30px; height: 24px; position: relative; z-index: 110; margin-left: 16px; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content: ''; display: block; width: 100%; height: 3px; background-color: #333; position: absolute; left: 0; transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease; border-radius: 1px; }
.nav__toggle span { top: 50%; transform: translateY(-50%); } .nav__toggle span::before { top: -8px; } .nav__toggle span::after { top: 8px; }
/* --- Стили секции Hero --- */
.hero { position: relative; padding-top: 80px; padding-bottom: 80px; background-color: #333; background-image: url('../images/hero-background.jpg'); background-size: cover; background-position: center center; background-repeat: no-repeat; color: #fff; text-align: center; min-height: 60vh; display: flex; align-items: center; justify-content: center; }
.hero__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: 1; }
.hero__container { position: relative; z-index: 2; max-width: 800px; }
.hero__title { font-size: 48px; font-weight: 900; line-height: 1.2; margin-bottom: 24px; color: #fff; text-transform: uppercase; text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.hero__subtitle { font-size: 20px; margin-bottom: 32px; color: rgba(255, 255, 255, 0.9); text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.hero__btn--phone { color: #fff; border-color: #fff; }
.hero__btn--phone:hover { background-color: #fff; color: #E53935; border-color: #fff; }
/* --- Стили секции "Типы носителей" --- */
.media-types__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.media-card { background-color: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 24px; text-align: center; transition: box-shadow 0.3s ease, transform 0.3s ease; display: flex; flex-direction: column; height: 100%; }
.media-card:hover { box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); transform: translateY(-5px); }
.media-card__icon { margin-bottom: 20px; height: 80px; display: flex; justify-content: center; align-items: center; }
.media-card__icon svg { width: 64px; height: 64px; }
.media-card__title { font-size: 20px; font-weight: 700; color: #333; margin-bottom: 12px; min-height: 48px; display: flex; align-items: center; justify-content: center; flex-grow: 1; }
.media-card__description { font-size: 15px; color: #666; line-height: 1.5; margin-bottom: 16px; }
.media-card__link { font-size: 15px; font-weight: 700; color: #E53935; text-decoration: none; margin-top: auto; transition: color 0.3s ease; }
.media-card__link:hover { color: #c62828; }
/* --- Стили секции "Как мы работаем" --- */
.process { position: relative; }
.process__steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; position: relative; counter-reset: process-counter; }
.process-step { background-color: #fff; padding: 30px 24px; border-radius: 8px; text-align: center; position: relative; z-index: 2; border: 1px solid #e0e0e0; transition: box-shadow 0.3s ease; }
.process-step:hover { box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08); }
.process-step__number { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); width: 36px; height: 36px; background-color: #E53935; color: #fff; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 16px; font-weight: 700; line-height: 1; border: 3px solid #f9f9f9; }
.process-step__icon { margin-bottom: 16px; height: 48px; display: flex; justify-content: center; align-items: center; color: #E53935; }
.process-step__icon svg { width: 48px; height: 48px; stroke-width: 1.5; }
.process-step__title { font-size: 18px; font-weight: 700; color: #333; margin-top: 10px; margin-bottom: 10px; }
.process-step__description { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 0; }
.process .btn--secondary { margin-top: 40px; }
.process .btn--secondary:hover { background-color: #4d4d4d; border-color: #4d4d4d; color: #fff; }
/* --- Стили секции "Ваши выгоды" --- */
.benefits__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.benefit-item { display: flex; align-items: flex-start; gap: 20px; padding: 20px; background-color: #fff; border-radius: 8px; }
.benefit-item__icon { flex-shrink: 0; color: #E53935; margin-top: 3px; }
.benefit-item__icon svg { width: 48px; height: 48px; stroke-width: 1.5; }
.benefit-item__title { font-size: 20px; font-weight: 700; color: #333; margin-top: 0; margin-bottom: 8px; }
.benefit-item__description { font-size: 15px; color: #666; line-height: 1.6; margin-bottom: 0; }
/* --- Стили секции "Отзывы" --- */
.yandex-rating-widget { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 45px; }
.yandex-rating-widget__link { font-size: 14px; color: #555; text-decoration: underline; transition: color 0.3s ease; }
.yandex-rating-widget__link:hover { color: #E53935; text-decoration: none; }
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { background-color: #fff; border: 1px solid #e8e8e8; border-radius: 8px; padding: 30px; display: flex; flex-direction: column; height: 100%; box-shadow: 0 5px 15px rgba(0,0,0,0.07); }
.review-card__rating { font-size: 16px; color: #f5a623; margin-bottom: 15px; line-height: 1; }
.review-card__text { font-size: 15px; color: #333; line-height: 1.7; margin-bottom: 20px; font-style: normal; flex-grow: 1; position: relative; padding-left: 25px; padding-right: 0; }
.review-card__text::before { content: '“'; position: absolute; left: 0; top: -2px; font-size: 36px; color: #e8e8e8; line-height: 1; font-style: normal; }
.review-card__text::after { display: none; }
.review-card__footer { margin-top: auto; padding-top: 16px; border-top: 1px solid #f0f0f0; text-align: right; }
.review-card__author { font-style: normal; font-weight: 700; color: #555; font-size: 14px; }
/* --- Стили секции "Партнерство" --- */
.partnership__container { display: flex; align-items: center; gap: 40px; }
.partnership__content { flex: 1 1 55%; }
.partnership__image { flex: 1 1 45%; text-align: center; }
.partnership__image img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
.partnership__content ul { list-style: none; padding-left: 0; margin-top: 16px; margin-bottom: 24px; }
.partnership__content li { position: relative; padding-left: 24px; margin-bottom: 10px; color: #555; line-height: 1.6; }
.partnership__content li::before { content: '✔'; position: absolute; left: 0; top: 0; color: #E53935; font-weight: bold; font-size: 16px; }
.partnership__content .btn { margin-top: 16px; }
/* --- Стили секции CTA --- */
.cta { background-color: #E53935; color: #fff; padding-top: 50px; padding-bottom: 50px; text-align: center; }
.cta__container { max-width: 700px; }
.cta__title { font-size: 32px; font-weight: 700; line-height: 1.3; margin-bottom: 16px; color: #fff; }
.cta__text { font-size: 18px; line-height: 1.6; margin-bottom: 30px; color: rgba(255, 255, 255, 0.9); }
.cta .btn--primary { background-color: #fff; color: #E53935; border-color: #fff; }
.cta .btn--primary:hover { background-color: #f0f0f0; border-color: #f0f0f0; color: #c62828; }
/* --- Стили страницы 404 --- */
.error-page { padding-top: 80px; padding-bottom: 80px; min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.error-page__container { max-width: 600px; }
.error-page__icon { margin-bottom: 30px; color: #E53935; }
.error-page__icon svg { width: 80px; height: 80px; stroke-width: 1.5; display: inline-block; }
.error-page__subtitle { font-size: 36px; font-weight: 700; color: #333; margin-bottom: 16px; }
.error-page__text { font-size: 18px; color: #666; line-height: 1.7; margin-bottom: 30px; }
.error-page__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.error-page__btn { min-width: 200px; }
/* --- Стили секции "Контакты" --- */
.contacts__wrapper { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: flex-start; }
.contacts__map { border-radius: 8px; overflow: hidden; min-height: 241px; height: 100%; background-color: #e0e0e0; }
.contacts__map iframe { width: 100%; height: 100%; min-height: 241px; border: none; display: block; }
.contacts__info-title { font-size: 24px; font-weight: 700; margin-bottom: 24px; color: #333; }
.contacts__address { font-style: normal; margin-bottom: 20px; }
.contacts__address p { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; line-height: 1.5; color: #555; }
.contacts__address svg { flex-shrink: 0; margin-top: 3px; color: #E53935; }
.contacts__note { font-size: 14px; color: #777; margin-left: 26px; margin-top: -4px; margin-bottom: 16px; }
.contacts__item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 16px; color: #555; }
.contacts__item svg { flex-shrink: 0; color: #E53935; margin-top: 3px; }
.contacts__item a { color: #E53935; text-decoration: none; border-bottom: 1px dashed #E53935; transition: color 0.3s ease, border-color 0.3s ease; }
.contacts__item a:hover { color: #c62828; border-bottom-color: #c62828; }
.contacts__hours { display: flex; flex-direction: column; }
.contacts__hours-note { font-size: 13px; color: #777; margin-top: 4px; font-style: italic; }
.contacts__item--delivery { margin-top: 16px; }
/* --- Стили для страницы отдельной услуги --- */
.service-content { /* Основная секция с контентом */ }
.service-layout { /* Пока без сайдбара */ }
.service-article { max-width: 800px; margin-left: auto; margin-right: auto; }
.service-article h2 { font-size: 28px; margin-top: 40px; margin-bottom: 20px; color: #333; }
.service-article h3 { font-size: 22px; margin-top: 30px; margin-bottom: 16px; color: #444; }
.service-article p { line-height: 1.7; color: #555; }
.service-article ul, .service-article ol { margin-bottom: 20px; padding-left: 25px; color: #555; }
.service-article ul { list-style: none; }
.service-article ul li { position: relative; padding-left: 20px; margin-bottom: 10px; }
.service-article ul li::before { content: '›'; position: absolute; left: 0; top: 0; color: #E53935; font-weight: bold; font-size: 18px; line-height: 1.6; }
.service-article ol { list-style: none; counter-reset: ordered-list-counter; }
.service-article ol li { position: relative; padding-left: 35px; margin-bottom: 12px; counter-increment: ordered-list-counter; }
.service-article ol li::before { content: counter(ordered-list-counter) "."; position: absolute; left: 0; top: 0; color: #E53935; font-weight: bold; font-size: 16px; line-height: 1.6; min-width: 20px; text-align: right; padding-right: 10px; }
.service-article ol li strong { font-weight: 700; color: #333; }
.alert { padding: 20px; margin-top: 30px; margin-bottom: 30px; border-radius: 8px; border-style: solid; border-width: 1px; position: relative; padding-left: 50px; }
.alert::before { content: ''; position: absolute; left: 15px; top: 20px; width: 24px; height: 24px; background-repeat: no-repeat; background-position: center center; background-size: contain; }
.alert--warning { background-color: #fff8e1; border-color: #ffecb3; color: #6d5b0f; }
.alert--warning::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffb300' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-alert-triangle'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'%3E%3C/path%3E%3Cline x1='12' y1='9' x2='12' y2='13'%3E%3C/line%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'%3E%3C/line%3E%3C/svg%3E"); }
.alert h3 { margin-top: 0; margin-bottom: 10px; font-size: 18px; color: #c79100; }
.alert p { margin-bottom: 0; line-height: 1.6; color: #6d5b0f; }
.service-article__cta { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; }
/* --- Стили для страницы "Цены" --- */
.pricing-factors { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; margin-bottom: 30px; }
.pricing-factor { text-align: center; padding: 20px; background-color: #fff; border-radius: 8px; border: 1px solid #eee; }
.pricing-factor__icon { margin-bottom: 16px; color: #E53935; }
.pricing-factor__icon svg { width: 48px; height: 48px; stroke-width: 1.5; display: inline-block; }
.pricing-factor__title { font-size: 18px; font-weight: 700; margin-top: 0; margin-bottom: 8px; color: #333; }
.pricing-factor p { font-size: 14px; color: #666; line-height: 1.5; margin-bottom: 0; }
.price-list { /* Дополнительные стили для секции, если нужны */ }
.price-table { background-color: #fff; border-radius: 8px; overflow: hidden; border: 1px solid #e0e0e0; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.price-table__row { display: grid; grid-template-columns: 3fr 1fr; border-bottom: 1px solid #f0f0f0; transition: background-color 0.2s ease; }
.price-table__row:last-child { border-bottom: none; }
.price-table__row:hover { background-color: #f9f9f9; }
.price-table__col { padding: 16px 20px; font-size: 15px; color: #555; display: flex; align-items: center; gap: 10px; }
.price-table__col--service { font-weight: 500; color: #333; }
.price-table__col--service svg { width: 20px; height: 20px; flex-shrink: 0; color: #E53935; stroke-width: 1.5; }
.price-table__col--price { font-weight: 700; color: #E53935; justify-content: flex-end; text-align: right; white-space: nowrap; }
/* --- Адаптивность --- */
@media (max-width: 991px) {
    .section { padding-top: 50px; padding-bottom: 50px; }
    .section__title { font-size: 32px; margin-bottom: 30px; }
    .hero { padding-top: 60px; padding-bottom: 60px; min-height: 50vh; }
    .hero__title { font-size: 40px; } .hero__subtitle { font-size: 18px; }
    .media-types__grid { gap: 20px; }
    .media-card__title { font-size: 18px; min-height: 44px; }
    .media-card__description { font-size: 14px; } .media-card__link { font-size: 14px; }
    .media-card__icon svg { width: 56px; height: 56px; }
    .process__steps { gap: 20px; }
    .process-step { padding: 24px 20px; } .process-step__title { font-size: 17px; }
    .benefits__grid { gap: 24px; }
    .benefit-item__title { font-size: 18px; } .benefit-item__description { font-size: 14px; }
    .benefit-item__icon svg { width: 44px; height: 44px; }
    .reviews__grid { gap: 20px; }
    .partnership__container { gap: 30px; }
    .partnership__content { flex-basis: 60%; } .partnership__image { flex-basis: 40%; }
    .contacts__wrapper { gap: 30px; } .contacts__info-title { font-size: 22px; }
    .contacts__map { height: 300px; min-height: 241px; } .contacts__map iframe { min-height: 241px; }
}
@media (max-width: 767px) {
    .section { padding-top: 40px; padding-bottom: 40px; }
    .section__title { font-size: 28px; margin-bottom: 24px; }
    .nav__toggle { display: block; } .header__phone { display: none; }
    .nav__list { display: none; position: absolute; top: 100%; left: 0; width: 100%; background-color: #fff; flex-direction: column; padding: 16px; box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); border-top: 1px solid #f0f0f0; gap: 0; }
    .nav__list.is-active { display: flex; }
    .nav__item { width: 100%; border-bottom: 1px solid #f0f0f0; } .nav__item:last-child { border-bottom: none; }
    .nav__link { display: block; padding: 12px 0; text-align: center; } .nav__link::after { display: none; }
    .nav__toggle.is-active span { transform: rotate(45deg); top: 50%; transform-origin: center; }
    .nav__toggle.is-active span::before { top: 0; opacity: 0; transform: translateX(-100%); }
    .nav__toggle.is-active span::after { top: 0; transform: rotate(-90deg); transform-origin: center; }
    .hero { padding-top: 40px; padding-bottom: 40px; min-height: auto; text-align: left; }
    .hero__container { text-align: left; }
    .hero__title { font-size: 32px; margin-bottom: 16px; } .hero__subtitle { font-size: 16px; margin-bottom: 24px; }
    .hero__actions { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hero__btn { width: 100%; text-align: center; }
    .media-types__grid { grid-template-columns: 1fr; gap: 16px; }
    .media-card { padding: 20px; } .media-card__title { min-height: auto; }
    .media-card__icon svg { width: 48px; height: 48px; }
    .process__steps { grid-template-columns: 1fr; gap: 40px; }
    .process .btn--secondary { margin-top: 30px; }
    .benefits__grid { grid-template-columns: 1fr; gap: 20px; }
    .benefit-item { padding: 16px; gap: 16px; }
    .benefit-item__icon svg { width: 40px; height: 40px; }
    .reviews__grid { grid-template-columns: 1fr; gap: 16px; }
    .review-card { padding: 24px; }
    .review-card__text { font-size: 14px; padding-left: 22px; }
    .review-card__text::before { font-size: 32px; }
    .review-card__footer { text-align: left; }
    .partnership__container { flex-direction: column; gap: 30px; }
    .partnership__content { flex-basis: auto; order: 2; text-align: center; }
    .partnership__image { flex-basis: auto; order: 1; max-width: 350px; margin-left: auto; margin-right: auto; }
    .partnership__content .section__title { text-align: center; }
    .partnership__content ul { text-align: left; display: inline-block; margin-left: auto; margin-right: auto; }
    .partnership__content .btn { width: 100%; max-width: 300px; }
    .cta { padding-top: 40px; padding-bottom: 40px; }
    .cta__title { font-size: 28px; }
    .cta__text { font-size: 16px; margin-bottom: 24px; }
    .cta__btn { width: 100%; max-width: 320px; }
    .error-page { padding-top: 50px; padding-bottom: 50px; }
    .error-page__icon svg { width: 60px; height: 60px; }
    .error-page__subtitle { font-size: 28px; }
    .error-page__text { font-size: 16px; }
    .error-page__actions { flex-direction: column; align-items: center; gap: 12px; }
    .error-page__btn { width: 100%; max-width: 300px; min-width: auto; }
    .contacts__wrapper { grid-template-columns: 1fr; gap: 30px; }
    .contacts__map { height: 300px; min-height: 241px; order: 2; }
    .contacts__map iframe { min-height: 241px; }
    .contacts__info { order: 1; text-align: center; }
    .contacts__address p, .contacts__item { justify-content: center; text-align: left; }
    .contacts__note { text-align: center; margin-left: 0; }
    .contacts__item { align-items: center; } .contacts__item svg { margin-top: 0; }
    .contacts__hours { align-items: center; }
    .service-article h2 { font-size: 24px; }
    .service-article h3 { font-size: 20px; }
    .service-article__cta { flex-direction: column; }
    .service-article__cta .btn { width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
    .pricing-factors { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
    .price-table__row { grid-template-columns: 1fr; gap: 5px; padding-top: 12px; padding-bottom: 12px; }
    .price-table__col { padding: 5px 16px; font-size: 14px; }
    .price-table__col--price { justify-content: flex-start; text-align: left; padding-left: 34px; padding-top: 0; }
}
@media (max-width: 575px) {
    .header { padding: 12px 0; }
    .footer { padding: 32px 0 16px; }
    .footer__top { gap: 24px; padding-bottom: 24px; margin-bottom: 24px; }
    .footer__bottom { padding-top: 16px; }
     .hero__title { font-size: 28px; }
}
/* --- Стили Подвала (Footer) --- */
.footer { flex-shrink: 0; background-color: #212121; color: #e0e0e0; padding: 48px 0 24px; font-size: 14px; }
.footer a { color: #e0e0e0; } .footer a:hover { color: #E53935; }
.footer__top { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid #424242; }
.footer__title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer__list li { margin-bottom: 8px; }
.footer__address { font-style: normal; line-height: 1.7; margin-bottom: 16px; }
.socials { display: flex; flex-wrap: wrap; gap: 12px; }
.socials a { display: flex; justify-content: center; align-items: center; width: 36px; height: 36px; border: 1px solid #616161; border-radius: 50%; font-size: 16px; transition: background-color 0.3s ease, border-color 0.3s ease; }
.socials a:hover { background-color: #E53935; border-color: #E53935; color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; padding-top: 24px; font-size: 13px; color: #bdbdbd; }
.footer__copy { margin-bottom: 0; }
.footer__legal { margin-bottom: 0; max-width: 500px; text-align: right; }
.footer__credits { margin-bottom: 0; width: 100%; text-align: center; margin-top: 8px; font-size: 12px; color: #757575; }
.footer__credits a { color: #9e9e9e; } .footer__credits a:hover { color: #E53935; }
@media (max-width: 767px) {
    .footer__bottom { flex-direction: column; align-items: center; text-align: center; }
    .footer__legal { text-align: center; max-width: none; }
    .footer__credits { margin-top: 16px; }
}
/* --- Стили для страницы "Процесс работы" --- */
.process-details {
    /* Стили для основной секции контента */
}

.process-timeline {
    max-width: 800px; /* Ограничиваем ширину таймлайна */
    margin: 0 auto; /* Центрируем */
    position: relative;
    padding: 20px 0;
}

/* Вертикальная линия таймлайна */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    /* Смещение влево относительно центра иконки (32px/2 + отступ 30px) */
    left: calc(16px + 30px);
    transform: translateX(-50%);
    height: 100%;
    width: 3px; /* Толщина линии */
    background-color: #e0e0e0; /* Цвет линии */
    z-index: 1;
}

/* Элемент таймлайна (шаг) */
.timeline-item {
    display: flex;
    align-items: flex-start; /* Выравнивание по верху */
    gap: 30px; /* Расстояние между иконкой и контентом */
    position: relative; /* Для позиционирования относительно линии */
    z-index: 2; /* Элементы поверх линии */
    margin-bottom: 40px; /* Отступ между шагами */
}
.timeline-item:last-child {
    margin-bottom: 0; /* Убираем отступ у последнего */
}

/* Контейнер иконки */
.timeline-item__icon {
    flex-shrink: 0;
    width: 32px; /* Ширина равна ширине иконки */
    height: 32px;
    border-radius: 50%;
    background-color: #E53935; /* Красный фон иконки */
    color: #fff; /* Белый цвет самой иконки */
    display: flex;
    justify-content: center;
    align-items: center;
    /* Позиционируем иконку точно на линии */
    position: relative; /* Нужно для корректного z-index */
    /* Смещение влево, чтобы центр иконки был на линии */
    margin-left: calc(16px + 30px - 16px); /* (Смещение линии - половина ширины иконки) */

}
.timeline-item__icon svg {
    width: 20px; /* Размер SVG внутри кружка */
    height: 20px;
    stroke-width: 2;
}

/* Контент шага */
.timeline-item__content {
    background-color: #fff; /* Белый фон для блока текста */
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    flex-grow: 1; /* Занимает оставшееся место */
}

.timeline-item__title {
    font-size: 20px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}

.timeline-item__content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0; /* Убираем отступ у последнего параграфа */
}
.timeline-item__content p a {
    /* Стили для ссылок внутри описания */
    font-weight: 500;
}

/* --- Адаптивность для страницы "Процесс работы" --- */
@media (max-width: 767px) {
    .process-timeline::before {
        /* Смещаем линию левее на мобильных */
        left: 16px; /* Половина ширины иконки */
        transform: none;
    }
    .timeline-item {
        gap: 15px; /* Уменьшаем отступ */
        margin-bottom: 30px;
    }
    .timeline-item__icon {
        /* Убираем сложное позиционирование, иконка просто слева */
        margin-left: 0;
    }
    .timeline-item__title {
        font-size: 18px;
    }
     .timeline-item__content p {
        font-size: 14px;
    }
}


/* --- Полный CSS (включая все предыдущие секции) --- */
/* --- Базовые стили и сброс --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { line-height: 1.6; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; height: 100%; }
body { font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 16px; color: #333; background-color: #fff; min-height: 100%; display: flex; flex-direction: column; }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; }
button { cursor: pointer; border: none; background-color: transparent; }
a { text-decoration: none; color: #E53935; transition: color 0.3s ease; }
a:hover { color: #c62828; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { margin-bottom: 16px; font-weight: 700; line-height: 1.3; color: #212121; }
p { margin-bottom: 16px; }
/* --- Общие классы и лэйаут --- */
.wrapper { flex-grow: 1; width: 100%; overflow-x: hidden; }
.main { flex-grow: 1; }
.container { max-width: 1140px; margin-left: auto; margin-right: auto; padding-left: 15px; padding-right: 15px; }
.btn { display: inline-block; padding: 12px 24px; font-size: 16px; font-weight: 700; text-align: center; text-decoration: none; border: 1px solid transparent; border-radius: 4px; cursor: pointer; transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease; line-height: 1.2; }
.btn--primary { background-color: #E53935; color: #fff; border-color: #E53935; }
.btn--primary:hover { background-color: #c62828; border-color: #c62828; color: #fff; }
.btn--secondary { background-color: #333; color: #fff; border-color: #333; }
.btn--secondary:hover { background-color: #4d4d4d; border-color: #4d4d4d; color: #fff; }
.btn--outline { background-color: transparent; color: #E53935; border-color: #E53935; }
.btn--outline:hover { background-color: #E53935; color: #fff; }
.btn--large { padding: 16px 32px; font-size: 18px; }
@media (max-width: 767px) { .btn--large { padding: 14px 24px; font-size: 16px; } }
.logo { display: inline-block; } .logo img { display: block; }
.logo__text { font-size: 24px; font-weight: 700; color: #212121; text-transform: uppercase; }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
/* --- Общие стили для секций --- */
.section { padding-top: 60px; padding-bottom: 60px; }
.section--grey { background-color: #f9f9f9; }
.section__title { font-size: 36px; font-weight: 700; margin-bottom: 40px; color: #212121; }
/* --- Стили Шапки (Header) --- */
.header { padding: 16px 0; background-color: #fff; border-bottom: 1px solid #f0f0f0; position: sticky; top: 0; left: 0; width: 100%; z-index: 100; }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.header__logo { flex-shrink: 0; }
.header__phone { font-weight: 700; color: #333; white-space: nowrap; margin-left: 24px; }
.header__phone:hover { color: #E53935; }
.nav__list { display: flex; align-items: center; gap: 24px; }
.nav__link { color: #333; font-weight: 400; padding: 8px 0; position: relative; transition: color 0.3s ease; }
.nav__link:hover { color: #E53935; }
.nav__link::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background-color: #E53935; transition: width 0.3s ease; }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__toggle { display: none; width: 30px; height: 24px; position: relative; z-index: 110; margin-left: 16px; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content: ''; display: block; width: 100%; height: 3px; background-color: #333; position: absolute; left: 0; transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease; border-radius: 1px; }
.nav__toggle span { top: 50%; transform: translateY(-50%); } .nav__toggle span::before { top: -8px; } .nav__toggle span::after { top: 8px; }
/* --- Стили секции Hero --- */
.hero { position: relative; padding-top: 80px; padding-bottom: 80px; background-color: #333; background-image: url('../images/hero-background.jpg'); background-size: cover; background-position: center center; background-repeat: no-repeat; color: #fff; text-align: center; min-height: 60vh; display: flex; align-items: center; justify-content: center; }
.hero__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: 1; }
.hero__container { position: relative; z-index: 2; max-width: 800px; }
.hero__title { font-size: 48px; font-weight: 900; line-height: 1.2; margin-bottom: 24px; color: #fff; text-transform: uppercase; text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.hero__subtitle { font-size: 20px; margin-bottom: 32px; color: rgba(255, 255, 255, 0.9); text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.hero__btn--phone { color: #fff; border-color: #fff; }
.hero__btn--phone:hover { background-color: #fff; color: #E53935; border-color: #fff; }
/* --- Стили секции "Типы носителей" --- */
.media-types__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.media-card { background-color: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 24px; text-align: center; transition: box-shadow 0.3s ease, transform 0.3s ease; display: flex; flex-direction: column; height: 100%; }
.media-card:hover { box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); transform: translateY(-5px); }
.media-card__icon { margin-bottom: 20px; height: 80px; display: flex; justify-content: center; align-items: center; }
.media-card__icon svg { width: 64px; height: 64px; }
.media-card__title { font-size: 20px; font-weight: 700; color: #333; margin-bottom: 12px; min-height: 48px; display: flex; align-items: center; justify-content: center; flex-grow: 1; }
.media-card__description { font-size: 15px; color: #666; line-height: 1.5; margin-bottom: 16px; }
.media-card__link { font-size: 15px; font-weight: 700; color: #E53935; text-decoration: none; margin-top: auto; transition: color 0.3s ease; }
.media-card__link:hover { color: #c62828; }
/* --- Стили секции "Как мы работаем" --- */
.process { position: relative; }
.process__steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; position: relative; counter-reset: process-counter; }
.process-step { background-color: #fff; padding: 30px 24px; border-radius: 8px; text-align: center; position: relative; z-index: 2; border: 1px solid #e0e0e0; transition: box-shadow 0.3s ease; }
.process-step:hover { box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08); }
.process-step__number { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); width: 36px; height: 36px; background-color: #E53935; color: #fff; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 16px; font-weight: 700; line-height: 1; border: 3px solid #f9f9f9; }
.process-step__icon { margin-bottom: 16px; height: 48px; display: flex; justify-content: center; align-items: center; color: #E53935; }
.process-step__icon svg { width: 48px; height: 48px; stroke-width: 1.5; }
.process-step__title { font-size: 18px; font-weight: 700; color: #333; margin-top: 10px; margin-bottom: 10px; }
.process-step__description { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 0; }
.process .btn--secondary { margin-top: 40px; }
.process .btn--secondary:hover { background-color: #4d4d4d; border-color: #4d4d4d; color: #fff; }
/* --- Стили секции "Ваши выгоды" --- */
.benefits__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.benefit-item { display: flex; align-items: flex-start; gap: 20px; padding: 20px; background-color: #fff; border-radius: 8px; }
.benefit-item__icon { flex-shrink: 0; color: #E53935; margin-top: 3px; }
.benefit-item__icon svg { width: 48px; height: 48px; stroke-width: 1.5; }
.benefit-item__title { font-size: 20px; font-weight: 700; color: #333; margin-top: 0; margin-bottom: 8px; }
.benefit-item__description { font-size: 15px; color: #666; line-height: 1.6; margin-bottom: 0; }
/* --- Стили секции "Отзывы" --- */
.yandex-rating-widget { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 45px; }
.yandex-rating-widget__link { font-size: 14px; color: #555; text-decoration: underline; transition: color 0.3s ease; }
.yandex-rating-widget__link:hover { color: #E53935; text-decoration: none; }
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { background-color: #fff; border: 1px solid #e8e8e8; border-radius: 8px; padding: 30px; display: flex; flex-direction: column; height: 100%; box-shadow: 0 5px 15px rgba(0,0,0,0.07); }
.review-card__rating { font-size: 16px; color: #f5a623; margin-bottom: 15px; line-height: 1; }
.review-card__text { font-size: 15px; color: #333; line-height: 1.7; margin-bottom: 20px; font-style: normal; flex-grow: 1; position: relative; padding-left: 25px; padding-right: 0; }
.review-card__text::before { content: '“'; position: absolute; left: 0; top: -2px; font-size: 36px; color: #e8e8e8; line-height: 1; font-style: normal; }
.review-card__text::after { display: none; }
.review-card__footer { margin-top: auto; padding-top: 16px; border-top: 1px solid #f0f0f0; text-align: right; }
.review-card__author { font-style: normal; font-weight: 700; color: #555; font-size: 14px; }
/* --- Стили секции "Партнерство" --- */
.partnership__container { display: flex; align-items: center; gap: 40px; }
.partnership__content { flex: 1 1 55%; }
.partnership__image { flex: 1 1 45%; text-align: center; }
.partnership__image img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
.partnership__content ul { list-style: none; padding-left: 0; margin-top: 16px; margin-bottom: 24px; }
.partnership__content li { position: relative; padding-left: 24px; margin-bottom: 10px; color: #555; line-height: 1.6; }
.partnership__content li::before { content: '✔'; position: absolute; left: 0; top: 0; color: #E53935; font-weight: bold; font-size: 16px; }
.partnership__content .btn { margin-top: 16px; }
/* --- Стили секции CTA --- */
.cta { background-color: #E53935; color: #fff; padding-top: 50px; padding-bottom: 50px; text-align: center; }
.cta__container { max-width: 700px; }
.cta__title { font-size: 32px; font-weight: 700; line-height: 1.3; margin-bottom: 16px; color: #fff; }
.cta__text { font-size: 18px; line-height: 1.6; margin-bottom: 30px; color: rgba(255, 255, 255, 0.9); }
.cta .btn--primary { background-color: #fff; color: #E53935; border-color: #fff; }
.cta .btn--primary:hover { background-color: #f0f0f0; border-color: #f0f0f0; color: #c62828; }
/* --- Стили страницы 404 --- */
.error-page { padding-top: 80px; padding-bottom: 80px; min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.error-page__container { max-width: 600px; }
.error-page__icon { margin-bottom: 30px; color: #E53935; }
.error-page__icon svg { width: 80px; height: 80px; stroke-width: 1.5; display: inline-block; }
.error-page__subtitle { font-size: 36px; font-weight: 700; color: #333; margin-bottom: 16px; }
.error-page__text { font-size: 18px; color: #666; line-height: 1.7; margin-bottom: 30px; }
.error-page__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.error-page__btn { min-width: 200px; }
/* --- Стили секции "Контакты" --- */
.contacts__wrapper { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: flex-start; }
.contacts__map { border-radius: 8px; overflow: hidden; min-height: 241px; height: 100%; background-color: #e0e0e0; }
.contacts__map iframe { width: 100%; height: 100%; min-height: 241px; border: none; display: block; }
.contacts__info-title { font-size: 24px; font-weight: 700; margin-bottom: 24px; color: #333; }
.contacts__address { font-style: normal; margin-bottom: 20px; }
.contacts__address p { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; line-height: 1.5; color: #555; }
.contacts__address svg { flex-shrink: 0; margin-top: 3px; color: #E53935; }
.contacts__note { font-size: 14px; color: #777; margin-left: 26px; margin-top: -4px; margin-bottom: 16px; }
.contacts__item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 16px; color: #555; }
.contacts__item svg { flex-shrink: 0; color: #E53935; margin-top: 3px; }
.contacts__item a { color: #E53935; text-decoration: none; border-bottom: 1px dashed #E53935; transition: color 0.3s ease, border-color 0.3s ease; }
.contacts__item a:hover { color: #c62828; border-bottom-color: #c62828; }
.contacts__hours { display: flex; flex-direction: column; }
.contacts__hours-note { font-size: 13px; color: #777; margin-top: 4px; font-style: italic; }
.contacts__item--delivery { margin-top: 16px; }
/* --- Стили для страницы отдельной услуги --- */
.service-content { /* Основная секция с контентом */ }
.service-layout { /* Пока без сайдбара */ }
.service-article { max-width: 800px; margin-left: auto; margin-right: auto; }
.service-article h2 { font-size: 28px; margin-top: 40px; margin-bottom: 20px; color: #333; }
.service-article h3 { font-size: 22px; margin-top: 30px; margin-bottom: 16px; color: #444; }
.service-article p { line-height: 1.7; color: #555; }
.service-article ul, .service-article ol { margin-bottom: 20px; padding-left: 25px; color: #555; }
.service-article ul { list-style: none; }
.service-article ul li { position: relative; padding-left: 20px; margin-bottom: 10px; }
.service-article ul li::before { content: '›'; position: absolute; left: 0; top: 0; color: #E53935; font-weight: bold; font-size: 18px; line-height: 1.6; }
.service-article ol { list-style: none; counter-reset: ordered-list-counter; }
.service-article ol li { position: relative; padding-left: 35px; margin-bottom: 12px; counter-increment: ordered-list-counter; }
.service-article ol li::before { content: counter(ordered-list-counter) "."; position: absolute; left: 0; top: 0; color: #E53935; font-weight: bold; font-size: 16px; line-height: 1.6; min-width: 20px; text-align: right; padding-right: 10px; }
.service-article ol li strong { font-weight: 700; color: #333; }
.alert { padding: 20px; margin-top: 30px; margin-bottom: 30px; border-radius: 8px; border-style: solid; border-width: 1px; position: relative; padding-left: 50px; }
.alert::before { content: ''; position: absolute; left: 15px; top: 20px; width: 24px; height: 24px; background-repeat: no-repeat; background-position: center center; background-size: contain; }
.alert--warning { background-color: #fff8e1; border-color: #ffecb3; color: #6d5b0f; }
.alert--warning::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffb300' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-alert-triangle'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'%3E%3C/path%3E%3Cline x1='12' y1='9' x2='12' y2='13'%3E%3C/line%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'%3E%3C/line%3E%3C/svg%3E"); }
.alert h3 { margin-top: 0; margin-bottom: 10px; font-size: 18px; color: #c79100; }
.alert p { margin-bottom: 0; line-height: 1.6; color: #6d5b0f; }
.service-article__cta { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; }
/* --- Стили для страницы "Цены" --- */
.pricing-factors { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; margin-bottom: 30px; }
.pricing-factor { text-align: center; padding: 20px; background-color: #fff; border-radius: 8px; border: 1px solid #eee; }
.pricing-factor__icon { margin-bottom: 16px; color: #E53935; }
.pricing-factor__icon svg { width: 48px; height: 48px; stroke-width: 1.5; display: inline-block; }
.pricing-factor__title { font-size: 18px; font-weight: 700; margin-top: 0; margin-bottom: 8px; color: #333; }
.pricing-factor p { font-size: 14px; color: #666; line-height: 1.5; margin-bottom: 0; }
.price-list { /* Дополнительные стили для секции, если нужны */ }
.price-table { background-color: #fff; border-radius: 8px; overflow: hidden; border: 1px solid #e0e0e0; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.price-table__row { display: grid; grid-template-columns: 3fr 1fr; border-bottom: 1px solid #f0f0f0; transition: background-color 0.2s ease; }
.price-table__row:last-child { border-bottom: none; }
.price-table__row:hover { background-color: #f9f9f9; }
.price-table__col { padding: 16px 20px; font-size: 15px; color: #555; display: flex; align-items: center; gap: 10px; }
.price-table__col--service { font-weight: 500; color: #333; }
.price-table__col--service svg { width: 20px; height: 20px; flex-shrink: 0; color: #E53935; stroke-width: 1.5; }
.price-table__col--price { font-weight: 700; color: #E53935; justify-content: flex-end; text-align: right; white-space: nowrap; }
/* --- Стили для страницы "Процесс работы" --- */
.process-details { /* Стили для основной секции контента */ }
.process-timeline { max-width: 800px; margin: 0 auto; position: relative; padding: 20px 0; }
.process-timeline::before { content: ''; position: absolute; top: 0; left: calc(16px + 30px); transform: translateX(-50%); height: 100%; width: 3px; background-color: #e0e0e0; z-index: 1; }
.timeline-item { display: flex; align-items: flex-start; gap: 30px; position: relative; z-index: 2; margin-bottom: 40px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item__icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background-color: #E53935; color: #fff; display: flex; justify-content: center; align-items: center; position: relative; margin-left: calc(16px + 30px - 16px); }
.timeline-item__icon svg { width: 20px; height: 20px; stroke-width: 2; }
.timeline-item__content { background-color: #fff; padding: 20px; border-radius: 8px; border: 1px solid #e8e8e8; box-shadow: 0 4px 10px rgba(0,0,0,0.05); flex-grow: 1; }
.timeline-item__title { font-size: 20px; font-weight: 700; margin-top: 0; margin-bottom: 10px; color: #333; }
.timeline-item__content p { font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 0; }
.timeline-item__content p a { font-weight: 500; }
/* --- Адаптивность --- */
@media (max-width: 991px) {
    .section { padding-top: 50px; padding-bottom: 50px; }
    .section__title { font-size: 32px; margin-bottom: 30px; }
    .hero { padding-top: 60px; padding-bottom: 60px; min-height: 50vh; }
    .hero__title { font-size: 40px; } .hero__subtitle { font-size: 18px; }
    .media-types__grid { gap: 20px; }
    .media-card__title { font-size: 18px; min-height: 44px; }
    .media-card__description { font-size: 14px; } .media-card__link { font-size: 14px; }
    .media-card__icon svg { width: 56px; height: 56px; }
    .process__steps { gap: 20px; }
    .process-step { padding: 24px 20px; } .process-step__title { font-size: 17px; }
    .benefits__grid { gap: 24px; }
    .benefit-item__title { font-size: 18px; } .benefit-item__description { font-size: 14px; }
    .benefit-item__icon svg { width: 44px; height: 44px; }
    .reviews__grid { gap: 20px; }
    .partnership__container { gap: 30px; }
    .partnership__content { flex-basis: 60%; } .partnership__image { flex-basis: 40%; }
    .contacts__wrapper { gap: 30px; } .contacts__info-title { font-size: 22px; }
    .contacts__map { height: 300px; min-height: 241px; } .contacts__map iframe { min-height: 241px; }
}
@media (max-width: 767px) {
    .section { padding-top: 40px; padding-bottom: 40px; }
    .section__title { font-size: 28px; margin-bottom: 24px; }
    .nav__toggle { display: block; } .header__phone { display: none; }
    .nav__list { display: none; position: absolute; top: 100%; left: 0; width: 100%; background-color: #fff; flex-direction: column; padding: 16px; box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); border-top: 1px solid #f0f0f0; gap: 0; }
    .nav__list.is-active { display: flex; }
    .nav__item { width: 100%; border-bottom: 1px solid #f0f0f0; } .nav__item:last-child { border-bottom: none; }
    .nav__link { display: block; padding: 12px 0; text-align: center; } .nav__link::after { display: none; }
    .nav__toggle.is-active span { transform: rotate(45deg); top: 50%; transform-origin: center; }
    .nav__toggle.is-active span::before { top: 0; opacity: 0; transform: translateX(-100%); }
    .nav__toggle.is-active span::after { top: 0; transform: rotate(-90deg); transform-origin: center; }
    .hero { padding-top: 40px; padding-bottom: 40px; min-height: auto; text-align: left; }
    .hero__container { text-align: left; }
    .hero__title { font-size: 32px; margin-bottom: 16px; } .hero__subtitle { font-size: 16px; margin-bottom: 24px; }
    .hero__actions { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hero__btn { width: 100%; text-align: center; }
    .media-types__grid { grid-template-columns: 1fr; gap: 16px; }
    .media-card { padding: 20px; } .media-card__title { min-height: auto; }
    .media-card__icon svg { width: 48px; height: 48px; }
    .process__steps { grid-template-columns: 1fr; gap: 40px; }
    .process .btn--secondary { margin-top: 30px; }
    .benefits__grid { grid-template-columns: 1fr; gap: 20px; }
    .benefit-item { padding: 16px; gap: 16px; }
    .benefit-item__icon svg { width: 40px; height: 40px; }
    .reviews__grid { grid-template-columns: 1fr; gap: 16px; }
    .review-card { padding: 24px; }
    .review-card__text { font-size: 14px; padding-left: 22px; }
    .review-card__text::before { font-size: 32px; }
    .review-card__footer { text-align: left; }
    .partnership__container { flex-direction: column; gap: 30px; }
    .partnership__content { flex-basis: auto; order: 2; text-align: center; }
    .partnership__image { flex-basis: auto; order: 1; max-width: 350px; margin-left: auto; margin-right: auto; }
    .partnership__content .section__title { text-align: center; }
    .partnership__content ul { text-align: left; display: inline-block; margin-left: auto; margin-right: auto; }
    .partnership__content .btn { width: 100%; max-width: 300px; }
    .cta { padding-top: 40px; padding-bottom: 40px; }
    .cta__title { font-size: 28px; }
    .cta__text { font-size: 16px; margin-bottom: 24px; }
    .cta__btn { width: 100%; max-width: 320px; }
    .error-page { padding-top: 50px; padding-bottom: 50px; }
    .error-page__icon svg { width: 60px; height: 60px; }
    .error-page__subtitle { font-size: 28px; }
    .error-page__text { font-size: 16px; }
    .error-page__actions { flex-direction: column; align-items: center; gap: 12px; }
    .error-page__btn { width: 100%; max-width: 300px; min-width: auto; }
    .contacts__wrapper { grid-template-columns: 1fr; gap: 30px; }
    .contacts__map { height: 300px; min-height: 241px; order: 2; }
    .contacts__map iframe { min-height: 241px; }
    .contacts__info { order: 1; text-align: center; }
    .contacts__address p, .contacts__item { justify-content: center; text-align: left; }
    .contacts__note { text-align: center; margin-left: 0; }
    .contacts__item { align-items: center; } .contacts__item svg { margin-top: 0; }
    .contacts__hours { align-items: center; }
    .service-article h2 { font-size: 24px; }
    .service-article h3 { font-size: 20px; }
    .service-article__cta { flex-direction: column; }
    .service-article__cta .btn { width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
    .pricing-factors { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
    .price-table__row { grid-template-columns: 1fr; gap: 5px; padding-top: 12px; padding-bottom: 12px; }
    .price-table__col { padding: 5px 16px; font-size: 14px; }
    .price-table__col--price { justify-content: flex-start; text-align: left; padding-left: 34px; padding-top: 0; }
    .process-timeline::before { left: 16px; transform: none; }
    .timeline-item { gap: 15px; margin-bottom: 30px; }
    .timeline-item__icon { margin-left: 0; }
    .timeline-item__title { font-size: 18px; }
    .timeline-item__content p { font-size: 14px; }
}
@media (max-width: 575px) {
    .header { padding: 12px 0; }
    .footer { padding: 32px 0 16px; }
    .footer__top { gap: 24px; padding-bottom: 24px; margin-bottom: 24px; }
    .footer__bottom { padding-top: 16px; }
     .hero__title { font-size: 28px; }
}
/* --- Стили Подвала (Footer) --- */
.footer { flex-shrink: 0; background-color: #212121; color: #e0e0e0; padding: 48px 0 24px; font-size: 14px; }
.footer a { color: #e0e0e0; } .footer a:hover { color: #E53935; }
.footer__top { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid #424242; }
.footer__title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer__list li { margin-bottom: 8px; }
.footer__address { font-style: normal; line-height: 1.7; margin-bottom: 16px; }
.socials { display: flex; flex-wrap: wrap; gap: 12px; }
.socials a { display: flex; justify-content: center; align-items: center; width: 36px; height: 36px; border: 1px solid #616161; border-radius: 50%; font-size: 16px; transition: background-color 0.3s ease, border-color 0.3s ease; }
.socials a:hover { background-color: #E53935; border-color: #E53935; color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; padding-top: 24px; font-size: 13px; color: #bdbdbd; }
.footer__copy { margin-bottom: 0; }
.footer__legal { margin-bottom: 0; max-width: 500px; text-align: right; }
.footer__credits { margin-bottom: 0; width: 100%; text-align: center; margin-top: 8px; font-size: 12px; color: #757575; }
.footer__credits a { color: #9e9e9e; } .footer__credits a:hover { color: #E53935; }
@media (max-width: 767px) {
    .footer__bottom { flex-direction: column; align-items: center; text-align: center; }
    .footer__legal { text-align: center; max-width: none; }
    .footer__credits { margin-top: 16px; }
}
/* --- Стили для страницы "О нас" --- */

.about-content {
    /* Стили для основной секции контента */
}

.about-layout {
    display: flex; /* Располагаем текст и картинку рядом */
    align-items: flex-start; /* Выравниваем по верху */
    gap: 40px; /* Расстояние между блоками */
}

.about-text {
    flex: 1 1 60%; /* Текстовый блок занимает больше места */
}

.about-image {
    flex: 1 1 40%; /* Блок с картинкой */
    margin-top: 10px; /* Небольшой отступ сверху для выравнивания с текстом */
}

.about-image img {
    width: 100%; /* Картинка растягивается на ширину блока */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 12px; /* Отступ под картинкой */
}

.about-image__caption {
    font-size: 14px;
    color: #777;
    text-align: center;
    font-style: italic;
    margin-bottom: 0;
}

/* Стили для заголовков и списков внутри .about-text */
.about-text h2 {
    font-size: 28px;
    margin-top: 0; /* Убираем верхний отступ у первого заголовка */
    margin-bottom: 20px;
    color: #333;
}

.about-text h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #444;
}

.about-text p {
    line-height: 1.7;
    color: #555;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
    margin-top: 16px;
    margin-bottom: 20px;
}
.about-text ul li {
    position: relative;
    padding-left: 25px; /* Место для маркера */
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}
.about-text ul li::before {
    content: '✔'; /* Маркер-галочка */
    position: absolute;
    left: 0;
    top: 0;
    color: #E53935; /* Красный цвет маркера */
    font-weight: bold;
    font-size: 16px;
}
/* Стили для тега <strong> внутри списков */
.about-text ul li strong {
    font-weight: 700;
    color: #333;
}


/* --- Адаптивность для страницы "О нас" --- */
@media (max-width: 991px) {
    .about-layout {
        gap: 30px;
    }
     .about-text h2 { font-size: 26px; }
     .about-text h3 { font-size: 20px; }
}

@media (max-width: 767px) {
    .about-layout {
        flex-direction: column; /* Блоки друг под другом */
    }
    .about-text {
        flex-basis: auto; /* Сбрасываем базис */
        order: 2; /* Текст после картинки */
    }
    .about-image {
        flex-basis: auto;
        order: 1; /* Картинка первой */
        max-width: 400px; /* Ограничиваем ширину картинки */
        margin: 0 auto 30px; /* Центрируем и добавляем отступ снизу */
    }
     .about-text h2 { font-size: 24px; }
     .about-text h3 { font-size: 18px; }
}


/* --- Полный CSS (включая все предыдущие секции) --- */
/* --- Базовые стили и сброс --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { line-height: 1.6; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; height: 100%; }
body { font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 16px; color: #333; background-color: #fff; min-height: 100%; display: flex; flex-direction: column; }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; }
button { cursor: pointer; border: none; background-color: transparent; }
a { text-decoration: none; color: #E53935; transition: color 0.3s ease; }
a:hover { color: #c62828; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { margin-bottom: 16px; font-weight: 700; line-height: 1.3; color: #212121; }
p { margin-bottom: 16px; }
/* --- Общие классы и лэйаут --- */
.wrapper { flex-grow: 1; width: 100%; overflow-x: hidden; }
.main { flex-grow: 1; }
.container { max-width: 1140px; margin-left: auto; margin-right: auto; padding-left: 15px; padding-right: 15px; }
.btn { display: inline-block; padding: 12px 24px; font-size: 16px; font-weight: 700; text-align: center; text-decoration: none; border: 1px solid transparent; border-radius: 4px; cursor: pointer; transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease; line-height: 1.2; }
.btn--primary { background-color: #E53935; color: #fff; border-color: #E53935; }
.btn--primary:hover { background-color: #c62828; border-color: #c62828; color: #fff; }
.btn--secondary { background-color: #333; color: #fff; border-color: #333; }
.btn--secondary:hover { background-color: #4d4d4d; border-color: #4d4d4d; color: #fff; }
.btn--outline { background-color: transparent; color: #E53935; border-color: #E53935; }
.btn--outline:hover { background-color: #E53935; color: #fff; }
.btn--large { padding: 16px 32px; font-size: 18px; }
@media (max-width: 767px) { .btn--large { padding: 14px 24px; font-size: 16px; } }
.logo { display: inline-block; } .logo img { display: block; }
.logo__text { font-size: 24px; font-weight: 700; color: #212121; text-transform: uppercase; }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
/* --- Общие стили для секций --- */
.section { padding-top: 60px; padding-bottom: 60px; }
.section--grey { background-color: #f9f9f9; }
.section__title { font-size: 36px; font-weight: 700; margin-bottom: 40px; color: #212121; }
/* --- Стили Шапки (Header) --- */
.header { padding: 16px 0; background-color: #fff; border-bottom: 1px solid #f0f0f0; position: sticky; top: 0; left: 0; width: 100%; z-index: 100; }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.header__logo { flex-shrink: 0; }
.header__phone { font-weight: 700; color: #333; white-space: nowrap; margin-left: 24px; }
.header__phone:hover { color: #E53935; }
.nav__list { display: flex; align-items: center; gap: 24px; }
.nav__link { color: #333; font-weight: 400; padding: 8px 0; position: relative; transition: color 0.3s ease; }
.nav__link:hover { color: #E53935; }
.nav__link::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background-color: #E53935; transition: width 0.3s ease; }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__toggle { display: none; width: 30px; height: 24px; position: relative; z-index: 110; margin-left: 16px; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content: ''; display: block; width: 100%; height: 3px; background-color: #333; position: absolute; left: 0; transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease; border-radius: 1px; }
.nav__toggle span { top: 50%; transform: translateY(-50%); } .nav__toggle span::before { top: -8px; } .nav__toggle span::after { top: 8px; }
/* --- Стили секции Hero --- */
.hero { position: relative; padding-top: 80px; padding-bottom: 80px; background-color: #333; background-image: url('../images/hero-background.jpg'); background-size: cover; background-position: center center; background-repeat: no-repeat; color: #fff; text-align: center; min-height: 60vh; display: flex; align-items: center; justify-content: center; }
.hero__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: 1; }
.hero__container { position: relative; z-index: 2; max-width: 800px; }
.hero__title { font-size: 48px; font-weight: 900; line-height: 1.2; margin-bottom: 24px; color: #fff; text-transform: uppercase; text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.hero__subtitle { font-size: 20px; margin-bottom: 32px; color: rgba(255, 255, 255, 0.9); text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.hero__btn--phone { color: #fff; border-color: #fff; }
.hero__btn--phone:hover { background-color: #fff; color: #E53935; border-color: #fff; }
/* --- Стили секции "Типы носителей" --- */
.media-types__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.media-card { background-color: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 24px; text-align: center; transition: box-shadow 0.3s ease, transform 0.3s ease; display: flex; flex-direction: column; height: 100%; }
.media-card:hover { box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); transform: translateY(-5px); }
.media-card__icon { margin-bottom: 20px; height: 80px; display: flex; justify-content: center; align-items: center; }
.media-card__icon svg { width: 64px; height: 64px; }
.media-card__title { font-size: 20px; font-weight: 700; color: #333; margin-bottom: 12px; min-height: 48px; display: flex; align-items: center; justify-content: center; flex-grow: 1; }
.media-card__description { font-size: 15px; color: #666; line-height: 1.5; margin-bottom: 16px; }
.media-card__link { font-size: 15px; font-weight: 700; color: #E53935; text-decoration: none; margin-top: auto; transition: color 0.3s ease; }
.media-card__link:hover { color: #c62828; }
/* --- Стили секции "Как мы работаем" --- */
.process { position: relative; }
.process__steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; position: relative; counter-reset: process-counter; }
.process-step { background-color: #fff; padding: 30px 24px; border-radius: 8px; text-align: center; position: relative; z-index: 2; border: 1px solid #e0e0e0; transition: box-shadow 0.3s ease; }
.process-step:hover { box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08); }
.process-step__number { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); width: 36px; height: 36px; background-color: #E53935; color: #fff; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 16px; font-weight: 700; line-height: 1; border: 3px solid #f9f9f9; }
.process-step__icon { margin-bottom: 16px; height: 48px; display: flex; justify-content: center; align-items: center; color: #E53935; }
.process-step__icon svg { width: 48px; height: 48px; stroke-width: 1.5; }
.process-step__title { font-size: 18px; font-weight: 700; color: #333; margin-top: 10px; margin-bottom: 10px; }
.process-step__description { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 0; }
.process .btn--secondary { margin-top: 40px; }
.process .btn--secondary:hover { background-color: #4d4d4d; border-color: #4d4d4d; color: #fff; }
/* --- Стили секции "Ваши выгоды" --- */
.benefits__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.benefit-item { display: flex; align-items: flex-start; gap: 20px; padding: 20px; background-color: #fff; border-radius: 8px; }
.benefit-item__icon { flex-shrink: 0; color: #E53935; margin-top: 3px; }
.benefit-item__icon svg { width: 48px; height: 48px; stroke-width: 1.5; }
.benefit-item__title { font-size: 20px; font-weight: 700; color: #333; margin-top: 0; margin-bottom: 8px; }
.benefit-item__description { font-size: 15px; color: #666; line-height: 1.6; margin-bottom: 0; }
/* --- Стили секции "Отзывы" --- */
.yandex-rating-widget { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 45px; }
.yandex-rating-widget__link { font-size: 14px; color: #555; text-decoration: underline; transition: color 0.3s ease; }
.yandex-rating-widget__link:hover { color: #E53935; text-decoration: none; }
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { background-color: #fff; border: 1px solid #e8e8e8; border-radius: 8px; padding: 30px; display: flex; flex-direction: column; height: 100%; box-shadow: 0 5px 15px rgba(0,0,0,0.07); }
.review-card__rating { font-size: 16px; color: #f5a623; margin-bottom: 15px; line-height: 1; }
.review-card__text { font-size: 15px; color: #333; line-height: 1.7; margin-bottom: 20px; font-style: normal; flex-grow: 1; position: relative; padding-left: 25px; padding-right: 0; }
.review-card__text::before { content: '“'; position: absolute; left: 0; top: -2px; font-size: 36px; color: #e8e8e8; line-height: 1; font-style: normal; }
.review-card__text::after { display: none; }
.review-card__footer { margin-top: auto; padding-top: 16px; border-top: 1px solid #f0f0f0; text-align: right; }
.review-card__author { font-style: normal; font-weight: 700; color: #555; font-size: 14px; }
/* --- Стили секции "Партнерство" --- */
.partnership__container { display: flex; align-items: center; gap: 40px; }
.partnership__content { flex: 1 1 55%; }
.partnership__image { flex: 1 1 45%; text-align: center; }
.partnership__image img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
.partnership__content ul { list-style: none; padding-left: 0; margin-top: 16px; margin-bottom: 24px; }
.partnership__content li { position: relative; padding-left: 24px; margin-bottom: 10px; color: #555; line-height: 1.6; }
.partnership__content li::before { content: '✔'; position: absolute; left: 0; top: 0; color: #E53935; font-weight: bold; font-size: 16px; }
.partnership__content .btn { margin-top: 16px; }
/* --- Стили секции CTA --- */
.cta { background-color: #E53935; color: #fff; padding-top: 50px; padding-bottom: 50px; text-align: center; }
.cta__container { max-width: 700px; }
.cta__title { font-size: 32px; font-weight: 700; line-height: 1.3; margin-bottom: 16px; color: #fff; }
.cta__text { font-size: 18px; line-height: 1.6; margin-bottom: 30px; color: rgba(255, 255, 255, 0.9); }
.cta .btn--primary { background-color: #fff; color: #E53935; border-color: #fff; }
.cta .btn--primary:hover { background-color: #f0f0f0; border-color: #f0f0f0; color: #c62828; }
/* --- Стили страницы 404 --- */
.error-page { padding-top: 80px; padding-bottom: 80px; min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.error-page__container { max-width: 600px; }
.error-page__icon { margin-bottom: 30px; color: #E53935; }
.error-page__icon svg { width: 80px; height: 80px; stroke-width: 1.5; display: inline-block; }
.error-page__subtitle { font-size: 36px; font-weight: 700; color: #333; margin-bottom: 16px; }
.error-page__text { font-size: 18px; color: #666; line-height: 1.7; margin-bottom: 30px; }
.error-page__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.error-page__btn { min-width: 200px; }
/* --- Стили секции "Контакты" --- */
.contacts__wrapper { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: flex-start; }
.contacts__map { border-radius: 8px; overflow: hidden; min-height: 241px; height: 100%; background-color: #e0e0e0; }
.contacts__map iframe { width: 100%; height: 100%; min-height: 241px; border: none; display: block; }
.contacts__info-title { font-size: 24px; font-weight: 700; margin-bottom: 24px; color: #333; }
.contacts__address { font-style: normal; margin-bottom: 20px; }
.contacts__address p { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; line-height: 1.5; color: #555; }
.contacts__address svg { flex-shrink: 0; margin-top: 3px; color: #E53935; }
.contacts__note { font-size: 14px; color: #777; margin-left: 26px; margin-top: -4px; margin-bottom: 16px; }
.contacts__item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 16px; color: #555; }
.contacts__item svg { flex-shrink: 0; color: #E53935; margin-top: 3px; }
.contacts__item a { color: #E53935; text-decoration: none; border-bottom: 1px dashed #E53935; transition: color 0.3s ease, border-color 0.3s ease; }
.contacts__item a:hover { color: #c62828; border-bottom-color: #c62828; }
.contacts__hours { display: flex; flex-direction: column; }
.contacts__hours-note { font-size: 13px; color: #777; margin-top: 4px; font-style: italic; }
.contacts__item--delivery { margin-top: 16px; }
/* --- Стили для страницы отдельной услуги --- */
.service-content { /* Основная секция с контентом */ }
.service-layout { /* Пока без сайдбара */ }
.service-article { max-width: 800px; margin-left: auto; margin-right: auto; }
.service-article h2 { font-size: 28px; margin-top: 40px; margin-bottom: 20px; color: #333; }
.service-article h3 { font-size: 22px; margin-top: 30px; margin-bottom: 16px; color: #444; }
.service-article p { line-height: 1.7; color: #555; }
.service-article ul, .service-article ol { margin-bottom: 20px; padding-left: 25px; color: #555; }
.service-article ul { list-style: none; }
.service-article ul li { position: relative; padding-left: 20px; margin-bottom: 10px; }
.service-article ul li::before { content: '›'; position: absolute; left: 0; top: 0; color: #E53935; font-weight: bold; font-size: 18px; line-height: 1.6; }
.service-article ol { list-style: none; counter-reset: ordered-list-counter; }
.service-article ol li { position: relative; padding-left: 35px; margin-bottom: 12px; counter-increment: ordered-list-counter; }
.service-article ol li::before { content: counter(ordered-list-counter) "."; position: absolute; left: 0; top: 0; color: #E53935; font-weight: bold; font-size: 16px; line-height: 1.6; min-width: 20px; text-align: right; padding-right: 10px; }
.service-article ol li strong { font-weight: 700; color: #333; }
.alert { padding: 20px; margin-top: 30px; margin-bottom: 30px; border-radius: 8px; border-style: solid; border-width: 1px; position: relative; padding-left: 50px; }
.alert::before { content: ''; position: absolute; left: 15px; top: 20px; width: 24px; height: 24px; background-repeat: no-repeat; background-position: center center; background-size: contain; }
.alert--warning { background-color: #fff8e1; border-color: #ffecb3; color: #6d5b0f; }
.alert--warning::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffb300' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-alert-triangle'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'%3E%3C/path%3E%3Cline x1='12' y1='9' x2='12' y2='13'%3E%3C/line%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'%3E%3C/line%3E%3C/svg%3E"); }
.alert h3 { margin-top: 0; margin-bottom: 10px; font-size: 18px; color: #c79100; }
.alert p { margin-bottom: 0; line-height: 1.6; color: #6d5b0f; }
.service-article__cta { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; }
/* --- Стили для страницы "Цены" --- */
.pricing-factors { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; margin-bottom: 30px; }
.pricing-factor { text-align: center; padding: 20px; background-color: #fff; border-radius: 8px; border: 1px solid #eee; }
.pricing-factor__icon { margin-bottom: 16px; color: #E53935; }
.pricing-factor__icon svg { width: 48px; height: 48px; stroke-width: 1.5; display: inline-block; }
.pricing-factor__title { font-size: 18px; font-weight: 700; margin-top: 0; margin-bottom: 8px; color: #333; }
.pricing-factor p { font-size: 14px; color: #666; line-height: 1.5; margin-bottom: 0; }
.price-list { /* Дополнительные стили для секции, если нужны */ }
.price-table { background-color: #fff; border-radius: 8px; overflow: hidden; border: 1px solid #e0e0e0; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.price-table__row { display: grid; grid-template-columns: 3fr 1fr; border-bottom: 1px solid #f0f0f0; transition: background-color 0.2s ease; }
.price-table__row:last-child { border-bottom: none; }
.price-table__row:hover { background-color: #f9f9f9; }
.price-table__col { padding: 16px 20px; font-size: 15px; color: #555; display: flex; align-items: center; gap: 10px; }
.price-table__col--service { font-weight: 500; color: #333; }
.price-table__col--service svg { width: 20px; height: 20px; flex-shrink: 0; color: #E53935; stroke-width: 1.5; }
.price-table__col--price { font-weight: 700; color: #E53935; justify-content: flex-end; text-align: right; white-space: nowrap; }
/* --- Стили для страницы "Процесс работы" --- */
.process-details { /* Стили для основной секции контента */ }
.process-timeline { max-width: 800px; margin: 0 auto; position: relative; padding: 20px 0; }
.process-timeline::before { content: ''; position: absolute; top: 0; left: calc(16px + 30px); transform: translateX(-50%); height: 100%; width: 3px; background-color: #e0e0e0; z-index: 1; }
.timeline-item { display: flex; align-items: flex-start; gap: 30px; position: relative; z-index: 2; margin-bottom: 40px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item__icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background-color: #E53935; color: #fff; display: flex; justify-content: center; align-items: center; position: relative; margin-left: calc(16px + 30px - 16px); }
.timeline-item__icon svg { width: 20px; height: 20px; stroke-width: 2; }
.timeline-item__content { background-color: #fff; padding: 20px; border-radius: 8px; border: 1px solid #e8e8e8; box-shadow: 0 4px 10px rgba(0,0,0,0.05); flex-grow: 1; }
.timeline-item__title { font-size: 20px; font-weight: 700; margin-top: 0; margin-bottom: 10px; color: #333; }
.timeline-item__content p { font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 0; }
.timeline-item__content p a { font-weight: 500; }
/* --- Стили для страницы "О нас" --- */
.about-content { /* Стили для основной секции контента */ }
.about-layout { display: flex; align-items: flex-start; gap: 40px; }
.about-text { flex: 1 1 60%; }
.about-image { flex: 1 1 40%; margin-top: 10px; }
.about-image img { width: 100%; height: auto; border-radius: 8px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); margin-bottom: 12px; }
.about-image__caption { font-size: 14px; color: #777; text-align: center; font-style: italic; margin-bottom: 0; }
.about-text h2 { font-size: 28px; margin-top: 0; margin-bottom: 20px; color: #333; }
.about-text h3 { font-size: 22px; margin-top: 30px; margin-bottom: 16px; color: #444; }
.about-text p { line-height: 1.7; color: #555; }
.about-text ul { list-style: none; padding-left: 0; margin-top: 16px; margin-bottom: 20px; }
.about-text ul li { position: relative; padding-left: 25px; margin-bottom: 10px; color: #555; line-height: 1.6; }
.about-text ul li::before { content: '✔'; position: absolute; left: 0; top: 0; color: #E53935; font-weight: bold; font-size: 16px; }
.about-text ul li strong { font-weight: 700; color: #333; }
/* --- Адаптивность --- */
@media (max-width: 991px) {
    .section { padding-top: 50px; padding-bottom: 50px; }
    .section__title { font-size: 32px; margin-bottom: 30px; }
    .hero { padding-top: 60px; padding-bottom: 60px; min-height: 50vh; }
    .hero__title { font-size: 40px; } .hero__subtitle { font-size: 18px; }
    .media-types__grid { gap: 20px; }
    .media-card__title { font-size: 18px; min-height: 44px; }
    .media-card__description { font-size: 14px; } .media-card__link { font-size: 14px; }
    .media-card__icon svg { width: 56px; height: 56px; }
    .process__steps { gap: 20px; }
    .process-step { padding: 24px 20px; } .process-step__title { font-size: 17px; }
    .benefits__grid { gap: 24px; }
    .benefit-item__title { font-size: 18px; } .benefit-item__description { font-size: 14px; }
    .benefit-item__icon svg { width: 44px; height: 44px; }
    .reviews__grid { gap: 20px; }
    .partnership__container { gap: 30px; }
    .partnership__content { flex-basis: 60%; } .partnership__image { flex-basis: 40%; }
    .contacts__wrapper { gap: 30px; } .contacts__info-title { font-size: 22px; }
    .contacts__map { height: 300px; min-height: 241px; } .contacts__map iframe { min-height: 241px; }
    .about-layout { gap: 30px; }
    .about-text h2 { font-size: 26px; } .about-text h3 { font-size: 20px; }
}
@media (max-width: 767px) {
    .section { padding-top: 40px; padding-bottom: 40px; }
    .section__title { font-size: 28px; margin-bottom: 24px; }
    .nav__toggle { display: block; } .header__phone { display: none; }
    .nav__list { display: none; position: absolute; top: 100%; left: 0; width: 100%; background-color: #fff; flex-direction: column; padding: 16px; box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); border-top: 1px solid #f0f0f0; gap: 0; }
    .nav__list.is-active { display: flex; }
    .nav__item { width: 100%; border-bottom: 1px solid #f0f0f0; } .nav__item:last-child { border-bottom: none; }
    .nav__link { display: block; padding: 12px 0; text-align: center; } .nav__link::after { display: none; }
    .nav__toggle.is-active span { transform: rotate(45deg); top: 50%; transform-origin: center; }
    .nav__toggle.is-active span::before { top: 0; opacity: 0; transform: translateX(-100%); }
    .nav__toggle.is-active span::after { top: 0; transform: rotate(-90deg); transform-origin: center; }
    .hero { padding-top: 40px; padding-bottom: 40px; min-height: auto; text-align: left; }
    .hero__container { text-align: left; }
    .hero__title { font-size: 32px; margin-bottom: 16px; } .hero__subtitle { font-size: 16px; margin-bottom: 24px; }
    .hero__actions { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hero__btn { width: 100%; text-align: center; }
    .media-types__grid { grid-template-columns: 1fr; gap: 16px; }
    .media-card { padding: 20px; } .media-card__title { min-height: auto; }
    .media-card__icon svg { width: 48px; height: 48px; }
    .process__steps { grid-template-columns: 1fr; gap: 40px; }
    .process .btn--secondary { margin-top: 30px; }
    .benefits__grid { grid-template-columns: 1fr; gap: 20px; }
    .benefit-item { padding: 16px; gap: 16px; }
    .benefit-item__icon svg { width: 40px; height: 40px; }
    .reviews__grid { grid-template-columns: 1fr; gap: 16px; }
    .review-card { padding: 24px; }
    .review-card__text { font-size: 14px; padding-left: 22px; }
    .review-card__text::before { font-size: 32px; }
    .review-card__footer { text-align: left; }
    .partnership__container { flex-direction: column; gap: 30px; }
    .partnership__content { flex-basis: auto; order: 2; text-align: center; }
    .partnership__image { flex-basis: auto; order: 1; max-width: 350px; margin-left: auto; margin-right: auto; }
    .partnership__content .section__title { text-align: center; }
    .partnership__content ul { text-align: left; display: inline-block; margin-left: auto; margin-right: auto; }
    .partnership__content .btn { width: 100%; max-width: 300px; }
    .cta { padding-top: 40px; padding-bottom: 40px; }
    .cta__title { font-size: 28px; }
    .cta__text { font-size: 16px; margin-bottom: 24px; }
    .cta__btn { width: 100%; max-width: 320px; }
    .error-page { padding-top: 50px; padding-bottom: 50px; }
    .error-page__icon svg { width: 60px; height: 60px; }
    .error-page__subtitle { font-size: 28px; }
    .error-page__text { font-size: 16px; }
    .error-page__actions { flex-direction: column; align-items: center; gap: 12px; }
    .error-page__btn { width: 100%; max-width: 300px; min-width: auto; }
    .contacts__wrapper { grid-template-columns: 1fr; gap: 30px; }
    .contacts__map { height: 300px; min-height: 241px; order: 2; }
    .contacts__map iframe { min-height: 241px; }
    .contacts__info { order: 1; text-align: center; }
    .contacts__address p, .contacts__item { justify-content: center; text-align: left; }
    .contacts__note { text-align: center; margin-left: 0; }
    .contacts__item { align-items: center; } .contacts__item svg { margin-top: 0; }
    .contacts__hours { align-items: center; }
    .service-article h2 { font-size: 24px; }
    .service-article h3 { font-size: 20px; }
    .service-article__cta { flex-direction: column; }
    .service-article__cta .btn { width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
    .pricing-factors { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
    .price-table__row { grid-template-columns: 1fr; gap: 5px; padding-top: 12px; padding-bottom: 12px; }
    .price-table__col { padding: 5px 16px; font-size: 14px; }
    .price-table__col--price { justify-content: flex-start; text-align: left; padding-left: 34px; padding-top: 0; }
    .process-timeline::before { left: 16px; transform: none; }
    .timeline-item { gap: 15px; margin-bottom: 30px; }
    .timeline-item__icon { margin-left: 0; }
    .timeline-item__title { font-size: 18px; }
    .timeline-item__content p { font-size: 14px; }
    .about-layout { flex-direction: column; }
    .about-text { flex-basis: auto; order: 2; }
    .about-image { flex-basis: auto; order: 1; max-width: 400px; margin: 0 auto 30px; }
    .about-text h2 { font-size: 24px; } .about-text h3 { font-size: 18px; }
}
@media (max-width: 575px) {
    .header { padding: 12px 0; }
    .footer { padding: 32px 0 16px; }
    .footer__top { gap: 24px; padding-bottom: 24px; margin-bottom: 24px; }
    .footer__bottom { padding-top: 16px; }
     .hero__title { font-size: 28px; }
}
/* --- Стили Подвала (Footer) --- */
.footer { flex-shrink: 0; background-color: #212121; color: #e0e0e0; padding: 48px 0 24px; font-size: 14px; }
.footer a { color: #e0e0e0; } .footer a:hover { color: #E53935; }
.footer__top { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid #424242; }
.footer__title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer__list li { margin-bottom: 8px; }
.footer__address { font-style: normal; line-height: 1.7; margin-bottom: 16px; }
.socials { display: flex; flex-wrap: wrap; gap: 12px; }
.socials a { display: flex; justify-content: center; align-items: center; width: 36px; height: 36px; border: 1px solid #616161; border-radius: 50%; font-size: 16px; transition: background-color 0.3s ease, border-color 0.3s ease; }
.socials a:hover { background-color: #E53935; border-color: #E53935; color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; padding-top: 24px; font-size: 13px; color: #bdbdbd; }
.footer__copy { margin-bottom: 0; }
.footer__legal { margin-bottom: 0; max-width: 500px; text-align: right; }
.footer__credits { margin-bottom: 0; width: 100%; text-align: center; margin-top: 8px; font-size: 12px; color: #757575; }
.footer__credits a { color: #9e9e9e; } .footer__credits a:hover { color: #E53935; }
@media (max-width: 767px) {
    .footer__bottom { flex-direction: column; align-items: center; text-align: center; }
    .footer__legal { text-align: center; max-width: none; }
    .footer__credits { margin-top: 16px; }
}

/* --- Стили для страницы FAQ --- */
.faq-section {
    /* Стили для секции FAQ */
}

.faq-accordion {
    /* Контейнер для всех вопросов-ответов */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden; /* Скрываем углы */
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-item {
    /* Отдельный элемент вопрос-ответ */
    border-bottom: 1px solid #e0e0e0;
}
.faq-item:last-child {
    border-bottom: none; /* Убираем границу у последнего элемента */
}

.faq-item__question {
    display: flex; /* Располагаем текст и иконку */
    justify-content: space-between; /* Разносим по краям */
    align-items: center;
    width: 100%;
    padding: 18px 24px; /* Отступы */
    background-color: #fff; /* Фон кнопки-вопроса */
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 700; /* Жирный шрифт вопроса */
    color: #333;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.faq-item__question:hover {
    background-color: #f9f9f9; /* Легкий фон при наведении */
}
.faq-item__question span {
    flex-grow: 1; /* Текст занимает доступное место */
    padding-right: 15px; /* Отступ от иконки */
}

.faq-item__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0; /* Иконка не сжимается */
    transition: transform 0.3s ease; /* Анимация поворота */
    color: #E53935; /* Цвет иконки */
}
/* Поворот иконки при открытии */
.faq-item__question[aria-expanded="true"] .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    padding: 0 24px 24px 24px; /* Отступы у ответа (верхний 0) */
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    background-color: #fff; /* Фон ответа */
    /* Плавное появление/скрытие - можно реализовать через max-height или grid */
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding-top 0.3s ease-out, padding-bottom 0.3s ease-out;
    max-height: 0; /* Скрыто по умолчанию */
    padding-top: 0;
    padding-bottom: 0;
}
.faq-item__answer[hidden] {
    display: block; /* Переопределяем стандартное display: none для hidden, чтобы работала анимация */
    /* Свойства для скрытия остаются (max-height: 0, padding: 0) */
}
/* Стили для открытого ответа */
.faq-item__answer.is-visible {
    max-height: 1000px; /* Достаточно большая высота для любого контента */
    padding-top: 10px; /* Добавляем верхний отступ при открытии */
    padding-bottom: 24px;
}

.faq-item__answer p {
    margin-bottom: 12px;
}
.faq-item__answer p:last-child {
    margin-bottom: 0;
}
/* Стили для списков внутри ответа */
.faq-item__answer ul {
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.faq-item__answer ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
}
.faq-item__answer ul li::before {
    content: '•'; /* Маркер-точка */
    position: absolute;
    left: 0;
    top: 0;
    color: #E53935;
    font-weight: bold;
}
.faq-item__answer strong {
    font-weight: 700;
    color: #333;
}


/* --- Адаптивность для FAQ --- */
@media (max-width: 767px) {
    .faq-item__question {
        padding: 16px 20px;
        font-size: 16px;
    }
    .faq-item__answer {
        padding-left: 20px;
        padding-right: 20px;
        font-size: 14px;
    }
     .faq-item__answer.is-visible {
        padding-bottom: 20px;
    }
}

/* --- Полный CSS (включая все предыдущие секции) --- */
/* ... (весь предыдущий CSS код) ... */

/* --- Стили для формы обратной связи --- */
.contact-form-section {
    margin-top: 60px; /* Отступ сверху от блока с картой/инфо */
    padding-top: 60px; /* Отступ внутри секции */
    border-top: 1px solid #e0e0e0; /* Разделитель */
}

.contact-form {
    max-width: 700px; /* Ограничиваем ширину формы */
    margin: 0 auto; /* Центрируем форму */
    background-color: #fff; /* Белый фон для формы (если фон секции серый) */
    padding: 30px;
    border-radius: 8px;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.07); */ /* Можно добавить тень */
    border: 1px solid #e8e8e8; /* Или границу */
}

/* Сетка для полей Имя и Контакт */
.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Два поля в ряд */
    gap: 20px; /* Расстояние между полями */
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px; /* Отступ под группой поля */
}
.form-group:last-child {
    margin-bottom: 0; /* Убираем отступ у последней группы */
}

.form-group label {
    display: block; /* Метка над полем */
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s ease;
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
    border-color: #E53935; /* Красная рамка при фокусе */
    outline: none; /* Убираем стандартный outline */
    box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.2); /* Легкая тень при фокусе */
}

.form-group textarea {
    resize: vertical; /* Разрешаем изменять размер только по вертикали */
    min-height: 120px; /* Минимальная высота */
}

/* Стили для чекбокса */
.form-group--checkbox {
    display: flex;
    align-items: flex-start; /* Выравнивание по верху */
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 25px;
}
.form-group--checkbox input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 3px; /* Небольшая корректировка */
    cursor: pointer;
}
.form-group--checkbox label {
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 400;
    color: #666;
    line-height: 1.5;
}
.form-group--checkbox label a {
    color: #E53935;
    text-decoration: underline;
}
.form-group--checkbox label a:hover {
    text-decoration: none;
}

/* Сообщение об успехе/ошибке */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    font-size: 15px;
    display: none; /* Скрыто по умолчанию */
}
.form-message--success {
    background-color: #e8f5e9; /* Светло-зеленый */
    color: #2e7d32; /* Темно-зеленый */
    border: 1px solid #c8e6c9;
    display: block; /* Показываем при успехе */
}
.form-message--error {
    background-color: #ffebee; /* Светло-красный */
    color: #c62828; /* Темно-красный */
    border: 1px solid #ffcdd2;
    display: block; /* Показываем при ошибке */
}


/* --- Адаптивность для формы --- */
@media (max-width: 767px) {
    .contact-form__grid {
        grid-template-columns: 1fr; /* Поля в столбик */
        gap: 0; /* Убираем горизонтальный отступ */
        margin-bottom: 0; /* Убираем отступ под сеткой */
    }
    /* Восстанавливаем отступ под полями в сетке */
    .contact-form__grid .form-group {
        margin-bottom: 20px;
    }
    .contact-form {
        padding: 20px;
    }
}


/* --- Полный CSS (включая все предыдущие секции) --- */
/* --- Базовые стили и сброс --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { line-height: 1.6; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; height: 100%; }
body { font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 16px; color: #333; background-color: #fff; min-height: 100%; display: flex; flex-direction: column; }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; }
button { cursor: pointer; border: none; background-color: transparent; }
a { text-decoration: none; color: #E53935; transition: color 0.3s ease; }
a:hover { color: #c62828; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { margin-bottom: 16px; font-weight: 700; line-height: 1.3; color: #212121; }
p { margin-bottom: 16px; }
/* --- Общие классы и лэйаут --- */
.wrapper { flex-grow: 1; width: 100%; overflow-x: hidden; }
.main { flex-grow: 1; }
.container { max-width: 1140px; margin-left: auto; margin-right: auto; padding-left: 15px; padding-right: 15px; }
.btn { display: inline-block; padding: 12px 24px; font-size: 16px; font-weight: 700; text-align: center; text-decoration: none; border: 1px solid transparent; border-radius: 4px; cursor: pointer; transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease; line-height: 1.2; }
.btn--primary { background-color: #E53935; color: #fff; border-color: #E53935; }
.btn--primary:hover { background-color: #c62828; border-color: #c62828; color: #fff; }
.btn--secondary { background-color: #333; color: #fff; border-color: #333; }
.btn--secondary:hover { background-color: #4d4d4d; border-color: #4d4d4d; color: #fff; }
.btn--outline { background-color: transparent; color: #E53935; border-color: #E53935; }
.btn--outline:hover { background-color: #E53935; color: #fff; }
.btn--large { padding: 16px 32px; font-size: 18px; }
@media (max-width: 767px) { .btn--large { padding: 14px 24px; font-size: 16px; } }
.logo { display: inline-block; } .logo img { display: block; }
.logo__text { font-size: 24px; font-weight: 700; color: #212121; text-transform: uppercase; }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
/* --- Общие стили для секций --- */
.section { padding-top: 60px; padding-bottom: 60px; }
.section--grey { background-color: #f9f9f9; }
.section__title { font-size: 36px; font-weight: 700; margin-bottom: 40px; color: #212121; }
/* --- Стили Шапки (Header) --- */
.header { padding: 16px 0; background-color: #fff; border-bottom: 1px solid #f0f0f0; position: sticky; top: 0; left: 0; width: 100%; z-index: 100; }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.header__logo { flex-shrink: 0; }
.header__phone { font-weight: 700; color: #333; white-space: nowrap; margin-left: 24px; }
.header__phone:hover { color: #E53935; }
.nav__list { display: flex; align-items: center; gap: 24px; }
.nav__link { color: #333; font-weight: 400; padding: 8px 0; position: relative; transition: color 0.3s ease; }
.nav__link:hover { color: #E53935; }
.nav__link::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background-color: #E53935; transition: width 0.3s ease; }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__toggle { display: none; width: 30px; height: 24px; position: relative; z-index: 110; margin-left: 16px; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content: ''; display: block; width: 100%; height: 3px; background-color: #333; position: absolute; left: 0; transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease; border-radius: 1px; }
.nav__toggle span { top: 50%; transform: translateY(-50%); } .nav__toggle span::before { top: -8px; } .nav__toggle span::after { top: 8px; }
/* --- Стили секции Hero --- */
.hero { position: relative; padding-top: 80px; padding-bottom: 80px; background-color: #333; background-image: url('../images/hero-background.jpg'); background-size: cover; background-position: center center; background-repeat: no-repeat; color: #fff; text-align: center; min-height: 60vh; display: flex; align-items: center; justify-content: center; }
.hero__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: 1; }
.hero__container { position: relative; z-index: 2; max-width: 800px; }
.hero__title { font-size: 48px; font-weight: 900; line-height: 1.2; margin-bottom: 24px; color: #fff; text-transform: uppercase; text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.hero__subtitle { font-size: 20px; margin-bottom: 32px; color: rgba(255, 255, 255, 0.9); text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.hero__btn--phone { color: #fff; border-color: #fff; }
.hero__btn--phone:hover { background-color: #fff; color: #E53935; border-color: #fff; }
/* --- Стили секции "Типы носителей" --- */
.media-types__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.media-card { background-color: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 24px; text-align: center; transition: box-shadow 0.3s ease, transform 0.3s ease; display: flex; flex-direction: column; height: 100%; }
.media-card:hover { box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); transform: translateY(-5px); }
.media-card__icon { margin-bottom: 20px; height: 80px; display: flex; justify-content: center; align-items: center; }
.media-card__icon svg { width: 64px; height: 64px; }
.media-card__title { font-size: 20px; font-weight: 700; color: #333; margin-bottom: 12px; min-height: 48px; display: flex; align-items: center; justify-content: center; flex-grow: 1; }
.media-card__description { font-size: 15px; color: #666; line-height: 1.5; margin-bottom: 16px; }
.media-card__link { font-size: 15px; font-weight: 700; color: #E53935; text-decoration: none; margin-top: auto; transition: color 0.3s ease; }
.media-card__link:hover { color: #c62828; }
/* --- Стили секции "Как мы работаем" --- */
.process { position: relative; }
.process__steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; position: relative; counter-reset: process-counter; }
.process-step { background-color: #fff; padding: 30px 24px; border-radius: 8px; text-align: center; position: relative; z-index: 2; border: 1px solid #e0e0e0; transition: box-shadow 0.3s ease; }
.process-step:hover { box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08); }
.process-step__number { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); width: 36px; height: 36px; background-color: #E53935; color: #fff; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 16px; font-weight: 700; line-height: 1; border: 3px solid #f9f9f9; }
.process-step__icon { margin-bottom: 16px; height: 48px; display: flex; justify-content: center; align-items: center; color: #E53935; }
.process-step__icon svg { width: 48px; height: 48px; stroke-width: 1.5; }
.process-step__title { font-size: 18px; font-weight: 700; color: #333; margin-top: 10px; margin-bottom: 10px; }
.process-step__description { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 0; }
.process .btn--secondary { margin-top: 40px; }
.process .btn--secondary:hover { background-color: #4d4d4d; border-color: #4d4d4d; color: #fff; }
/* --- Стили секции "Ваши выгоды" --- */
.benefits__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.benefit-item { display: flex; align-items: flex-start; gap: 20px; padding: 20px; background-color: #fff; border-radius: 8px; }
.benefit-item__icon { flex-shrink: 0; color: #E53935; margin-top: 3px; }
.benefit-item__icon svg { width: 48px; height: 48px; stroke-width: 1.5; }
.benefit-item__title { font-size: 20px; font-weight: 700; color: #333; margin-top: 0; margin-bottom: 8px; }
.benefit-item__description { font-size: 15px; color: #666; line-height: 1.6; margin-bottom: 0; }
/* --- Стили секции "Отзывы" --- */
.yandex-rating-widget { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 45px; }
.yandex-rating-widget__link { font-size: 14px; color: #555; text-decoration: underline; transition: color 0.3s ease; }
.yandex-rating-widget__link:hover { color: #E53935; text-decoration: none; }
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { background-color: #fff; border: 1px solid #e8e8e8; border-radius: 8px; padding: 30px; display: flex; flex-direction: column; height: 100%; box-shadow: 0 5px 15px rgba(0,0,0,0.07); }
.review-card__rating { font-size: 16px; color: #f5a623; margin-bottom: 15px; line-height: 1; }
.review-card__text { font-size: 15px; color: #333; line-height: 1.7; margin-bottom: 20px; font-style: normal; flex-grow: 1; position: relative; padding-left: 25px; padding-right: 0; }
.review-card__text::before { content: '“'; position: absolute; left: 0; top: -2px; font-size: 36px; color: #e8e8e8; line-height: 1; font-style: normal; }
.review-card__text::after { display: none; }
.review-card__footer { margin-top: auto; padding-top: 16px; border-top: 1px solid #f0f0f0; text-align: right; }
.review-card__author { font-style: normal; font-weight: 700; color: #555; font-size: 14px; }
/* --- Стили секции "Партнерство" --- */
.partnership__container { display: flex; align-items: center; gap: 40px; }
.partnership__content { flex: 1 1 55%; }
.partnership__image { flex: 1 1 45%; text-align: center; }
.partnership__image img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
.partnership__content ul { list-style: none; padding-left: 0; margin-top: 16px; margin-bottom: 24px; }
.partnership__content li { position: relative; padding-left: 24px; margin-bottom: 10px; color: #555; line-height: 1.6; }
.partnership__content li::before { content: '✔'; position: absolute; left: 0; top: 0; color: #E53935; font-weight: bold; font-size: 16px; }
.partnership__content .btn { margin-top: 16px; }
/* --- Стили секции CTA --- */
.cta { background-color: #E53935; color: #fff; padding-top: 50px; padding-bottom: 50px; text-align: center; }
.cta__container { max-width: 700px; }
.cta__title { font-size: 32px; font-weight: 700; line-height: 1.3; margin-bottom: 16px; color: #fff; }
.cta__text { font-size: 18px; line-height: 1.6; margin-bottom: 30px; color: rgba(255, 255, 255, 0.9); }
.cta .btn--primary { background-color: #fff; color: #E53935; border-color: #fff; }
.cta .btn--primary:hover { background-color: #f0f0f0; border-color: #f0f0f0; color: #c62828; }
/* --- Стили страницы 404 --- */
.error-page { padding-top: 80px; padding-bottom: 80px; min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.error-page__container { max-width: 600px; }
.error-page__icon { margin-bottom: 30px; color: #E53935; }
.error-page__icon svg { width: 80px; height: 80px; stroke-width: 1.5; display: inline-block; }
.error-page__subtitle { font-size: 36px; font-weight: 700; color: #333; margin-bottom: 16px; }
.error-page__text { font-size: 18px; color: #666; line-height: 1.7; margin-bottom: 30px; }
.error-page__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.error-page__btn { min-width: 200px; }
/* --- Стили секции "Контакты" --- */
.contacts__wrapper { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: flex-start; }
.contacts__map { border-radius: 8px; overflow: hidden; min-height: 241px; height: 100%; background-color: #e0e0e0; }
.contacts__map iframe { width: 100%; height: 100%; min-height: 241px; border: none; display: block; }
.contacts__info-title { font-size: 24px; font-weight: 700; margin-bottom: 24px; color: #333; }
.contacts__address { font-style: normal; margin-bottom: 20px; }
.contacts__address p { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; line-height: 1.5; color: #555; }
.contacts__address svg { flex-shrink: 0; margin-top: 3px; color: #E53935; }
.contacts__note { font-size: 14px; color: #777; margin-left: 26px; margin-top: -4px; margin-bottom: 16px; }
.contacts__item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 16px; color: #555; }
.contacts__item svg { flex-shrink: 0; color: #E53935; margin-top: 3px; }
.contacts__item a { color: #E53935; text-decoration: none; border-bottom: 1px dashed #E53935; transition: color 0.3s ease, border-color 0.3s ease; }
.contacts__item a:hover { color: #c62828; border-bottom-color: #c62828; }
.contacts__hours { display: flex; flex-direction: column; }
.contacts__hours-note { font-size: 13px; color: #777; margin-top: 4px; font-style: italic; }
.contacts__item--delivery { margin-top: 16px; }
.contacts__socials { margin-top: 24px; }
.contacts__socials h4 { font-size: 16px; margin-bottom: 12px; color: #333; }
/* --- Стили для страницы отдельной услуги --- */
.service-content { /* Основная секция с контентом */ }
.service-layout { /* Пока без сайдбара */ }
.service-article { max-width: 800px; margin-left: auto; margin-right: auto; }
.service-article h2 { font-size: 28px; margin-top: 40px; margin-bottom: 20px; color: #333; }
.service-article h3 { font-size: 22px; margin-top: 30px; margin-bottom: 16px; color: #444; }
.service-article p { line-height: 1.7; color: #555; }
.service-article ul, .service-article ol { margin-bottom: 20px; padding-left: 25px; color: #555; }
.service-article ul { list-style: none; }
.service-article ul li { position: relative; padding-left: 20px; margin-bottom: 10px; }
.service-article ul li::before { content: '›'; position: absolute; left: 0; top: 0; color: #E53935; font-weight: bold; font-size: 18px; line-height: 1.6; }
.service-article ol { list-style: none; counter-reset: ordered-list-counter; }
.service-article ol li { position: relative; padding-left: 35px; margin-bottom: 12px; counter-increment: ordered-list-counter; }
.service-article ol li::before { content: counter(ordered-list-counter) "."; position: absolute; left: 0; top: 0; color: #E53935; font-weight: bold; font-size: 16px; line-height: 1.6; min-width: 20px; text-align: right; padding-right: 10px; }
.service-article ol li strong { font-weight: 700; color: #333; }
.alert { padding: 20px; margin-top: 30px; margin-bottom: 30px; border-radius: 8px; border-style: solid; border-width: 1px; position: relative; padding-left: 50px; }
.alert::before { content: ''; position: absolute; left: 15px; top: 20px; width: 24px; height: 24px; background-repeat: no-repeat; background-position: center center; background-size: contain; }
.alert--warning { background-color: #fff8e1; border-color: #ffecb3; color: #6d5b0f; }
.alert--warning::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffb300' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-alert-triangle'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'%3E%3C/path%3E%3Cline x1='12' y1='9' x2='12' y2='13'%3E%3C/line%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'%3E%3C/line%3E%3C/svg%3E"); }
.alert h3 { margin-top: 0; margin-bottom: 10px; font-size: 18px; color: #c79100; }
.alert p { margin-bottom: 0; line-height: 1.6; color: #6d5b0f; }
.service-article__cta { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; }
/* --- Стили для страницы "Цены" --- */
.pricing-factors { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; margin-bottom: 30px; }
.pricing-factor { text-align: center; padding: 20px; background-color: #fff; border-radius: 8px; border: 1px solid #eee; }
.pricing-factor__icon { margin-bottom: 16px; color: #E53935; }
.pricing-factor__icon svg { width: 48px; height: 48px; stroke-width: 1.5; display: inline-block; }
.pricing-factor__title { font-size: 18px; font-weight: 700; margin-top: 0; margin-bottom: 8px; color: #333; }
.pricing-factor p { font-size: 14px; color: #666; line-height: 1.5; margin-bottom: 0; }
.price-list { /* Дополнительные стили для секции, если нужны */ }
.price-table { background-color: #fff; border-radius: 8px; overflow: hidden; border: 1px solid #e0e0e0; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.price-table__row { display: grid; grid-template-columns: 3fr 1fr; border-bottom: 1px solid #f0f0f0; transition: background-color 0.2s ease; }
.price-table__row:last-child { border-bottom: none; }
.price-table__row:hover { background-color: #f9f9f9; }
.price-table__col { padding: 16px 20px; font-size: 15px; color: #555; display: flex; align-items: center; gap: 10px; }
.price-table__col--service { font-weight: 500; color: #333; }
.price-table__col--service svg { width: 20px; height: 20px; flex-shrink: 0; color: #E53935; stroke-width: 1.5; }
.price-table__col--price { font-weight: 700; color: #E53935; justify-content: flex-end; text-align: right; white-space: nowrap; }
/* --- Стили для страницы "Процесс работы" --- */
.process-details { /* Стили для основной секции контента */ }
.process-timeline { max-width: 800px; margin: 0 auto; position: relative; padding: 20px 0; }
.process-timeline::before { content: ''; position: absolute; top: 0; left: calc(16px + 30px); transform: translateX(-50%); height: 100%; width: 3px; background-color: #e0e0e0; z-index: 1; }
.timeline-item { display: flex; align-items: flex-start; gap: 30px; position: relative; z-index: 2; margin-bottom: 40px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item__icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background-color: #E53935; color: #fff; display: flex; justify-content: center; align-items: center; position: relative; margin-left: calc(16px + 30px - 16px); }
.timeline-item__icon svg { width: 20px; height: 20px; stroke-width: 2; }
.timeline-item__content { background-color: #fff; padding: 20px; border-radius: 8px; border: 1px solid #e8e8e8; box-shadow: 0 4px 10px rgba(0,0,0,0.05); flex-grow: 1; }
.timeline-item__title { font-size: 20px; font-weight: 700; margin-top: 0; margin-bottom: 10px; color: #333; }
.timeline-item__content p { font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 0; }
.timeline-item__content p a { font-weight: 500; }
/* --- Стили для страницы "О нас" --- */
.about-content { /* Стили для основной секции контента */ }
.about-layout { display: flex; align-items: flex-start; gap: 40px; }
.about-text { flex: 1 1 60%; }
.about-image { flex: 1 1 40%; margin-top: 10px; }
.about-image img { width: 100%; height: auto; border-radius: 8px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); margin-bottom: 12px; }
.about-image__caption { font-size: 14px; color: #777; text-align: center; font-style: italic; margin-bottom: 0; }
.about-text h2 { font-size: 28px; margin-top: 0; margin-bottom: 20px; color: #333; }
.about-text h3 { font-size: 22px; margin-top: 30px; margin-bottom: 16px; color: #444; }
.about-text p { line-height: 1.7; color: #555; }
.about-text ul { list-style: none; padding-left: 0; margin-top: 16px; margin-bottom: 20px; }
.about-text ul li { position: relative; padding-left: 25px; margin-bottom: 10px; color: #555; line-height: 1.6; }
.about-text ul li::before { content: '✔'; position: absolute; left: 0; top: 0; color: #E53935; font-weight: bold; font-size: 16px; }
.about-text ul li strong { font-weight: 700; color: #333; }
/* --- Стили для страницы FAQ --- */
.faq-section { /* Стили для секции FAQ */ }
.faq-accordion { border: 1px solid #e0e0e0; border-radius: 8px; overflow: hidden; background-color: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.faq-item { border-bottom: 1px solid #e0e0e0; }
.faq-item:last-child { border-bottom: none; }
.faq-item__question { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 18px 24px; background-color: #fff; border: none; text-align: left; font-size: 18px; font-weight: 700; color: #333; cursor: pointer; transition: background-color 0.2s ease; }
.faq-item__question:hover { background-color: #f9f9f9; }
.faq-item__question span { flex-grow: 1; padding-right: 15px; }
.faq-item__icon { width: 24px; height: 24px; flex-shrink: 0; transition: transform 0.3s ease; color: #E53935; }
.faq-item__question[aria-expanded="true"] .faq-item__icon { transform: rotate(180deg); }
.faq-item__answer { padding: 0 24px 24px 24px; font-size: 15px; color: #555; line-height: 1.7; background-color: #fff; overflow: hidden; transition: max-height 0.5s ease-out, padding-top 0.3s ease-out, padding-bottom 0.3s ease-out; max-height: 0; padding-top: 0; padding-bottom: 0; }
.faq-item__answer[hidden] { display: block; }
.faq-item__answer.is-visible { max-height: 1000px; padding-top: 10px; padding-bottom: 24px; }
.faq-item__answer p { margin-bottom: 12px; }
.faq-item__answer p:last-child { margin-bottom: 0; }
.faq-item__answer ul { list-style: none; padding-left: 20px; margin-top: 10px; margin-bottom: 10px; }
.faq-item__answer ul li { position: relative; padding-left: 18px; margin-bottom: 8px; }
.faq-item__answer ul li::before { content: '•'; position: absolute; left: 0; top: 0; color: #E53935; font-weight: bold; }
.faq-item__answer strong { font-weight: 700; color: #333; }
/* --- Стили для формы обратной связи --- */
.contact-form-section { margin-top: 60px; padding-top: 60px; border-top: 1px solid #e0e0e0; }
.contact-form { max-width: 700px; margin: 0 auto; background-color: #fff; padding: 30px; border-radius: 8px; border: 1px solid #e8e8e8; }
.contact-form__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group:last-child { margin-bottom: 0; }
.form-group label { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 700; color: #555; }
.form-group input[type="text"], .form-group input[type="email"], .form-group input[type="tel"], .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; color: #333; transition: border-color 0.3s ease; }
.form-group input[type="text"]:focus, .form-group input[type="email"]:focus, .form-group input[type="tel"]:focus, .form-group textarea:focus { border-color: #E53935; outline: none; box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group--checkbox { display: flex; align-items: flex-start; gap: 10px; margin-top: 10px; margin-bottom: 25px; }
.form-group--checkbox input[type="checkbox"] { flex-shrink: 0; width: 18px; height: 18px; margin-top: 3px; cursor: pointer; }
.form-group--checkbox label { margin-bottom: 0; font-size: 13px; font-weight: 400; color: #666; line-height: 1.5; }
.form-group--checkbox label a { color: #E53935; text-decoration: underline; }
.form-group--checkbox label a:hover { text-decoration: none; }
.form-message { margin-top: 20px; padding: 15px; border-radius: 4px; font-size: 15px; display: none; }
.form-message--success { background-color: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; display: block; }
.form-message--error { background-color: #ffebee; color: #c62828; border: 1px solid #ffcdd2; display: block; }
/* --- Адаптивность --- */
@media (max-width: 991px) {
    .section { padding-top: 50px; padding-bottom: 50px; }
    .section__title { font-size: 32px; margin-bottom: 30px; }
    .hero { padding-top: 60px; padding-bottom: 60px; min-height: 50vh; }
    .hero__title { font-size: 40px; } .hero__subtitle { font-size: 18px; }
    .media-types__grid { gap: 20px; }
    .media-card__title { font-size: 18px; min-height: 44px; }
    .media-card__description { font-size: 14px; } .media-card__link { font-size: 14px; }
    .media-card__icon svg { width: 56px; height: 56px; }
    .process__steps { gap: 20px; }
    .process-step { padding: 24px 20px; } .process-step__title { font-size: 17px; }
    .benefits__grid { gap: 24px; }
    .benefit-item__title { font-size: 18px; } .benefit-item__description { font-size: 14px; }
    .benefit-item__icon svg { width: 44px; height: 44px; }
    .reviews__grid { gap: 20px; }
    .partnership__container { gap: 30px; }
    .partnership__content { flex-basis: 60%; } .partnership__image { flex-basis: 40%; }
    .contacts__wrapper { gap: 30px; } .contacts__info-title { font-size: 22px; }
    .contacts__map { height: 300px; min-height: 241px; } .contacts__map iframe { min-height: 241px; }
    .about-layout { gap: 30px; }
    .about-text h2 { font-size: 26px; } .about-text h3 { font-size: 20px; }
}
@media (max-width: 767px) {
    .section { padding-top: 40px; padding-bottom: 40px; }
    .section__title { font-size: 28px; margin-bottom: 24px; }
    .nav__toggle { display: block; } .header__phone { display: none; }
    .nav__list { display: none; position: absolute; top: 100%; left: 0; width: 100%; background-color: #fff; flex-direction: column; padding: 16px; box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); border-top: 1px solid #f0f0f0; gap: 0; }
    .nav__list.is-active { display: flex; }
    .nav__item { width: 100%; border-bottom: 1px solid #f0f0f0; } .nav__item:last-child { border-bottom: none; }
    .nav__link { display: block; padding: 12px 0; text-align: center; } .nav__link::after { display: none; }
    .nav__toggle.is-active span { transform: rotate(45deg); top: 50%; transform-origin: center; }
    .nav__toggle.is-active span::before { top: 0; opacity: 0; transform: translateX(-100%); }
    .nav__toggle.is-active span::after { top: 0; transform: rotate(-90deg); transform-origin: center; }
    .hero { padding-top: 40px; padding-bottom: 40px; min-height: auto; text-align: left; }
    .hero__container { text-align: left; }
    .hero__title { font-size: 32px; margin-bottom: 16px; } .hero__subtitle { font-size: 16px; margin-bottom: 24px; }
    .hero__actions { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hero__btn { width: 100%; text-align: center; }
    .media-types__grid { grid-template-columns: 1fr; gap: 16px; }
    .media-card { padding: 20px; } .media-card__title { min-height: auto; }
    .media-card__icon svg { width: 48px; height: 48px; }
    .process__steps { grid-template-columns: 1fr; gap: 40px; }
    .process .btn--secondary { margin-top: 30px; }
    .benefits__grid { grid-template-columns: 1fr; gap: 20px; }
    .benefit-item { padding: 16px; gap: 16px; }
    .benefit-item__icon svg { width: 40px; height: 40px; }
    .reviews__grid { grid-template-columns: 1fr; gap: 16px; }
    .review-card { padding: 24px; }
    .review-card__text { font-size: 14px; padding-left: 22px; }
    .review-card__text::before { font-size: 32px; }
    .review-card__footer { text-align: left; }
    .partnership__container { flex-direction: column; gap: 30px; }
    .partnership__content { flex-basis: auto; order: 2; text-align: center; }
    .partnership__image { flex-basis: auto; order: 1; max-width: 350px; margin-left: auto; margin-right: auto; }
    .partnership__content .section__title { text-align: center; }
    .partnership__content ul { text-align: left; display: inline-block; margin-left: auto; margin-right: auto; }
    .partnership__content .btn { width: 100%; max-width: 300px; }
    .cta { padding-top: 40px; padding-bottom: 40px; }
    .cta__title { font-size: 28px; }
    .cta__text { font-size: 16px; margin-bottom: 24px; }
    .cta__btn { width: 100%; max-width: 320px; }
    .error-page { padding-top: 50px; padding-bottom: 50px; }
    .error-page__icon svg { width: 60px; height: 60px; }
    .error-page__subtitle { font-size: 28px; }
    .error-page__text { font-size: 16px; }
    .error-page__actions { flex-direction: column; align-items: center; gap: 12px; }
    .error-page__btn { width: 100%; max-width: 300px; min-width: auto; }
    .contacts__wrapper { grid-template-columns: 1fr; gap: 30px; }
    .contacts__map { height: 300px; min-height: 241px; order: 2; }
    .contacts__map iframe { min-height: 241px; }
    .contacts__info { order: 1; text-align: center; }
    .contacts__address p, .contacts__item { justify-content: center; text-align: left; }
    .contacts__note { text-align: center; margin-left: 0; }
    .contacts__item { align-items: center; } .contacts__item svg { margin-top: 0; }
    .contacts__hours { align-items: center; }
    .service-article h2 { font-size: 24px; }
    .service-article h3 { font-size: 20px; }
    .service-article__cta { flex-direction: column; }
    .service-article__cta .btn { width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
    .pricing-factors { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
    .price-table__row { grid-template-columns: 1fr; gap: 5px; padding-top: 12px; padding-bottom: 12px; }
    .price-table__col { padding: 5px 16px; font-size: 14px; }
    .price-table__col--price { justify-content: flex-start; text-align: left; padding-left: 34px; padding-top: 0; }
    .process-timeline::before { left: 16px; transform: none; }
    .timeline-item { gap: 15px; margin-bottom: 30px; }
    .timeline-item__icon { margin-left: 0; }
    .timeline-item__title { font-size: 18px; }
    .timeline-item__content p { font-size: 14px; }
    .about-layout { flex-direction: column; }
    .about-text { flex-basis: auto; order: 2; }
    .about-image { flex-basis: auto; order: 1; max-width: 400px; margin: 0 auto 30px; }
    .about-text h2 { font-size: 24px; } .about-text h3 { font-size: 18px; }
    .faq-item__question { padding: 16px 20px; font-size: 16px; }
    .faq-item__answer { padding-left: 20px; padding-right: 20px; font-size: 14px; }
    .faq-item__answer.is-visible { padding-bottom: 20px; }
    .contact-form__grid { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
    .contact-form__grid .form-group { margin-bottom: 20px; }
    .contact-form { padding: 20px; }
}
@media (max-width: 575px) {
    .header { padding: 12px 0; }
    .footer { padding: 32px 0 16px; }
    .footer__top { gap: 24px; padding-bottom: 24px; margin-bottom: 24px; }
    .footer__bottom { padding-top: 16px; }
     .hero__title { font-size: 28px; }
}
/* --- Стили Подвала (Footer) --- */
.footer { flex-shrink: 0; background-color: #212121; color: #e0e0e0; padding: 48px 0 24px; font-size: 14px; }
.footer a { color: #e0e0e0; } .footer a:hover { color: #E53935; }
.footer__top { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid #424242; }
.footer__title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer__list li { margin-bottom: 8px; }
.footer__address { font-style: normal; line-height: 1.7; margin-bottom: 16px; }
.socials { display: flex; flex-wrap: wrap; gap: 12px; }
.socials a { display: flex; justify-content: center; align-items: center; width: 36px; height: 36px; border: 1px solid #616161; border-radius: 50%; font-size: 16px; transition: background-color 0.3s ease, border-color 0.3s ease; }
.socials a:hover { background-color: #E53935; border-color: #E53935; color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; padding-top: 24px; font-size: 13px; color: #bdbdbd; }
.footer__copy { margin-bottom: 0; }
.footer__legal { margin-bottom: 0; max-width: 500px; text-align: right; }
.footer__credits { margin-bottom: 0; width: 100%; text-align: center; margin-top: 8px; font-size: 12px; color: #757575; }
.footer__credits a { color: #9e9e9e; } .footer__credits a:hover { color: #E53935; }
@media (max-width: 767px) {
    .footer__bottom { flex-direction: column; align-items: center; text-align: center; }
    .footer__legal { text-align: center; max-width: none; }
    .footer__credits { margin-top: 16px; }
}

/* --- Стили для страницы Политики конфиденциальности --- */

.policy-content {
    /* Стили для основной секции */
}

.policy-article {
    max-width: 850px; /* Ограничиваем ширину для читаемости */
    margin: 0 auto; /* Центрируем */
    font-size: 15px; /* Можно чуть уменьшить шрифт для юр. текста */
    line-height: 1.7;
    color: #444;
}

.policy-article h2 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 1px solid #eee; /* Легкий разделитель */
    padding-bottom: 5px;
}
.policy-article h2:first-of-type {
    margin-top: 0; /* Убираем отступ у первого заголовка */
}

.policy-article h3 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #444;
}

.policy-article p {
    margin-bottom: 15px;
}

.policy-article ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 15px;
}
.policy-article ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
}
.policy-article ul li::before {
    content: '•'; /* Маркер-точка */
    position: absolute;
    left: 0;
    top: 0;
    color: #E53935;
}

.policy-article strong {
    font-weight: 700;
    color: #333;
}

/* Стили для блока с предупреждением (дополняем существующие) */
.alert--danger { /* Стиль для красного предупреждения */
    background-color: #ffebee;
    border-color: #ffcdd2;
    color: #b71c1c;
}
.alert--danger::before {
     /* Иконка восклицательного знака */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23c62828' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-alert-circle'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'%3E%3C/line%3E%3C/svg%3E");
}
.alert--danger strong {
    color: #c62828; /* Цвет жирного текста в красном блоке */
}
.alert--danger p {
     color: #b71c1c; /* Цвет текста в красном блоке */
}


/* --- Полный CSS (включая все предыдущие секции) --- */
/* ... (весь предыдущий CSS код) ... */


