/* ============================================================
   ASSETS/CSS/STYLE.CSS
   Версия: 4.0 — Ремонт бытовой техники
   ============================================================ */

/* ============================================================
   1. ПЕРЕМЕННЫЕ (ROOT)
   ============================================================ */
:root {
    --primary: #2963fc;
    --primary-dark: #1a4bd4;
    --primary-light: #5580ff;
    --primary-bg: #eaf0ff;

    --accent: #f7821c;
    --accent-dark: #d96a0a;
    --accent-light: #ffa04d;
    --accent-bg: #fef0e0;

    --ink: #1a2332;
    --ink-soft: #3d4a56;
    --muted: #7a8793;
    --line: #e2e7ec;
    --surface: #ffffff;
    --surface-soft: #f2f2f2;

    --container: 1330px;
    --radius: 18px;
    --radius-sm: 10px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.10);
}

/* ============================================================
   2. RESET И БАЗА
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; cursor: pointer; background: none; }
ul, ol { list-style: none; }

.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

.section { padding: 60px 0; }
.wrapper-page { padding: 0; }
.text-center { text-align: center; }

/* ============================================================
   3. КНОПКИ
   ============================================================ */
.btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: transparent;
}
.btn--primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    box-shadow: 0 4px 20px rgba(41, 99, 252, 0.35);
}

.btn--accent {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-color: transparent;
}
.btn--accent:hover {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    box-shadow: 0 4px 20px rgba(247, 130, 28, 0.35);
}

.btn--outline {
    color: var(--ink);
    background: transparent;
    border-color: var(--line);
}
.btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-bg);
}

.btn--ghost {
    color: var(--ink-soft);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}
.btn--ghost:hover {
    background: #fff;
    border-color: var(--primary);
    color: var(--primary);
}

.btn--large { min-height: 56px; padding: 14px 36px; font-size: 15px; }
.btn--small { min-height: 40px; padding: 8px 18px; font-size: 12px; }
.btn--block { width: 100%; }
.btn .icon { font-size: 1.1em; }

/* ============================================================
   4. БЭЙДЖ
   ============================================================ */
.badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-bg);
}
.badge--accent {
    color: var(--accent-dark);
    background: var(--accent-bg);
}

/* ============================================================
   5. ЗАГОЛОВКИ СЕКЦИЙ
   ============================================================ */
.section-head {
    text-align: center;
    margin-bottom: 40px;
}
.section-head .badge { margin-bottom: 10px; }
.section-head h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: var(--ink);
    text-transform: uppercase;
}
.section-head p {
    max-width: 640px;
    margin: 12px auto 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

/* ============================================================
   6. ПЛИТКА УСЛУГ
   ============================================================ */
.section-services-grid {
    padding: 60px 0;
    background: var(--surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 20px;
}

/* ----- Базовая плитка ----- */
.service-tile {
    position: relative;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-decoration: none;
    color: inherit;
    min-height: 200px;
}
.service-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

/* ----- Фото — слева, 260px ----- */
.service-tile__photo {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 260px;
    overflow: hidden;
    background: var(--surface-soft);
}
.service-tile__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-tile:hover .service-tile__photo img {
    transform: scale(1.05);
}

/* ----- Контент ----- */
.service-tile__content {
    position: absolute;
    top: 0;
    left: 260px;
    right: 0;
    bottom: 0;
    padding: 18px 24px 60px 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-tile__title {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.service-tile__desc {
    font-size: 12px;
    line-height: 1.5;
    color: var(--ink-soft);
    margin-bottom: 8px;
}

/* ----- Обёртка списка с обрезкой по высоте ----- */
.service-tile__list-wrap {
    position: relative;
    overflow: hidden;
    flex: 1;
    min-height: 0;
    margin-bottom: 8px;
}
.service-tile__list-wrap::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, var(--surface) 100%);
    pointer-events: none;
}

/* ----- Списки ----- */
.service-tile__list {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.service-tile__list li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 12px;
    color: var(--ink-soft);
    line-height: 1.4;
}
.service-tile__list li i {
    color: var(--primary);
    font-size: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Список в две колонки — только у стиральных */
.service-tile__list--cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 20px;
}

/* ----- Кнопка "Подробнее" — в правом нижнем углу ----- */
.service-tile__more {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px 10px 24px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
    border-top-left-radius: var(--radius);
    transition: background 0.2s ease, gap 0.2s ease;
    z-index: 2;
}
.service-tile:hover .service-tile__more {
    gap: 12px;
    background: var(--primary-dark);
}

/* ============================================================
   ЖЁСТКОЕ ПОЛОЖЕНИЕ ПЛИТОК
   ============================================================ */

/* 1. Стиральные машины — фото СВЕРХУ */
.service-tile--washing {
    grid-column: 1 / span 6;
    grid-row: 1 / span 2;
}
.service-tile--washing .service-tile__photo {
    position: relative;
    width: 100%;
    height: 200px;
}
.service-tile--washing .service-tile__content {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    padding: 22px 26px 60px 26px;
    overflow: visible;
}
.service-tile--washing .service-tile__title { font-size: 22px; }
.service-tile--washing .service-tile__desc { font-size: 13px; }

/* 2. Бытовые холодильники */
.service-tile--fridge {
    grid-column: 7 / span 6;
    grid-row: 1 / span 2;
}

/* 3. Коммерческие холодильники */
.service-tile--commercial {
    grid-column: 1 / span 6;
    grid-row: 3 / span 2;
}

/* 4. Кофемашины */
.service-tile--coffee {
    grid-column: 7 / span 6;
    grid-row: 3 / span 1;
}
.service-tile--coffee .service-tile__title { font-size: 15px; }
.service-tile--coffee .service-tile__desc { font-size: 11px; }

/* 5. Кондиционеры */
.service-tile--ac {
    grid-column: 7 / span 6;
    grid-row: 4 / span 1;
}

/* ============================================================
   7. БЛОК МАСТЕРА
   ============================================================ */
.section-master {
    padding: 60px 0;
    background: var(--surface-soft);
}

.master {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    align-items: start;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.master__photo {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface-soft);
    aspect-ratio: 4 / 5;
}
.master__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.master__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.master__name {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--ink);
    margin: 0;
}

.master__spec {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin: -10px 0 0;
}

.master__facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.master__fact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.master__fact-value {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--primary);
}

.master__fact-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
}

.master__block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.master__block-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ink);
    margin: 0;
}

.master__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.master__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-soft);
}

.master__list li i {
    color: var(--primary);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.master__phrase {
    margin: 0;
    padding: 16px 20px;
    border-left: 4px solid var(--accent);
    background: var(--accent-bg);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-style: italic;
    line-height: 1.6;
    color: var(--ink);
}

/* ============================================================
   8. БЛОК ЧЕСТНОГО ЦЕНООБРАЗОВАНИЯ
   ============================================================ */
.section-pricing-fair {
    padding: 60px 0;
    background: var(--surface);
}

.pricing-fair {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
}

/* ----- Левая колонка: объяснение ----- */
.pricing-fair__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px 36px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.pricing-fair__info-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--ink);
    margin: 0;
}

.pricing-fair__info-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin: 0;
}

.pricing-fair__info-text strong {
    color: var(--ink);
    font-weight: 800;
}

.pricing-fair__rules {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-fair__rules li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-soft);
}

.pricing-fair__rules li i {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-fair__rules li strong {
    color: var(--ink);
    font-weight: 800;
}

/* ----- Правая колонка: таблица цен ----- */
.pricing-fair__table {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.pricing-fair__table-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 18px 28px;
    background: var(--ink);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pricing-fair__row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 18px 28px;
    border-bottom: 1px solid var(--line);
    align-items: center;
    transition: background 0.15s ease;
}

.pricing-fair__row:last-of-type {
    border-bottom: none;
}

.pricing-fair__row:hover {
    background: var(--surface-soft);
}

.pricing-fair__row-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ink);
}

.pricing-fair__row-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    text-align: right;
}

.pricing-fair__note {
    margin: 0;
    padding: 16px 28px;
    background: var(--accent-bg);
    font-size: 13px;
    line-height: 1.5;
    color: var(--accent-dark);
    border-top: 1px solid var(--line);
}

/* ============================================================
   9. БЛОК "ПОКАЗЫВАЕМ, ЧТО СЛОМАЛОСЬ"
   ============================================================ */
.section-show-damage {
    padding: 60px 0;
    background: var(--surface-soft);
}

/* 8 карточек в 4 колонки */
.show-damage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.show-damage__card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.show-damage__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.show-damage__photo {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: var(--surface-soft);
}
.show-damage__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.show-damage__card:hover .show-damage__photo img {
    transform: scale(1.05);
}

.show-damage__content {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.show-damage__title {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: var(--ink);
    margin: 0;
}

.show-damage__desc {
    font-size: 12px;
    line-height: 1.4;
    color: var(--muted);
    margin: 0;
}

/* ----- Нижняя плашка с правилами ----- */
.show-damage__rules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 28px 32px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.show-damage__rule {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.show-damage__rule-icon {
    display: grid;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 18px;
}

.show-damage__rule-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.show-damage__rule-text strong {
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.3;
}

.show-damage__rule-text span {
    font-size: 12px;
    line-height: 1.5;
    color: var(--ink-soft);
}

/* ============================================================
   10. БЛОК "ЕСЛИ РЕМОНТ НЕВЫГОДЕН"
   ============================================================ */
.section-repair-honesty {
    padding: 60px 0;
    background: var(--surface);
}

.repair-honesty {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px 56px;
    background: linear-gradient(135deg, var(--accent-bg) 0%, #fff9ec 100%);
    border: 1px solid var(--accent-light);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.repair-honesty__icon {
    display: grid;
    width: 160px;
    height: 160px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-size: 72px;
    box-shadow: 0 12px 40px rgba(247, 130, 28, 0.3);
}

.repair-honesty__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.repair-honesty__title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--ink);
    text-transform: uppercase;
    margin: 0;
}

.repair-honesty__text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin: 0;
}

.repair-honesty__text strong {
    color: var(--ink);
    font-weight: 800;
}

.repair-honesty__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}

.repair-honesty__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--ink-soft);
}

.repair-honesty__list li i {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 2px;
}

.repair-honesty__list li strong {
    color: var(--ink);
    font-weight: 800;
}

.repair-honesty__note {
    margin: 8px 0 0;
    font-size: 14px;
    font-style: italic;
    line-height: 1.6;
    color: var(--accent-dark);
}

/* ============================================================
   11. БЛОК ГАРАНТИИ
   ============================================================ */
.section-warranty {
    padding: 60px 0;
    background: var(--surface-soft);
}

.warranty {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.warranty__card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.warranty__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.warranty__icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 24px;
    margin-bottom: 4px;
}

.warranty__title {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--ink);
    margin: 0;
}

.warranty__desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0;
}

/* ============================================================
   12. БЛОК ГЕОГРАФИИ
   ============================================================ */
.section-geo {
    padding: 60px 0;
    background: var(--surface);
}

.geo {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.geo__map {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface-soft);
    min-height: 480px;
    box-shadow: var(--shadow);
}
.geo__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: none;
}

.geo__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.geo__zone {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: border-color 0.2s ease;
}
.geo__zone:hover {
    border-color: var(--primary);
}

.geo__zone-icon {
    display: grid;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 18px;
}

.geo__zone-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.geo__zone-text strong {
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.3;
}

.geo__zone-text span {
    font-size: 13px;
    line-height: 1.5;
    color: var(--ink-soft);
}

.geo__neighbors {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
    background: linear-gradient(135deg, var(--accent-bg) 0%, #fff9ec 100%);
    border: 1px solid var(--accent-light);
    border-radius: var(--radius);
    margin-top: 8px;
}

.geo__neighbors-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-size: 20px;
}

.geo__neighbors-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.geo__neighbors-text strong {
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.3;
}

.geo__neighbors-text p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0;
}

/* ============================================================
   13. БЛОК "ЧТО МЫ НЕ ДЕЛАЕМ"
   ============================================================ */
.section-no-do {
    padding: 60px 0;
    background: var(--surface);
}

.no-do {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.no-do__item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 28px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-left: 4px solid var(--muted);
    border-radius: var(--radius);
    transition: border-color 0.25s ease, background 0.25s ease;
}

.no-do__item:hover {
    border-left-color: var(--accent);
    background: var(--surface);
}

.no-do__icon {
    display: grid;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--muted);
    color: var(--muted);
    font-size: 16px;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.no-do__item:hover .no-do__icon {
    border-color: var(--accent);
    color: var(--accent);
}

.no-do__text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.no-do__text strong {
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.3;
}

.no-do__text p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0;
}

/* ============================================================
   14. БЛОК "ОТВЕЧАЕМ НА ОТЗЫВЫ" (СЛАЙДЕР)
   ============================================================ */
.section-reviews-dialog {
    padding: 60px 0;
    background: var(--surface-soft);
}

.reviews-dialog {
    position: relative;
    padding: 0 56px;
}

.reviews-dialog__viewport {
    overflow: hidden;
}

.reviews-dialog__track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

/* Карточки — с margin-right вместо gap */
.reviews-dialog__item {
    flex: 0 0 calc(50% - 10px);
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.reviews-dialog__item:last-child {
    margin-right: 0;
}

/* ----- Отзыв ----- */
.reviews-dialog__review {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.reviews-dialog__review-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.reviews-dialog__review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews-dialog__review-avatar {
    display: grid;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 50%;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 15px;
    font-weight: 800;
}

.reviews-dialog__review-author strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.3;
}

.reviews-dialog__review-date {
    font-size: 11px;
    color: var(--muted);
}

.reviews-dialog__review-stars {
    display: flex;
    gap: 3px;
    font-size: 13px;
}
.reviews-dialog__review-stars .fa-star,
.reviews-dialog__review-stars .fas.fa-star { color: #f5b342; }
.reviews-dialog__review-stars .far.fa-star { color: var(--line); }

.reviews-dialog__review-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0;
}

/* ----- Ответ ----- */
.reviews-dialog__reply {
    padding: 16px 24px;
    background: var(--primary-bg);
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.reviews-dialog__reply-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--primary);
}

.reviews-dialog__reply-head i { font-size: 11px; }

.reviews-dialog__reply-head strong {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.reviews-dialog__reply-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink);
    margin: 0;
}

/* ----- Стрелки ----- */
.reviews-dialog__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink-soft);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}
.reviews-dialog__arrow:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}
.reviews-dialog__arrow--prev { left: 0; }
.reviews-dialog__arrow--next { right: 0; }
.reviews-dialog__arrow--disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

/* ----- Точки ----- */
.reviews-dialog__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.reviews-dialog__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, border-color 0.2s ease, width 0.2s ease;
    font-size: 0;
}
.reviews-dialog__dot--active {
    background: var(--primary);
    border-color: var(--primary);
    width: 28px;
    border-radius: 10px;
}

/* ============================================================
   15. БЛОК ВЫЗОВА МАСТЕРА
   ============================================================ */
.section-call-master {
    padding: 60px 0;
    background: var(--surface);
}

.call-master {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ----- Левая колонка ----- */
.call-master__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 8px;
}

.call-master__title {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--ink);
    text-transform: uppercase;
    margin: 0;
}

.call-master__text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin: 0;
}

.call-master__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}

.call-master__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
}

.call-master__list li i {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    flex-shrink: 0;
}

/* ----- Плашка с телефоном ----- */
.call-master__contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 12px;
    padding: 20px 24px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.call-master__contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.call-master__contact-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
}

.call-master__phone {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--primary);
    transition: color 0.2s ease;
    white-space: nowrap;
}

.call-master__phone:hover {
    color: var(--primary-dark);
}

.call-master__contact-schedule {
    font-size: 13px;
    color: var(--ink-soft);
}

/* ----- Плашка MAX ----- */
.call-master__max {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #f0f5ff 100%);
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.call-master__max:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 99, 252, 0.18);
}

.call-master__max-icon {
    display: grid;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    place-items: center;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--line);
}
.call-master__max-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.call-master__max-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.call-master__max-text strong {
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.3;
}

.call-master__max-text span {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.4;
}

.call-master__max-arrow {
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.call-master__max:hover .call-master__max-arrow {
    transform: translateX(4px);
}

/* ----- Правая колонка: форма ----- */
.call-master__form-wrapper {
    padding: 36px 40px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.call-master__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.call-master__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.call-master__field label {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-soft);
}

.call-master__field label small {
    font-weight: 400;
    color: var(--muted);
}

.call-master__field input,
.call-master__field select,
.call-master__field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    font-size: 15px;
    font-family: var(--font);
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.call-master__field input:focus,
.call-master__field select:focus,
.call-master__field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(41, 99, 252, 0.1);
}

.call-master__field textarea {
    min-height: 80px;
    resize: vertical;
}

/* ----- Капча ----- */
.form-captcha {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.form-captcha__prompt {
    font-size: 13px;
    color: var(--ink-soft);
    margin: 0;
}

.form-captcha__prompt strong {
    display: inline-grid;
    min-width: 28px;
    min-height: 28px;
    place-items: center;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    margin-left: 6px;
    vertical-align: middle;
}

.form-captcha__control {
    display: grid;
    grid-template-columns: 1fr 48px;
    gap: 12px;
    align-items: center;
}

.form-captcha__control input[type="range"] {
    width: 100%;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-captcha__control output {
    display: grid;
    place-items: center;
    min-height: 36px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-soft);
    font-weight: 800;
    font-size: 16px;
    color: var(--ink);
}

/* ----- Согласие ----- */
.call-master__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
    cursor: pointer;
}

.call-master__consent input {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--primary);
    margin-top: 1px;
}

.call-master__consent a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ----- Кнопка ----- */
.call-master__submit {
    width: 100%;
    min-height: 54px;
    font-size: 15px;
}
.call-master__submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ----- Ловушка для ботов ----- */
.form-trap {
    display: none !important;
}

/* ----- Статус формы ----- */
.form-status {
    min-height: 0;
    margin: 0;
    font-size: 13px;
    text-align: center;
    color: var(--muted);
}
.form-status[data-state="error"] {
    color: #c0392b;
}
.form-status[data-state="success"] {
    color: var(--primary);
    font-weight: 700;
}

/* ============================================================
   16. ПОДВАЛ (FOOTER)
   ============================================================ */
.footer {
    padding: 50px 0 20px;
    background: var(--ink);
    color: rgba(255,255,255,0.7);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ----- Бренд ----- */
.footer__brand .logo__image {
    width: 187px;
    height: auto;
    margin-bottom: 12px;
}

.footer__slogan {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer__legal-note {
    font-size: 11px;
    line-height: 1.6;
    color: rgba(255,255,255,0.35);
    margin: 0;
    max-width: 340px;
}

.footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.footer__socials a {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.footer__socials a:hover {
    border-color: var(--accent);
    background: rgba(247, 130, 28, 0.1);
}

.footer__socials img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.footer__socials a i {
    font-size: 20px;
    color: #fff;
    transition: color 0.2s ease;
}

.footer__socials a:hover i { color: var(--accent); }

/* ----- Заголовки колонок ----- */
.footer__col h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__col ul li a,
.footer__col ul li span {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s ease;
    line-height: 1.4;
}

.footer__col ul li a:hover { color: var(--accent); }

.footer__col ul li span {
    color: rgba(255,255,255,0.4);
    cursor: default;
}

/* ----- Колонка контактов ----- */
.footer__col--contacts ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer__col--contacts ul li i {
    width: 16px;
    color: var(--accent);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
    text-align: center;
}

.footer__col--contacts ul li a {
    color: #fff;
    font-weight: 700;
}

.footer__col--contacts ul li a:hover {
    color: var(--accent);
}

/* ----- Мессенджеры в подвале ----- */
.footer__messengers {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.footer__messenger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer__messenger:hover {
    border-color: var(--accent);
    background: rgba(247, 130, 28, 0.08);
    color: #fff;
}

.footer__messenger img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer__messenger i {
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.footer__messenger--tg i {
    color: #229ED9;
}

.footer__messenger--tg:hover i {
    color: #229ED9;
}

/* ----- Юридические ссылки ----- */
.footer__legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    padding: 16px 0 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__legal-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer__legal-links a:hover { color: var(--accent); }

/* ----- Нижняя строка ----- */
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}

.footer__bottom-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer__bottom-right a {
    color: rgba(255,255,255,0.4);
    transition: color 0.2s ease;
}

.footer__bottom-right a:hover { color: var(--accent); }

/* ============================================================
   17. МОДАЛЬНОЕ ОКНО ВЫЗОВА МАСТЕРА
   ============================================================ */
.appointment-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: min(560px, calc(100% - 32px));
    max-height: min(90vh, 720px);
    padding: 0;
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--ink);
    box-shadow: var(--shadow-hover);
}

.appointment-dialog::backdrop {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
}

.appointment-form {
    position: relative;
    display: grid;
    padding: 32px 34px 30px;
    gap: 16px;
}

.dialog-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink-soft);
    font-size: 18px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    z-index: 20;
}
.dialog-close:hover {
    color: var(--accent);
    background: var(--accent-bg);
    transform: rotate(90deg);
}

/* ----- Шапка модалки ----- */
.appointment-form__intro {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 40px;
}

.appointment-form__icon {
    display: grid;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    place-items: center;
    border-radius: var(--radius-sm);
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    font-size: 22px;
}

.appointment-form__text {
    display: flex;
    flex-direction: column;
}

.appointment-form__intro h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--ink);
    margin: 0;
}

.appointment-form__intro p {
    color: var(--muted);
    font-size: 14px;
    margin: 2px 0 0 0;
}

/* ----- Поля ----- */
.form-field {
    display: grid;
    gap: 6px;
}

.form-field > span {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-soft);
}

.form-field > span small {
    font-weight: 400;
    color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
    font-size: 14px;
    font-family: var(--font);
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(41, 99, 252, 0.12);
}

.form-field textarea {
    min-height: 80px;
    resize: vertical;
}

/* ----- Согласие ----- */
.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
    color: var(--muted);
    line-height: 1.5;
}

.form-consent input {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--accent);
    margin-top: 1px;
}

.form-consent a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ----- Кнопка отправки ----- */
.appointment-form__submit {
    width: 100%;
    min-height: 52px;
    font-size: 15px;
}

/* ----- Статус формы ----- */
.form-status {
    min-height: 0;
    margin: -4px 0 0;
    font-size: 13px;
    text-align: center;
    color: var(--muted);
}

.form-status[data-state="error"] {
    color: #c0392b;
}

.form-status[data-state="success"] {
    color: var(--primary);
    font-weight: 700;
}

/* ----- Ловушка для ботов ----- */
.form-trap {
    display: none !important;
}

/* ----- Блок "Спасибо" ----- */
.appointment-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 40px 40px;
    text-align: center;
    min-height: 380px;
    animation: fadeInUp 0.5s ease;
}

.appointment-success.is-active {
    display: flex;
}

.appointment-success__icon {
    display: grid;
    width: 80px;
    height: 80px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #fff;
    font-size: 40px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(39, 174, 96, 0.3);
}

.appointment-success__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.appointment-success__text {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 28px;
}

.appointment-success__close {
    min-width: 200px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}